body {
            box-sizing: border-box;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --deep-charcoal: #1E1E1E;
            --porcelain-white: #FAFAFA;
            --accent-gold: #D4AF37;
            --blush-gray: #EAEAEA;
            --ink-blue: #3A4B68;
        }

        html, body {
            height: 100%;
            font-family: 'Inter', sans-serif;
            background: var(--porcelain-white);
            color: var(--deep-charcoal);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Custom Cursor */
        .cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            background: var(--accent-gold);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
            transition: transform 0.1s ease;
        }

        /* Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-gold), var(--ink-blue));
            z-index: 1000;
            transition: width 0.1s ease;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            background: rgba(250, 250, 250, 0.95);
            backdrop-filter: blur(10px);
            z-index: 999;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(30, 30, 30, 0.95);
            color: var(--porcelain-white);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 600;
            color: inherit;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-links a {
            text-decoration: none;
            color: inherit;
            font-weight: 400;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: currentColor;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .mobile-menu {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            height: calc(100vh - 80px);
            background: rgba(250, 250, 250, 0.98);
            backdrop-filter: blur(10px);
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 50px;
            z-index: 998;
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu a {
            color: var(--deep-charcoal);
            text-decoration: none;
            font-size: 1.5rem;
            margin: 20px 0;
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover {
            color: var(--accent-gold);
        }

        .mobile-auth-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 30px;
        }

        .mobile-auth-buttons .btn-login,
        .mobile-auth-buttons .btn-signup {
            padding: 12px 30px;
            font-size: 1.1rem;
        }

        .auth-buttons {
            display: flex;
            gap: 15px;
        }

        .btn-login, .btn-signup {
            padding: 8px 20px;
            border: 1px solid var(--accent-gold);
            background: transparent;
            color: var(--accent-gold);
            text-decoration: none;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .btn-signup {
            background: var(--accent-gold);
            color: var(--deep-charcoal);
        }

        .btn-login:hover {
            background: var(--accent-gold);
            color: var(--deep-charcoal);
        }

        .btn-signup:hover {
            background: transparent;
            color: var(--accent-gold);
        }

        /* Main Content */
        .main-content {
            margin-top: 80px;
        }
        /*about*/
        .about-section {
  padding: 6rem 2rem;
  background-color: #fafafa;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 50%;
  max-width: 600px;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #444;
}

.about-image {
  flex: 1 1 40%;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}

.about-image img {
  width: 100%;
  height: 400px; /* Fixed height */
  max-width: 500px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center; /* keeps the focus area centered */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .about-image {
    justify-content: center;
  }

  .about-image img {
    width: 100%;
    height: 300px; /* slightly smaller for mobile */
  }
}
        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, var(--porcelain-white) 0%, var(--blush-gray) 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%233A4B68" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23D4AF37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 600;
            line-height: 1.1;
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.5s forwards;
        }

        .hero p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.8s forwards;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: var(--accent-gold);
            color: var(--deep-charcoal);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeInUp 1s ease 1.1s forwards;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        /* Floating Elements */
        .floating-element {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        /* Sections */
        .section {
            padding: 100px 50px;
            max-width: 1400px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 30px;
            text-align: center;
        }

        .section p {
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
        }

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); /* larger images */
  gap: 40px; /* more breathing space */
  margin-top: 60px;
  justify-content: center;
}

/* Each Gallery Item */
.gallery-item {
  position: relative;
  aspect-ratio: 16 / 10; /* wide, cinematic look */
  background: var(--blush-gray);
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  min-height: 400px; /* ensure taller images */
}

.gallery-item:hover {
  transform: scale(1.04);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Subtle overlay glow */
.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--accent-gold), var(--ink-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
  opacity: 0.6;
}

/* Text overlay */
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

        /* Artists Grid */
        .artists-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .artist-card {
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .artist-card:hover {
            background: var(--blush-gray);
            transform: translateY(-5px);
        }

        .artist-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-gold), var(--ink-blue));
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            font-weight: 600;
        }

        /* Contact Form */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--deep-charcoal);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--blush-gray);
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: var(--porcelain-white);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: var(--accent-gold);
            color: var(--deep-charcoal);
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: var(--ink-blue);
            color: white;
            transform: translateY(-2px);
        }

.contact-info {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.8;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 25px;
  color: #111;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.contact-info p {
  margin-bottom: 18px;
  font-size: 1.1rem;
  color: #444;
}

.contact-info strong {
  display: block;
  color: #111;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-info a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: #0056b3;
  text-decoration: underline;
}

        /* Auth Modal */
        .auth-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
        }

        .auth-modal.active {
            display: flex;
        }

        .auth-content {
            background: white;
            padding: 40px;
            border-radius: 20px;
            width: 90%;
            max-width: 400px;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--deep-charcoal);
        }

        .auth-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            text-align: center;
            margin-bottom: 30px;
            color: var(--deep-charcoal);
        }

        .auth-switch {
            text-align: center;
            margin-top: 20px;
        }

        .auth-switch a {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 500;
        }

        /* Footer */
        .footer {
            background: var(--deep-charcoal);
            color: var(--porcelain-white);
            padding: 80px 50px 40px;
            margin-top: 100px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
        }

        .footer-section h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--accent-gold);
        }

        .footer-section a {
            color: var(--porcelain-white);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--accent-gold);
        }

        .footer-quote {
            text-align: center;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid var(--ink-blue);
            font-family: 'Italiana', serif;
            font-size: 1.2rem;
            font-style: italic;
        }

        /* User Profile */
        .user-profile {
            display: none;
            align-items: center;
            gap: 15px;
        }

        .user-profile.active {
            display: flex;
        }

        .user-avatar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--accent-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--deep-charcoal);
            font-weight: 600;
        }

        .logout-btn {
            padding: 5px 15px;
            background: transparent;
            border: 1px solid var(--accent-gold);
            color: var(--accent-gold);
            border-radius: 15px;
            cursor: pointer;
            font-size: 12px;
            transition: all 0.3s ease;
        }

        .logout-btn:hover {
            background: var(--accent-gold);
            color: var(--deep-charcoal);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        /* Newsletter Subscription */
        .newsletter-section {
            background: linear-gradient(135deg, var(--ink-blue), var(--deep-charcoal));
            color: var(--porcelain-white);
            padding: 80px 50px;
            text-align: center;
            margin: 100px 0;
        }

        .newsletter-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--porcelain-white);
        }

        .newsletter-section p {
            font-size: 1.1rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .newsletter-form {
            display: flex;
            gap: 15px;
            max-width: 400px;
            margin: 0 auto 30px;
        }

        .newsletter-input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            outline: none;
        }

        .newsletter-btn {
            padding: 15px 30px;
            background: var(--accent-gold);
            color: var(--deep-charcoal);
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .newsletter-btn:hover {
            background: var(--porcelain-white);
            transform: translateY(-2px);
        }

        .subscription-status {
            margin-top: 20px;
            padding: 10px;
            border-radius: 10px;
            display: none;
        }

        .subscription-status.success {
            background: rgba(212, 175, 55, 0.2);
            color: var(--accent-gold);
        }

        .subscription-status.subscribed {
            background: rgba(58, 75, 104, 0.3);
            color: var(--porcelain-white);
        }

        /* Legal Pages */
        .legal-page {
            display: none;
            max-width: 1000px;
            margin: 120px auto 0;
            padding: 0 50px 100px;
        }

        .legal-page.active {
            display: block;
        }

        .legal-page h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 30px;
            color: var(--deep-charcoal);
        }

        .legal-page h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin: 40px 0 20px;
            color: var(--ink-blue);
        }

        .legal-page h3 {
            font-size: 1.3rem;
            margin: 30px 0 15px;
            color: var(--deep-charcoal);
            font-weight: 600;
        }

        .legal-page p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: var(--deep-charcoal);
        }

        .legal-page ul {
            margin: 20px 0;
            padding-left: 30px;
        }

        .legal-page li {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 10px;
        }

        .back-to-home {
            display: inline-block;
            margin-bottom: 30px;
            padding: 10px 20px;
            background: var(--accent-gold);
            color: var(--deep-charcoal);
            text-decoration: none;
            border-radius: 20px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .back-to-home:hover {
            background: var(--ink-blue);
            color: var(--porcelain-white);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
            }

            .nav-links, .auth-buttons {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section {
                padding: 60px 20px;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .newsletter-section {
                padding: 60px 20px;
            }

            .newsletter-form {
                flex-direction: column;
                max-width: 300px;
            }

            .legal-page {
                padding: 0 20px 60px;
                margin-top: 100px;
            }

            .legal-page h1 {
                font-size: 2.5rem;
            }
        }
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
}

.hero-slider {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  z-index: 0;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeIn 2s ease;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.floating-element {
  position: absolute;
  z-index: 1;
  opacity: 0.5;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(3) { bottom: 25%; right: 15%; animation-delay: 2s; }
.floating-element:nth-child(4) { top: 40%; right: 20%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cta-button {
  background: #fff;
  color: #111;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #ffcf33;
  color: #111;
}
.gallery-marquee-section {
  position: relative;
  padding: 80px 0;
  background: #fafafa;
  overflow: hidden;
  text-align: center;
}

.gallery-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.gallery-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: scroll-left 40s linear infinite;
}

.marquee-track img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.marquee-track img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Optional: Pause animation on hover */
.gallery-marquee:hover .marquee-track {
  animation-play-state: paused;
}
.scroll-gallery-section {
  padding: 80px 0;
  background: #f8f8f8;
  text-align: center;
  overflow: hidden;
}

.gallery-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

/* Scrollable horizontal gallery */
.scroll-gallery {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 40px 10px;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

/* For WebKit browsers */
.scroll-gallery::-webkit-scrollbar {
  height: 8px;
}
.scroll-gallery::-webkit-scrollbar-track {
  background: transparent;
}
.scroll-gallery::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 10px;
}

/* Gallery images */
.scroll-gallery img {
  flex: 0 0 auto;
  width: 400px;
  height: 500px;
  border-radius: 16px;
  object-fit: cover;
  scroll-snap-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

.scroll-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .scroll-gallery img {
    width: 260px;
    height: 160px;
  }
}