:root {
    --primary: #6366f1;
    --secondary: #a855f7;
    --accent: #ec4899;
    --background: #0f172a;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Typography */
h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    cursor: pointer;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 1px;
    background: linear-gradient(to right, #ffffff, var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.logo-img {
    height: 80px;
    width: auto;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(-5deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links li a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links li a:hover {
    color: var(--accent);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, var(--accent), var(--secondary));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    /* Sits above shapes but below content */
}

.hero-content {
    max-width: 650px;
    flex: 1;
    z-index: 10;
    position: relative;
}

.hero-marathi-name {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    position: relative;
}

.marathi-glow {
    font-family: 'Yatra One', cursive;
    font-size: 5.5rem;
    line-height: 1.2;
    text-align: center;
    font-weight: 400;

    /* Creative vibrant gradient text */
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 25%, #FF6347 50%, #FF1493 75%, #9400D3 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Animations */
    animation: shineText 3s linear infinite, floatText 3s ease-in-out infinite alternate;

    /* Creative elegant glow */
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4)) drop-shadow(0 0 30px rgba(255, 20, 147, 0.3));

    transform: rotate(-5deg);
    padding: 30px;

    /* Semi-transparent shiny background box */
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

@keyframes shineText {
    to {
        background-position: 200% center;
    }
}

@keyframes floatText {
    0% {
        transform: translateY(0px) rotate(-3deg) scale(1);
    }

    100% {
        transform: translateY(-15px) rotate(1deg) scale(1.02);
    }
}

.hero p {
    margin-bottom: 40px;
    font-size: 1.3rem;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
}

/* Background Animated Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: float 20s infinite alternate cubic-bezier(0.5, 0, 0.5, 1);
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: 50px;
    right: 150px;
    animation-delay: -5s;
}

.shape-3 {
    width: 450px;
    height: 450px;
    background: var(--secondary);
    top: 250px;
    left: -150px;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(60px, 80px) scale(1.1) rotate(180deg);
    }

    100% {
        transform: translate(-80px, 120px) scale(0.9) rotate(360deg);
    }
}

/* Categories Section */
.categories {
    padding: 120px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    background: linear-gradient(to right, var(--text-main), var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.card:hover {
    transform: translateY(-20px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-image {
    height: 240px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.95));
}

.bg-gift {
    background-image: url('https://images.unsplash.com/photo-1549465220-1a8b9238cd48?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.bg-stationery {
    background-image: url('https://images.unsplash.com/photo-1456735190827-d1262f71b8a3?q=80&w=800&auto=format&fit=crop');
}

.bg-kids {
    background-image: url('https://images.unsplash.com/photo-1596461404969-9ae70f2830c1?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.bg-crockery {
    background-image: url('crockery-4.png');
}

.bg-photoframes {
    background-image: url('photoframe-4.png');
}

.bg-xerox {
    background-image: url('xerox.png');
}

.bg-chocolate {
    background-image: url('chocolate.png');
}

.bg-womens {
    background-image: url('womens.png');
}

.bg-bornbaby {
    background-image: url('bornbaby.png');
}

.card-content {
    padding: 35px;
    position: relative;
    z-index: 2;
    margin-top: -30px;
}

.mini-gallery {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.mini-gallery img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--glass-border);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.mini-gallery img:hover {
    transform: scale(1.4) translateY(-5px);
    border-color: var(--accent);
    z-index: 10;
}

/* About Section */
.about {
    padding: 50px 5% 100px;
    max-width: 1000px;
    margin: 0 auto;
}

.glassmorphism {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.glassmorphism::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.about-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

@media (min-width: 900px) {
    .about-content-wrapper {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
}

.owner-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    min-width: 300px;
}

.owner-img {
    width: 260px;
    height: 350px;
    border-radius: 24px;
    object-fit: cover;
    object-position: top;
    border: 2px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.owner-profile:hover .owner-img {
    transform: scale(1.05) rotate(2deg);
    border-color: var(--secondary);
}

.owner-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-main);
}

.owner-title {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 400;
    letter-spacing: 1px;
}

.about-text {
    flex: 1;
}

.glassmorphism p {
    font-size: 1.25rem;
    max-width: 100%;
    margin: 0;
    position: relative;
    z-index: 1;
}

.glassmorphism h2 {
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 50px 5% 100px;
    display: flex;
    justify-content: center;
}

.contact-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    max-width: 600px;
    backdrop-filter: blur(10px);
}

.contact-card p {
    margin-bottom: 30px;
}


/* Footer */
footer {
    background: #0b1120;
    padding: 60px 5% 30px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 25px;
}

.logo-img-footer {
    height: 280px;
    width: auto;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}

.footer-brand:hover .logo-img-footer {
    transform: scale(1.1) translateY(-10px);
}

.store-info {
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
    text-align: center;
}

.store-info p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.store-info strong {
    color: var(--text-main);
    font-weight: 600;
}

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    color: #64748b;
}

/* Gallery Section */
.gallery {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--glass-bg);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.9);
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.2);
    z-index: 10;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* AOS Handles Scroll Animations */

/* Responsive */
@media (max-width: 900px) {
    h1 {
        font-size: 3.5rem;
    }

    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
    }

    .hero-marathi-name {
        margin-top: 40px;
    }

    .marathi-glow {
        font-size: 4rem;
        padding: 20px;
    }

    .hero-shapes {
        opacity: 0.4;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    .marathi-glow {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    .hero-shapes {
        opacity: 0.3;
    }

    .glassmorphism {
        padding: 40px 20px;
    }

    .glassmorphism p {
        font-size: 1.1rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}