/* 
  جوري بوتيك - Joury Dress Boutique
  Custom Premium Stylesheet
  Theme: Luxury Rose Gold, Soft Pink, Warm White, Deep Charcoal, & Gold Accents
  RTL Support Built-in
*/

/* ----------------------------------------------------
   1. VARIABLES & DESIGN SYSTEM
---------------------------------------------------- */
:root {
  /* Colors - Updated to User Custom Palette */
  --bg-primary: #FFFFFF;       /* Pure White / Off-White */
  --bg-secondary: #FCF9F9;     /* Warm Off-White */
  --bg-card: #ffffff;
  --bg-dark: #3D2B2C;          /* Deep Rose / Warm Charcoal */
  --bg-dark-card: #513839;     /* Deeper Rose / Charcoal */

  --primary: #C58284;          /* Rose Gold / Dusty Pink */
  --primary-hover: #B87375;    /* Hover Rose Gold */
  --primary-light: #FCF9F9;

  --accent-gold: #c2a26f;
  /* Elegant Luxury Gold */
  --accent-gold-hover: #b0915e;

  --text-main: #3D2B2C;        /* Deep Rose / Warm Charcoal as main text */
  --text-muted: #513839;       /* Deep Rose / Warm Charcoal for secondary text */
  --text-light: #FCF9F9;       /* Light text for dark sections */

  /* Fonts */
  --font-serif: 'Amiri', serif;
  --font-sans: 'Cairo', sans-serif;
  --font-en: 'Playfair Display', serif; /* English Luxury Font */

  /* Transitions */
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.25s ease;

  /* Shadows */
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.02);
  --shadow-medium: 0 15px 40px rgba(27, 25, 24, 0.06);
  --shadow-luxury: 0 20px 45px rgba(212, 155, 142, 0.12);
  --shadow-gold: 0 15px 35px rgba(194, 162, 111, 0.15);
}

/* ----------------------------------------------------
   2. RESETS & BASE STYLING
---------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-main);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Elegant Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Typography Utility */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----------------------------------------------------
   3. REUSABLE COMPONENTS
---------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 36px;
  border-radius: 0;
  /* Premium editorial sharp corners */
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-luxury);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease-out;
}

.btn-primary:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 15px 35px rgba(212, 155, 142, 0.25);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background-color: transparent;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-outline-gold:hover {
  background-color: var(--accent-gold);
  color: #fff;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--bg-dark);
  color: #fff;
  border-color: var(--bg-dark);
}

.btn-dark:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.section-header .subtitle {
  font-family: var(--font-sans);
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-header .title {
  font-size: 2.5rem;
  font-weight: 400;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.section-header .title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--accent-gold);
}

/* ----------------------------------------------------
   4. NAVIGATION HEADER
---------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 24px 0;
  background-color: transparent;
}

.header.scrolled {
  background-color: rgba(252, 251, 250, 0.95);
  padding: 16px 0;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 155, 142, 0.1);
}

.header.scrolled .logo-text {
  color: var(--text-main);
}

.header.scrolled .nav-link {
  color: var(--text-main);
}

.header.scrolled .nav-link::after {
  background-color: var(--primary);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
  /* Show in natural colors */
  background: #ffffff; 
  padding: 4px 10px;
  border-radius: 8px; /* Smooth rounded corners for the logo box */
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212, 155, 142, 0.2);
}

/* Adjust size slightly when scrolled for a compact header */
.header.scrolled .logo-img {
  height: 48px;
  box-shadow: none;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  /* White by default on Hero dark overlay, shifts when scrolled */
  transition: var(--transition-fast);
}

.logo-text span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 6px 0;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

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

/* Mobile Nav Toggle */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background-color: #fff;
  transition: var(--transition-smooth);
}

.header.scrolled .hamburger span {
  background-color: var(--text-main);
}

/* ----------------------------------------------------
   5. HERO SECTION
---------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg {
  width: 100%;
  height: 100%;
  background-image: url('assets/hero_bg.png');
  background-position: center;
  background-size: cover;
  transform: scale(1.05);
  animation: heroZoom 20s infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(18, 17, 16, 0.75) 0%,
      rgba(18, 17, 16, 0.45) 50%,
      rgba(18, 17, 16, 0.8) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
}

.hero-tagline {
  font-size: 1.1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 24px;
  display: inline-block;
  background-color: rgba(214, 155, 142, 0.1);
  padding: 8px 20px;
  border: 1px solid rgba(214, 155, 142, 0.3);
  backdrop-filter: blur(5px);
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title-en {
  display: block;
  font-family: var(--font-en);
  font-size: 4.5rem; /* Magnified size to make it the main standout title */
  font-weight: 300;
  letter-spacing: 8px;
  color: var(--primary); /* Logo premium rose-gold color */
  text-transform: uppercase;
  line-height: 1.2;
}

.hero-slogan {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  color: var(--bg-secondary);
  margin-bottom: 40px;
  font-style: italic;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.15);
  }
}

/* ----------------------------------------------------
   6. CATEGORIES SHOWCASE
---------------------------------------------------- */
.categories {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cat-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(212, 155, 142, 0.1);
  padding: 50px 30px;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
  z-index: 1;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.cat-card:hover::before {
  transform: scaleX(1);
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury);
  border-color: rgba(212, 155, 142, 0.3);
}

.cat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.cat-card:hover .cat-icon {
  background-color: var(--primary);
  color: #fff;
  transform: rotateY(180deg);
}

.cat-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.cat-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ----------------------------------------------------
   7. PHOTO GALLERY & LIGHTBOX
---------------------------------------------------- */
.gallery {
  padding: 100px 0;
  background-color: var(--bg-secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-slow);
}

.gallery-item.col-6 {
  grid-column: span 6;
}

.gallery-item.col-4 {
  grid-column: span 4;
}

.gallery-item.col-8 {
  grid-column: span 8;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 17, 16, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-item-title {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 8px;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.gallery-item-cat {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  transition-delay: 0.05s;
}

.gallery-item:hover .gallery-item-title,
.gallery-item:hover .gallery-item-cat {
  transform: translateY(0);
}

.gallery-view-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition-smooth);
  transition-delay: 0.1s;
}

.gallery-item:hover .gallery-view-btn {
  opacity: 1;
  transform: scale(1);
}

.gallery-view-btn:hover {
  background-color: var(--accent-gold);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 17, 16, 0.98);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 80%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.4s ease;
}

.lightbox.active .lightbox-img {
  opacity: 1;
  transform: scale(1);
}

.lightbox-caption {
  color: #fff;
  margin-top: 15px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 2010;
}

.lightbox-close:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
  z-index: 2010;
}

.lightbox-nav:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.lightbox-prev {
  right: -80px;
}

.lightbox-next {
  left: -80px;
}

/* ----------------------------------------------------
   8. RUNWAY VIDEO GALLERY
---------------------------------------------------- */
.videos {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; /* Reduced gap slightly to fit 4 columns beautifully */
}

.video-card {
  position: relative;
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  height: 600px; /* Increased height to show the full dress */
  border: 1px solid rgba(212, 155, 142, 0.1);
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: var(--transition-smooth);
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 17, 16, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #fff;
  border: none;
  outline: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-luxury);
  transition: var(--transition-smooth);
  position: relative;
}

.video-play-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  animation: pulsePlay 2s infinite;
}

.video-play-btn:hover {
  background-color: var(--accent-gold);
  transform: scale(1.08);
}

.video-title {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes pulsePlay {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* ----------------------------------------------------
   9. CONTACT & FOOTER SECTION
---------------------------------------------------- */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-top: 1.5px solid rgba(194, 162, 111, 0.2);
}

.contact-section .section-header .title {
  color: #fff;
}

.contact-section .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 50px;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--bg-dark-card);
  padding: 24px;
  border-right: 3px solid var(--primary);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.contact-item-box:hover {
  transform: translateX(-5px);
  border-right-color: var(--accent-gold);
}

.contact-icon-box {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 2px;
}

.contact-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.contact-value {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
}

.contact-value a:hover {
  color: var(--primary);
}

.social-links-grid {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.social-btn {
  width: 50px;
  height: 50px;
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--primary);
}

.map-container {
  height: 100%;
  min-height: 400px;
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(1.2);
  /* Luxury dark map style */
  opacity: 0.85;
  transition: var(--transition-smooth);
}

.map-container:hover iframe {
  filter: grayscale(0) invert(0) contrast(1);
  opacity: 1;
}

/* Footer bottom */
.footer-bottom {
  background-color: #0b0a0a;
  padding: 30px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p span {
  color: var(--primary);
}

/* ----------------------------------------------------
   10. INTERSECTION OBSERVER ANIMATIONS
---------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* ----------------------------------------------------
   11. RESPONSIVENESS & MEDIA QUERIES
---------------------------------------------------- */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }

  .cat-grid {
    gap: 20px;
  }

  .gallery-item {
    height: 300px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .map-container {
    min-height: 350px;
  }
}

@media (max-width: 768px) {

  /* Navigation */
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-primary);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    gap: 24px;
    transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: 1005;
  }

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

  .nav-link {
    color: var(--text-main);
    font-size: 1.1rem;
  }

  .header:not(.scrolled) .hamburger span {
    background-color: #fff;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: var(--text-main) !important;
  }

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

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background-color: var(--text-main) !important;
  }

  /* Hero */
  .hero-title {
    margin-bottom: 16px;
  }

  .hero-title-en {
    font-size: 2.8rem;
    letter-spacing: 4px;
  }

  .hero-slogan {
    font-size: 1.2rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-btns .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Sections */
  .categories,
  .gallery,
  .videos,
  .contact-section {
    padding: 70px 0;
  }

  .section-header .title {
    font-size: 2rem;
  }

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

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

  .gallery-item.col-4,
  .gallery-item.col-6,
  .gallery-item.col-8 {
    grid-column: span 1;
  }

  .gallery-item {
    height: 360px;
  }

  /* Videos */
  .video-grid {
    grid-template-columns: repeat(2, 1fr); /* 2x2 on tablets */
    gap: 20px;
  }

  .video-card {
    height: 500px; /* Increased mobile height to show full dress */
  }

  /* Lightbox */
  .lightbox-nav {
    display: none;
    /* Swipe/Touch or Close button is primary on mobile */
  }

  .lightbox-content-wrapper {
    max-width: 90%;
  }

  .lightbox-img {
    max-height: 60vh;
  }
}

@media (max-width: 480px) {
  .hero-title {
    margin-bottom: 12px;
  }

  .hero-title-en {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .hero-slogan {
    font-size: 1.1rem;
  }

  .logo-text {
    font-size: 1.4rem;
  }

  .gallery-item {
    height: 280px;
  }

  .video-grid {
    grid-template-columns: 1fr; /* 1 column on phones */
    gap: 20px;
  }
}