/* ==========================================================================
   ZAFEER PERFUME — ALCHEMIST FRAGRANCE ESSENCE DESIGN
   Aesthetic: Minimalist Editorial · Pure White, Charcoal Black, Soft Gray, Gold Accent
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  --bg-pure:          #ffffff; /* Pure White background */
  --bg-light:         #fafafa; /* Minimalist Soft Gray */
  --bg-accent:        #f4f4f4; /* Image Wrapper Gray */
  
  /* Text & Border Colors */
  --color-black:      #000000; /* Pure Black for headers & main text */
  --color-dark:       #1a1a1a; /* Dark charcoal for body text */
  --color-muted:      #666666; /* Muted gray for categories/subtitles */
  --border-light:     #e5e5e5; /* Ultra thin light border */
  --border-dark:      #000000; /* Crisp dark border */
  
  /* Subtle Gold Accent (To preserve Zafeer Identity) */
  --gold-accent:      #c9a96e; /* Champagne Gold */
  --gold-accent-light:#e2c896;
  
  /* Shared Tokens */
  --font-serif:       'Cormorant Garamond', serif;
  --font-sans:        'Jost', sans-serif;
  --transition:       all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  /* Reset shadows and border-radius for Alchemist sharp-flat look */
  --shadow-none:      none;
  --radius-sharp:     0px;
}

/* ---------- RESET & BASE STYLES ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--color-black) var(--bg-light);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-pure);
  color: var(--color-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.25;
  color: var(--color-black);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ---------- UTILITY STYLES ---------- */
.section-tag {
  display: inline-block;
  color: var(--color-black);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 1px;
  background-color: var(--color-black);
}

.gold-text {
  color: var(--gold-accent) !important;
  font-weight: 400;
}

/* ---------- BUTTONS (Sharp, Minimalist) ---------- */
.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: transparent;
  color: var(--color-black);
  border: 1px solid var(--border-dark);
  padding: 14px 40px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-sharp);
}

.btn-explore:hover {
  background-color: var(--color-black);
  color: var(--bg-pure);
}

/* ==========================================================================
   NAVBAR (Minimalist Clean Sticky Header - Static & Constant)
   ========================================================================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8%;
  height: 75px;
  background-color: var(--bg-pure);
  border-bottom: 1px solid var(--border-light);
  position: sticky; /* Always sticky at the top, static and constant */
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar .logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-light);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 5px;
  color: var(--color-black);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-links li a {
  color: var(--color-black);
  font-size: 0.72rem;
  letter-spacing: 3px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 12px 22px;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 22px;
  right: 22px;
  height: 1px;
  background-color: var(--color-black);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: right;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--color-black);
}

/* Hamburger for Mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-black);
  font-size: 1.3rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION (Full-Bleed Background Cross-Fade Slider with Bottle Overlay)
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 75px); /* Takes full screen minus sticky navbar height */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8%;
  background-color: var(--color-black);
  overflow: hidden;
}

/* Soft dark gradient to make typography highly readable over any background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.25) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Background slider container */
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero-bg-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out; /* Smooth cross-fade transition */
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Align the original bottle overlay to the right */
  padding-right: 12%; /* Spacing from right screen edge */
}

.hero-bg-slider .slide.active {
  opacity: 1;
}

.hero-bg-slider .slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-bg-slider .slide-bottle {
  position: relative;
  z-index: 3; /* Renders above background backdrop */
  max-height: 460px; /* Elegant proportional sizing */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35)); /* Drop shadow to blend bottle with backdrop */
  animation: floatBottle 6s ease-in-out infinite alternate; /* Floating animation */
  transition: var(--transition);
}

@keyframes floatBottle {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-16px) rotate(1.5deg); }
}

.hero-content {
  position: relative;
  z-index: 3; /* Rendered over slide-bg and dark gradient */
  max-width: 500px;
  color: var(--bg-pure);
  text-align: left;
}

.hero-content .tagline {
  color: var(--bg-pure);
  opacity: 0.9;
}

.hero-content .tagline::before {
  background-color: var(--bg-pure);
}

.hero-content h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 300;
  color: var(--bg-pure);
  line-height: 1.15;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--bg-pure);
}

.hero-content .description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 40px;
}

.hero-content .btn-explore {
  border-color: var(--bg-pure);
  color: var(--bg-pure);
}

.hero-content .btn-explore::before {
  background-color: var(--bg-pure);
}

.hero-content .btn-explore:hover {
  color: var(--color-black);
}

/* ==========================================================================
   ABOUT SECTION (Minimalist Editorial Grid with Cream Background)
   ========================================================================== */
.about-section {
  padding: 100px 8%;
  background-color: #faf7f2; /* Cream Warm Gray background */
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

.about-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.about-img-box {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Thin border detail offset */
.about-img-box::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 200px 200px 0 0;
  pointer-events: none;
  transition: var(--transition);
}

.about-img-box:hover::before {
  transform: translate(4px, 4px);
  border-color: var(--color-black);
}

.about-img-box img {
  width: 100%;
  border-radius: 200px 200px 0 0;
  object-fit: cover;
  height: 520px;
  filter: contrast(1.01);
  border: 1px solid var(--border-light);
}

.about-text {
  padding-left: 10px;
}

.about-text h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--color-black);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.about-text p {
  color: var(--color-dark);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 30px;
}

/* Clean Editorial Features Line */
.about-features {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
  border-top: 1px solid var(--border-light);
  padding-top: 60px;
  counter-reset: feat;
}

.about-features .feature-item {
  background: transparent;
  padding: 0;
  border-radius: var(--radius-sharp);
  border: none;
  transition: var(--transition);
}

.about-features .feature-item::before {
  counter-increment: feat;
  content: '0' counter(feat) '.';
  display: block;
  font-family: var(--font-serif);
  font-size: 2.8rem; /* Larger font size */
  font-weight: 300;
  color: var(--color-black);
  margin-bottom: 12px;
  transition: var(--transition);
  transform-origin: left;
}

.about-features .feature-item:hover::before {
  color: var(--gold-accent);
  transform: scale(1.08);
}

.about-features .feature-item h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--color-black);
  letter-spacing: 0.5px;
}

.about-features .feature-item p {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ==========================================================================
   PRODUCTS SECTION (Borderless Clean Grid)
   ========================================================================== */
.products-section {
  padding: 100px 8%;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--color-black);
  text-transform: uppercase;
}

.btn-view-all {
  color: var(--color-black);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 4px;
  transition: var(--transition);
}

.btn-view-all:hover {
  letter-spacing: 3.5px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px 30px;
}

/* Borderless Product Cards */
.product-card {
  background: transparent;
  border: none;
  border-radius: var(--radius-sharp);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-img-wrapper {
  background-color: var(--bg-accent);
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.product-img-wrapper img {
  max-height: 220px;
  object-fit: contain;
  filter: contrast(1.01);
  transition: var(--transition);
}

.product-card:hover .product-img-wrapper {
  border-color: var(--color-black);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.05);
}

.product-info {
  padding: 18px 0 0 0;
  text-align: left;
}

.product-info h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-black);
  margin-bottom: 6px;
}

.product-info .category {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.6;
}

.product-price {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--color-black);
  margin-top: 8px;
}

/* ==========================================================================
   WHY CHOOSE US (Centered Technical Minimalist Grid)
   ========================================================================== */
.why-choose-us {
  background-color: var(--bg-pure);
  padding: 100px 8%;
  border-bottom: 1px solid var(--border-light);
}

.why-choose-us .section-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--color-black);
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  background: transparent;
  border: none;
  border-radius: var(--radius-sharp);
  padding: 0;
  text-align: center; /* Centered texts */
  transition: var(--transition);
}

.icon-box {
  width: 60px;
  height: 60px;
  border: 1px solid var(--border-dark);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px; /* Centered horizontally */
  transition: var(--transition);
  border-radius: var(--radius-sharp);
}

.icon-box i {
  color: var(--color-black);
  font-size: 1.3rem;
  transition: var(--transition);
}

.feature-card:hover .icon-box {
  background-color: var(--color-black);
}

.feature-card:hover .icon-box i {
  color: var(--bg-pure);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.75;
}

/* ==========================================================================
   GALLERY SECTION (Borderless Monochrome Grid)
   ========================================================================== */
.gallery-section {
  padding: 100px 8%;
  background-color: var(--bg-pure);
  text-align: center;
}

.gallery-section h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--color-black);
  margin-bottom: 60px;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

/* Asymmetric collage spacing */
.gallery-grid .gallery-item:nth-child(1) {
  grid-row: span 2;
  grid-column: span 2;
}

.gallery-grid .gallery-item:nth-child(6) {
  grid-column: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sharp);
  border: 1px solid var(--border-light);
  cursor: pointer;
  background-color: var(--bg-accent);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  /* Aesthetic high-fashion black & white by default */
  filter: grayscale(0.85) contrast(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay span {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-black);
  letter-spacing: 1.5px;
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 4px;
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.02); /* Bring back colors on hover */
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* ==========================================================================
   TESTIMONIALS SECTION (Clean Column Editorial Grid with Hover Elevation)
   ========================================================================== */
.testimonials-section {
  padding: 100px 8%;
  background-color: var(--bg-light);
  position: relative;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.testimonials-section .section-tag {
  display: block;
  text-align: center;
  padding-left: 0;
}

.testimonials-section .section-tag::before {
  display: none;
}

.testimonials-section h2 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--color-black);
  margin-bottom: 60px;
  text-transform: uppercase;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background: var(--bg-pure);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sharp);
  padding: 45px 35px;
  position: relative;
  transition: var(--transition);
}

/* Quote elevation & styling update on hover */
.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-black);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* Clean quote mark */
.testimonial-card::before {
  content: '“';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--color-black);
  opacity: 0.1;
  position: absolute;
  top: -15px;
  left: 30px;
  line-height: 1;
}

.testi-profile {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.testi-profile h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-black);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.rating {
  color: #f1c40f;
  font-size: 0.72rem;
  letter-spacing: 2px;
  margin-top: 4px;
}

.testi-text {
  font-style: italic;
  color: var(--color-dark);
  line-height: 1.8;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   FOOTER (Technical Monochrome Dark Black-Navy Gradient Base)
   ========================================================================== */
.footer {
  background: linear-gradient(135deg, #07090c 0%, #0c1622 100%); /* Elegant Dark Black-Navy Gradient */
  color: #8c97a5; /* Readable light slate color */
  padding: 80px 8% 30px;
  font-size: 0.88rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--bg-pure); /* White text */
  margin-bottom: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.footer-brand p {
  line-height: 1.8;
  font-size: 0.88rem;
  color: #8c97a5;
  max-width: 300px;
  opacity: 0.8;
}

.footer h4 {
  color: var(--bg-pure); /* White headings */
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a,
.footer-products ul li {
  color: #8c97a5;
  transition: var(--transition);
  font-size: 0.88rem;
  display: inline-block;
}

.footer ul li a:hover {
  color: var(--gold-accent-light);
  transform: translateX(4px);
}

/* Contact Us detail layouts */
.footer-contact p {
  margin-bottom: 14px;
  font-size: 0.86rem;
}

.footer-contact a {
  color: #8c97a5;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact a:hover {
  color: var(--bg-pure);
}

.footer-contact i {
  color: var(--gold-accent-light); /* Golden icons */
  transition: var(--transition);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.75rem;
  color: #5b6777;
  letter-spacing: 1.5px;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Medium Devices */
@media (max-width: 1100px) {
  .hero {
    padding: 0 6%;
  }
  .hero-bg-slider .slide {
    padding-right: 5%;
  }
  .hero-bg-slider .slide-bottle {
    max-height: 380px;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-img-box img {
    height: 450px;
  }
  .about-img-box::before {
    display: none;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* Tablets & Mobile */
@media (max-width: 768px) {
  .navbar {
    padding: 0 6%;
  }
  .nav-toggle {
    display: block;
  }
  
  /* Mobile Slidedown clean menu */
  .nav-links {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    flex-direction: column;
    gap: 0;
    background-color: rgba(255, 255, 255, 0.99);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
  }
  
  .nav-links.nav-active {
    height: 310px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  
  .nav-links li a {
    display: block;
    padding: 12px 0;
    width: 100%;
    color: var(--color-black) !important;
  }
  
  .nav-links li a::after {
    display: none;
  }

  .hero {
    padding: 0 6%;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .hero-bg-slider .slide {
    justify-content: center;
    padding-right: 0;
    padding-bottom: 40px;
    align-items: flex-end;
  }
  
  .hero-bg-slider .slide-bottle {
    max-height: 280px; /* Smaller bottle on mobile devices */
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
    position: absolute;
    top: 40px;
    left: 6%;
    right: 6%;
    z-index: 4;
  }
  .hero-content .tagline {
    justify-content: center;
  }
  .hero-content h1 {
    font-size: clamp(2rem, 5.5vw, 3rem);
  }
  .hero-content .description {
    margin: 0 auto 20px;
    font-size: 0.88rem;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }
  .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 10px;
  }
  .gallery-grid .gallery-item:nth-child(1) {
    grid-row: span 1;
    grid-column: span 1;
  }
  .gallery-grid .gallery-item:nth-child(6) {
    grid-column: span 1;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-bg-slider .slide-bottle {
    max-height: 230px;
  }
  .about-img-box img {
    height: 320px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
