/*
 * First Look Fashion Designer - Main CSS Stylesheet
 * Premium Luxury Aesthetic
 */

/* Import Google Fonts */
@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=Inter:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --primary-bg: #F8F6F2;       /* Ivory */
  --secondary-bg: #E9DDC8;     /* Champagne Beige */
  --accent-gold: #C8A96A;      /* Gold */
  --text-dark: #1E1E1E;        /* Charcoal Black */
  --text-muted: #555555;
  --card-bg: #FFFFFF;
  --footer-bg: #121212;
  
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;
  --font-button: 'Inter', sans-serif;
  
  --shadow-soft: 0 10px 30px rgba(30, 30, 30, 0.04);
  --shadow-luxury: 0 20px 40px rgba(200, 169, 106, 0.12);
  --shadow-hover: 0 25px 50px rgba(200, 169, 106, 0.2);
  
  --transition-slow: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-medium: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.3s ease;
  
  --border-radius: 14px;
}

/* Reset and Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--primary-bg);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 1px;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-button);
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hide Scrollbar for clean UI but keep scrollable */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--primary-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary-bg);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Luxury Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  animation: logoPulse 2.5s infinite ease-in-out;
}

.preloader-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(200, 169, 106, 0.1);
  border-top: 1px solid var(--accent-gold);
  border-radius: 50%;
  animation: spin 1.8s linear infinite;
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-dark);
  opacity: 0.8;
  margin-top: 10px;
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(200, 169, 106, 0.4));
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Sticky Navigation Bar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-medium);
}

.navbar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 25px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-medium);
}

header.scrolled {
  background-color: rgba(248, 246, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 5px 25px rgba(30, 30, 30, 0.03);
}

header.scrolled .navbar {
  padding: 15px 50px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-logo {
  width: 45px;
  height: 45px;
  object-fit: contain;
  transition: var(--transition-medium);
}

header.scrolled .nav-logo {
  width: 38px;
  height: 38px;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
}

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

.nav-item a {
  font-family: var(--font-button);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: var(--transition-medium);
  transform: translateX(-50%);
}

.nav-item a:hover {
  color: var(--accent-gold);
}

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

/* Hamburger menu button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 120px 50px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: radial-gradient(circle at 10% 20%, rgba(233, 221, 200, 0.2) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 80px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--accent-gold);
  margin-bottom: 15px;
  letter-spacing: 1px;
  opacity: 0;
}

.hero-title {
  font-size: 4.8rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 25px;
  text-transform: uppercase;
  opacity: 0;
}

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 45px;
  letter-spacing: 0.5px;
  line-height: 1.8;
  opacity: 0;
}

.hero-btns {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  opacity: 0;
}

/* Luxury Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 38px;
  font-family: var(--font-button);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--text-dark);
  color: var(--primary-bg);
  border: 1px solid var(--text-dark);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--accent-gold);
  transition: var(--transition-medium);
  z-index: -1;
}

.btn-primary:hover {
  color: var(--text-dark);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 20px rgba(200, 169, 106, 0.3);
  transform: translateY(-2px);
}

.btn-primary:hover::before {
  left: 0;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
}

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

.hero-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite alternate;
}

.hero-logo-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  background-color: transparent; /* transparent to blend perfectly */
  border-radius: 50%;
  padding: 40px;
  box-shadow: var(--shadow-luxury);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-slow);
  opacity: 0;
}

.hero-logo-frame::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 1px solid rgba(200, 169, 106, 0.2);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}

.hero-logo-frame:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}

.hero-logo {
  width: 85%;
  height: 85%;
  object-fit: contain;
  mix-blend-mode: multiply; /* ensures white background of logo is transparent */
  background: transparent;
  filter: drop-shadow(0 5px 15px rgba(200, 169, 106, 0.15));
}

/* Entrance Animation Definitions */
body.loaded .hero-subtitle {
  animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.1s;
}

body.loaded .hero-title {
  animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.3s;
}

body.loaded .hero-desc {
  animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.5s;
}

body.loaded .hero-btns {
  animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.7s;
}

body.loaded .hero-logo-frame {
  animation: scaleIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.4s;
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-15px);
  }
}

/* Categories Section Common */
.section {
  padding: 120px 50px;
  position: relative;
}

.section:nth-child(even) {
  background-color: var(--card-bg);
}

.section-container {
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.section-subtitle {
  font-family: var(--font-button);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 3px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

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

/* Grid Galleries for Blouses, Dresses, Gonde */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.gallery-item {
  position: relative;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-medium);
  cursor: pointer;
  aspect-ratio: 4 / 5;
}

.gallery-img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.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: linear-gradient(to top, rgba(30, 30, 30, 0.7) 0%, rgba(30, 30, 30, 0) 50%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 25px;
  transition: var(--transition-medium);
}

.gallery-overlay-icon {
  color: var(--primary-bg);
  background-color: rgba(200, 169, 106, 0.9);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(20px);
  transition: var(--transition-medium);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Gallery Item Hover States */
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury);
}

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

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

.gallery-item:hover .gallery-overlay-icon {
  transform: translateY(0);
}

/* Empty Gallery Placeholder State */
.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
  border: 1px dashed var(--secondary-bg);
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
}

/* Fall Pico Banner Layout */
.fallpico-section {
  padding: 120px 50px;
}

.fallpico-banner {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.fallpico-img-side {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

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

.fallpico-banner:hover .fallpico-img {
  transform: scale(1.04);
}

.fallpico-content-side {
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: var(--card-bg);
}

.fallpico-tag {
  font-family: var(--font-button);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 600;
}

.fallpico-title {
  font-size: 3rem;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.fallpico-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 35px;
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-bg);
}

.contact-card-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.contact-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-luxury);
  padding: 60px 80px;
  max-width: 900px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  position: relative;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.owner-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--accent-gold);
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-detail-item svg {
  color: var(--accent-gold);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-detail-item strong {
  color: var(--text-dark);
  font-weight: 500;
}

.contact-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-actions .btn {
  padding: 12px 28px;
  font-size: 0.8rem;
}

.contact-actions .btn svg {
  margin-right: 8px;
  width: 16px;
  height: 16px;
}

.contact-hours-side {
  border-left: 1px solid var(--secondary-bg);
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hours-title {
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(233, 221, 200, 0.4);
  padding-bottom: 8px;
}

.hours-item.active {
  color: var(--accent-gold);
  font-weight: 500;
  border-bottom-color: var(--accent-gold);
}

/* Footer Section */
footer {
  background-color: var(--footer-bg);
  color: var(--primary-bg);
  padding: 80px 50px 30px;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(248, 246, 242, 0.08);
}

.footer-col-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact-text {
  font-size: 0.9rem;
  color: rgba(248, 246, 242, 0.6);
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1) sepia(1) saturate(10) hue-rotate(30deg); /* gold-ish white */
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(248, 246, 242, 0.6);
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 25px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(248, 246, 242, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-bg);
  transition: var(--transition-fast);
}

.footer-social-icon:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--text-dark);
  transform: translateY(-3px);
}

.footer-social-icon svg {
  width: 18px;
  height: 18px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-menu-link {
  font-size: 0.9rem;
  color: rgba(248, 246, 242, 0.7);
  transition: var(--transition-fast);
}

.footer-menu-link:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-col-map {
  display: flex;
  flex-direction: column;
}

.map-wrapper {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(248, 246, 242, 0.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  margin-bottom: 15px;
}

.map-link-btn {
  align-self: flex-start;
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-link-btn svg {
  width: 16px;
  height: 16px;
}

.map-link-btn:hover {
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(248, 246, 242, 0.4);
}

.admin-link {
  color: rgba(248, 246, 242, 0.4);
}

.admin-link:hover {
  color: var(--accent-gold);
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.97);
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  justify-content: center;
  align-items: center;
  user-select: none;
  touch-action: none; /* Disables standard zooming/scrolling for custom gesture support */
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255,255,255,0.1);
  transform: scale(0.97);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Controls */
.lightbox-btn {
  position: absolute;
  color: #FFFFFF;
  background-color: rgba(30, 30, 30, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-fast);
  z-index: 10001;
}

.lightbox-btn:hover {
  background-color: var(--accent-gold);
  color: var(--text-dark);
  border-color: var(--accent-gold);
  transform: scale(1.05);
}

.lightbox-btn svg {
  width: 24px;
  height: 24px;
}

.lightbox-close {
  top: 30px;
  right: 30px;
}

.lightbox-prev {
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

/* Keyboard Hints in Lightbox */
.lightbox-hint {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-family: var(--font-button);
}

/* Scroll Animation Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.reveal-left {
  transform: translateX(-50px);
}

.reveal.reveal-right {
  transform: translateX(50px);
}

.reveal.reveal-scale {
  transform: scale(0.92);
}

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

/* Responsive Styles */

@media (max-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
  .fallpico-content-side {
    padding: 40px 50px;
  }
  .contact-card {
    padding: 50px;
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .navbar {
    padding: 20px 30px;
  }
  header.scrolled .navbar {
    padding: 12px 30px;
  }
  
  .hamburger {
    display: flex;
  }
  
  /* Mobile Sidebar Navigation Menu */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--primary-bg);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 50px;
    transition: var(--transition-medium);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-desc {
    margin: 0 auto 40px;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-logo-wrapper {
    order: -1; /* Place image above text on mobile */
  }
  
  .hero-logo-frame {
    max-width: 340px;
  }
  
  .fallpico-banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .fallpico-img-side {
    height: 350px;
  }
  
  .contact-card {
    grid-template-columns: 1fr;
    max-width: 600px;
    padding: 40px;
    gap: 35px;
  }
  
  .contact-hours-side {
    border-left: none;
    border-top: 1px solid var(--secondary-bg);
    padding-left: 0;
    padding-top: 35px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-col-brand, .footer-col-links, .footer-col-map {
    align-items: center;
  }
  
  .footer-desc {
    margin: 0 auto 20px;
  }
  
  .map-link-btn {
    align-self: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
  
  .lightbox-prev, .lightbox-next {
    display: none; /* Hide side arrows on mobile, swipe will navigate */
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 15px 20px;
  }
  .brand-text {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
  .hero {
    padding: 100px 20px 60px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .btn {
    width: 100%;
    padding: 14px 20px;
  }
  .hero-logo-frame {
    max-width: 260px;
    padding: 20px;
  }
  .section {
    padding: 80px 20px;
  }
  .section-title {
    font-size: 2.4rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .fallpico-section {
    padding: 80px 20px;
  }
  .fallpico-img-side {
    height: 260px;
  }
  .fallpico-content-side {
    padding: 30px 20px;
  }
  .fallpico-title {
    font-size: 2rem;
  }
  .contact-card {
    padding: 30px 20px;
  }
  .contact-title {
    font-size: 1.8rem;
  }
  .contact-actions {
    flex-direction: column;
    width: 100%;
  }
  .contact-actions .btn {
    width: 100%;
  }
  .lightbox-close {
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* Collections Tab System */
.collections-tab-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: 1px solid rgba(30, 30, 30, 0.15);
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 0;
  position: relative;
  z-index: 1;
}

.tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--text-dark);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
}

.tab-btn:hover {
  color: var(--primary-bg);
  border-color: var(--text-dark);
}

.tab-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.tab-btn.active {
  background-color: var(--text-dark);
  color: var(--primary-bg);
  border-color: var(--text-dark);
}

.gallery-grid {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-grid.active {
  opacity: 1;
  transform: translateY(0);
}

