/* ===== Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}


/* Header Styles */
        .studio-name {
            background-color: #aa8377;
            color: white;
            text-align: center;
            padding: 15px 0;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 24px;
            letter-spacing: 1px;
        }

        header {
            background-color: #fff;
            padding: 10px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            height: 80px;
            width: auto;
            margin-bottom: 10px;
        }

        nav {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            padding: 5px 10px;
        }

        nav ul li a:hover,
        nav ul li a.active {
            color: #ff5e94;
        }

        .mobile-menu {
            display: none;
            cursor: pointer;
            font-size: 24px;
            position: absolute;
            right: 20px;
            top: 20px;
        }
		
		.dropdown {
        position: relative;
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        list-style: none;
        padding: 10px 0;
        min-width: 160px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .dropdown-menu li a {
        padding: 10px 20px;
        display: block;
        text-decoration: none;
        color: #333;
    }

    .dropdown-menu li a:hover {
        background-color: #f0f0f0;
    }

    /* Desktop Hover */
    @media (min-width: 768px) {
        .dropdown:hover .dropdown-menu {
            display: block;
        }
    }
    /* Mobile Click Handled by JS */


/* ===== Banner ===== */
#gallery-banner {
  background: linear-gradient(135deg, rgba(255,94,148,0.8), rgba(170,131,119,0.8)),
              url('images/banner/gallery-banner.jpg') center/cover no-repeat;
  padding: 100px 20px 80px;
  text-align: center;
  color: #fff;
}

#gallery-banner h1 {
  font-size: 3rem;
  font-weight: 700;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  background-color: #f8f9fa;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.breadcrumb-container ul {
  display: flex;
  list-style: none;
  font-size: 14px;
  color: #666;
}

.breadcrumb-container ul li {
  margin-right: 10px;
}

.breadcrumb-container ul li::after {
  content: '/';
  margin-left: 10px;
}

.breadcrumb-container ul li:last-child::after {
  content: '';
}

/* ===== Section Title ===== */
.section-title {
  text-align: center;
  margin: 60px 0 30px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  width: 60px;
  height: 3px;
  background: #ff5e94;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  color: #666;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 20px auto 0;
}

/* ===== Gallery Grid ===== */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 0 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ===== Offers Slider ===== */
.offers-slider-container {
  position: relative;
  overflow: hidden;
  max-width: 1240px;
  margin: 40px auto 80px;
  padding: 0 20px;
}

.offers-slider {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 20px;
}

.offers-slide {
  min-width: 300px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.offer-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff5e94;
  color: #fff;
  font-size: 22px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: #e6447e;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* ===== Contact Section ===== */
.contact {
  background-color: #fff;
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 0 auto;
}

.contact-info, .contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  margin-bottom: 15px;
}

.contact-icon {
  font-size: 20px;
  margin-right: 15px;
  color: #ff5e94;
}

.contact-text h4 {
  margin: 0;
  font-weight: 600;
}

.contact-text p {
  margin: 3px 0;
  color: #555;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #fff;
}

.submit-btn {
  background-color: #ff5e94;
  color: white;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #e6447e;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, rgba(255, 94, 148, 0.9), rgba(170, 131, 119, 0.9)), url('images/banner/cta-bg.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.cta-container h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-container p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta-btn {
  background: #fff;
  color: #ff5e94;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  #gallery-banner h1 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .gallery-container {
    gap: 15px;
  }

  .contact-container {
    flex-direction: column;
  }

  .offer-img {
    height: 300px;
  }
}

/* Footer Styles */
        footer {
            background-color: #222;
            color: #fff;
            padding: 50px 20px 20px;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto 30px;
        }

        .footer-col {
            flex: 1;
            min-width: 250px;
        }

        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            color: #fff;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #ff5e94;
        }

        .footer-col p {
            color: #bbb;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #bbb;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: #ff5e94;
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #333;
            color: #fff;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .social-links a:hover {
            background-color: #ff5e94;
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
        }

        .footer-bottom p {
            color: #bbb;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 2.8rem;
            }

            .story-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .story-image {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }

            .header-container {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                position: relative;
            }

            .logo {
                height: 60px;
            }

            nav {
                position: fixed;
                top: 0;
                right: -300px;
                width: 250px;
                height: 100vh;
                background-color: #fff;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                transition: all 0.4s ease;
                z-index: 200;
                justify-content: flex-start;
                padding-top: 60px;
            }

            nav.active {
                right: 0;
            }

            nav ul {
                flex-direction: column;
                padding: 20px 0;
                width: 100%;
            }

            nav ul li {
                margin: 0;
            }

            nav ul li a {
                display: block;
                padding: 15px 20px;
                border-bottom: 1px solid #eee;
            }

            .page-header {
                padding: 80px 20px 60px;
            }

            .page-header h1 {
                font-size: 2.2rem;
            }

            .section {
                padding: 60px 20px;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .breadcrumb-list {
                font-size: 13px;
            }

            .breadcrumb-separator {
                margin: 0 5px;
            }

            .cta-content h2 {
                font-size: 2rem;
            }

            .btn {
                padding: 12px 25px;
                margin: 5px;
            }
        }