
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0a0a;
            color: #f5f5f5;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.5rem 5%;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        nav .container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
      .logo-image {
    margin-top: 25px;
    width: 275px;
    height: 275px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(255, 182, 193, 0.3));
}
/* Add tablet breakpoint */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Better mobile grid */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Responsive logo */
@media (max-width: 1200px) {
    .logo-image {
        width: 220px;
        height: 220px;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .logo-image {
        width: 180px;
        height: 180px;
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 140px;
        height: 140px;
        margin-top: 10px;
    }
}

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 3px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .nav-links a {
            color: #f5f5f5;
            text-decoration: none;
            font-size: 0.95rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transition: width 0.3s ease;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        /* Hero Section */
    .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

/* Large Screens (1550px+) */
@media (min-width: 1551px) {
    .hero {
        height: 100vh;
    }
}

/* Medium-Large Screens (1200px - 1550px) */
@media (max-width: 1550px) and (min-width: 1200px) {
    .hero {
        padding-top: 50px;
        height: 130vh;
      
    }


    
}

/* Tablets & Small Laptops (768px - 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    .hero {
        padding-top: 15px;
        height: 115vh;
        min-height: 650px;
    }
    

}

/* Mobile Landscape (481px - 767px) */
@media (max-width: 767px) and (min-width: 481px) {
    .hero {
        padding-top: 20px;
        height: 120vh;
        min-height: 600px;
    }
}

/* Mobile Portrait (up to 480px) */
@media (max-width: 480px) {
    .hero {
        padding-top: 25px;
        height: 125vh;
        min-height: 550px;
    }
}

/* Very Small Phones (up to 375px) */
@media (max-width: 375px) {
    .hero {
        padding-top: 20px;
        height: 130vh;
        min-height: 520px;
    }
}

/* Landscape Orientation - Prevent Excessive Height */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 3rem 5%;
    }
}
        .hero-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            opacity: 0.1;
            animation: gradientShift 15s ease infinite;
        }
        .hero-subtitle {
    font-size: 2rem;
    letter-spacing: 4px;
    color: #c97b9c;
    margin: 1rem 0 0.2rem 0;
    font-weight: 400;
}

.hero-artist {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 6px;
    background: linear-gradient(135deg, #667eea 0%, #c29ee6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5rem;
}

.hero-tagline {
    font-size: 1.3rem;
    letter-spacing: 3px;
    color: #8a8a8a;
    margin-bottom: 3rem;
}

        @keyframes gradientShift {

            0%,
            100% {
                transform: scale(1) rotate(0deg);
            }

            50% {
                transform: scale(1.1) rotate(5deg);
            }
        }

        .hero-content {
            text-align: center;
            z-index: 1;
            padding: 2rem;
        }

        .hero h1 {
            font-size: 5rem;
            font-weight: 700;
            letter-spacing: 8px;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            /* font-size: 1.3rem; */
            letter-spacing: 3px;
            color: #b0b0b0;
            /* margin-bottom: 3rem; */
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 3rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            letter-spacing: 2px;
            font-size: 0.9rem;
            transition: all 0.4s ease;
            animation: fadeInUp 1s ease 0.4s backwards;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        /* Section Styling */
        section {
            padding: 8rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        h2 {
            font-size: 3rem;
            font-weight: 300;
            letter-spacing: 4px;
            margin-bottom: 3rem;
            text-align: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Category Filter */
        .category-filter {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .category-btn {
            padding: 0.8rem 2rem;
            background: rgba(26, 26, 26, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #b0b0b0;
            border-radius: 50px;
            cursor: pointer;
            font-size: 0.85rem;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .category-btn:hover {
            border-color: rgba(102, 126, 234, 0.5);
            color: #f5f5f5;
            transform: translateY(-2px);
        }

        .category-btn.active {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-color: transparent;
            color: white;
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
        }

        /* Gallery Grid */
      .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); /* Changed auto-fit to auto-fill */
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.art-card {
    position: relative;
    aspect-ratio: 1;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    max-width: 450px; /* Prevents stretching */
    justify-self: center; /* Centers the card */
}

        .art-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
        }

        .art-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .art-card:hover::before {
            opacity: 1;
        }

        .art-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
            color: #666;
            font-size: 1.2rem;
            letter-spacing: 2px;
        }

        /* About Section */
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            line-height: 2;
            font-size: 1.1rem;
            color: #b0b0b0;
        }

        /* Contact Section */
        .contact-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        /* Reviews Carousel */
        .reviews-carousel {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 60px;
        }

        .carousel-container {
            overflow: hidden;
            border-radius: 15px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .review-card {
            min-width: 100%;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(40, 40, 40, 0.8) 100%);
            padding: 3rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .stars {
            color: #ffd700;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            letter-spacing: 5px;
        }

        .review-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #d0d0d0;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .reviewer {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
        }

        .reviewer-info h4 {
            margin: 0;
            font-size: 1rem;
            font-weight: 600;
            color: #f5f5f5;
            letter-spacing: 1px;
        }

        .reviewer-info span {
            font-size: 0.85rem;
            color: #888;
            letter-spacing: 1px;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .carousel-btn:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
        }

        .carousel-btn.prev {
            left: 0;
        }

        .carousel-btn.next {
            right: 0;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 2rem;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            width: 30px;
            border-radius: 5px;
        }

        .social-links {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-top: 3rem;
        }

        .social-links a {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            transition: all 0.4s ease;
        }

        .social-links a:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 3rem;
            background: #0a0a0a;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #666;
            letter-spacing: 2px;
        }

        /* Parallax Effect */
        .parallax-section {
            height: 60vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 5rem 0;
        }

        .parallax-bg {
            position: absolute;
            width: 100%;
            height: 120%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
            transform: translateY(0);
        }

        .parallax-content {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 2rem;
        }

        .parallax-content h3 {
            font-size: 3rem;
            font-weight: 300;
            letter-spacing: 6px;
            color: #f5f5f5;
            margin-bottom: 1rem;
        }

        .parallax-content p {
            font-size: 1.2rem;
            color: #b0b0b0;
            letter-spacing: 2px;
        }

        /* Floating shapes animation */
        .floating-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #f093fb, #f5576c);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            top: 60%;
            right: 15%;
            animation-delay: -5s;
        }

        .shape:nth-child(3) {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #4facfe, #00f2fe);
            border-radius: 50%;
            bottom: 20%;
            left: 20%;
            animation-delay: -10s;
        }

        .shape:nth-child(4) {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #43e97b, #38f9d7);
            border-radius: 50%;
            top: 40%;
            right: 25%;
            animation-delay: -15s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) translateX(0) rotate(0deg);
            }

            25% {
                transform: translateY(-30px) translateX(20px) rotate(90deg);
            }

            50% {
                transform: translateY(-60px) translateX(-20px) rotate(180deg);
            }

            75% {
                transform: translateY(-30px) translateX(20px) rotate(270deg);
            }
        }

        /* Image reveal animation */
        .art-card {
            position: relative;
            aspect-ratio: 1;
            background: #1a1a1a;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .art-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .art-card:hover::after {
            left: 100%;
        }

        .art-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            transform: translateY(100%);
            transition: transform 0.4s ease;
            z-index: 2;
        }

        .art-card:hover .art-info {
            transform: translateY(0);
        }

        .art-info h3 {
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 0.3rem;
            color: #f5f5f5;
        }

        .art-info span {
            font-size: 0.85rem;
            color: #888;
            letter-spacing: 1px;
        }

        .art-card.hide {
            display: none;
        }

        /* Scroll progress indicator */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            width: 0%;
            z-index: 9999;
            transition: width 0.1s ease;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 3rem;
                letter-spacing: 4px;
            }

            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(10px);
                width: 250px;
                padding: 2rem;
                gap: 1.5rem;
                border-left: 1px solid rgba(255, 255, 255, 0.1);
                transition: right 0.4s ease;
                height: calc(100vh - 80px);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                font-size: 1.1rem;
            }

            h2 {
                font-size: 2rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .parallax-content h3 {
                font-size: 2rem;
            }

            .shape {
                display: none;
            }

            .reviews-carousel {
                padding: 0 50px;
            }

            .review-card {
                padding: 2rem 1.5rem;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
            }
        }
   