/* ═══════════════════════════════════════════════════
   Gursim Fashion Studio — Luxury Website Styles
   ═══════════════════════════════════════════════════ */

:root {
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --ivory: #faf8f5;
  --cream: #f5f0e8;
  --black: #1a1a1a;
  --dark: #2d2d2d;
  --muted: #8a8a8a;
  --blush: #f0e6e0;
  --rose: #d4a5a5;
  --white: #ffffff;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

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

/* ─── Scroll Progress ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  width: 0;
  transition: width 0.1s;
}

/* ─── Navigation ─── */
.luxury-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--transition);
}
.luxury-nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 40px rgba(0,0,0,0.06);
}
.luxury-nav.nav-hidden { transform: translateY(-100%); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.nav-brand .brand-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  transition: color 0.3s;
}
.nav-brand .brand-sub {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.scrolled .nav-brand .brand-text { color: var(--black); }

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.scrolled .nav-links a { color: var(--dark); }
.scrolled .nav-links a:hover { color: var(--gold); }

.nav-cta {
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.scrolled .nav-toggle span { background: var(--black); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mobile-menu-inner a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s;
}
.mobile-menu.open .mobile-menu-inner a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-inner a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-inner a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-inner a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-inner a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-inner a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu-inner a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu-inner a:nth-child(7) { transition-delay: 0.4s; }
.mobile-cta {
  margin-top: 16px;
  padding: 12px 32px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 0.9rem !important;
  font-family: var(--font-body) !important;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2520 50%, #1a1a1a 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
}
.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}
.hero-tagline {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── Buttons ─── */
.btn-luxury {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--black);
  transition: all 0.4s var(--transition);
  cursor: pointer;
}
.btn-luxury:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.2);
}
.btn-luxury.btn-outline {
  background: transparent;
  color: var(--white);
}
.btn-luxury.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-luxury.btn-full { width: 100%; text-align: center; }

/* ─── Sections ─── */
.section {
  padding: 100px 0;
}
.section-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--black);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-header { text-align: center; margin-bottom: 60px; }

/* ─── About ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.image-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
}
.about-text {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--cream);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
}
.stat-suffix { font-family: var(--font-heading); font-size: 1.5rem; color: var(--gold); }
.stat-label { display: block; font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ─── Collections ─── */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.collection-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
}
.collection-card-wide { grid-column: span 2; aspect-ratio: auto; min-height: 400px; }
.card-image {
  position: absolute;
  inset: 0;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.collection-card:hover .card-image img { transform: scale(1.05); }
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.card-content {
  position: relative;
  padding: 30px;
  z-index: 2;
}
.card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.card-content p { font-size: 0.8rem; opacity: 0.8; margin-bottom: 8px; }
.card-cta {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ─── Stitching ─── */
.stitching-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.stitching-features {
  list-style: none;
  margin: 24px 0;
}
.stitching-features li {
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-icon { color: var(--gold); font-size: 0.8rem; }

/* ─── Testimonials ─── */
.testimonials-section { background: var(--cream); }
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: 4px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.9rem; color: var(--dark); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.author-name { display: block; font-weight: 600; font-size: 0.85rem; }
.author-detail { font-size: 0.75rem; color: var(--muted); }

/* ─── Experience ─── */
.experience-section {
  position: relative;
  background: var(--black);
  overflow: hidden;
}
.experience-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(201,169,110,0.1) 0%, transparent 60%);
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.exp-card {
  padding: 32px 24px;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 4px;
  text-align: center;
  transition: all 0.4s;
}
.exp-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.exp-icon { color: var(--gold); font-size: 1.5rem; margin-bottom: 16px; }
.exp-card h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--white); margin-bottom: 10px; font-weight: 400; }
.exp-card p { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ─── Visit ─── */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.visit-details { margin: 24px 0; }
.visit-item { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.visit-icon { font-size: 1.2rem; }
.visit-item strong { display: block; font-size: 0.85rem; margin-bottom: 4px; }
.visit-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.visit-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.map-frame { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.08); }

/* ─── Inquiry Form ─── */
.inquiry-section { background: var(--cream); }
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0dbd4;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  background: var(--white);
  margin-bottom: 14px;
  transition: border-color 0.3s;
}
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-message { margin-top: 12px; padding: 12px; border-radius: 4px; font-size: 0.85rem; }
.form-message.success { background: #d4edda; color: #155724; }
.form-message.error { background: #f8d7da; color: #721c24; }

/* ─── Footer ─── */
.luxury-footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .brand-text { font-family: var(--font-heading); font-size: 1.8rem; color: var(--white); display: block; }
.footer-brand .brand-sub { font-size: 0.6rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); }
.footer-tagline { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: 12px; }
.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.footer-social a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer-social a:hover { color: var(--gold); }
.footer-links h4, .footer-contact h4 { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-links a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; margin-bottom: 10px; transition: color 0.3s; }
.footer-links a:hover { color: var(--white); }
.footer-contact p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 8px; line-height: 1.5; }
.footer-contact a { color: var(--gold); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ─── Floating WhatsApp ─── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  z-index: 900;
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 900;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }

/* ─── Reveal Animations ─── */
.reveal-up, .reveal-left, .reveal-right, .reveal-text, .reveal-line {
  opacity: 0;
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
  transition-delay: var(--delay, 0s);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-text { transform: translateY(20px); }
.reveal-line { transform: translateY(30px); }

.reveal-up.revealed, .reveal-left.revealed, .reveal-right.revealed,
.reveal-text.revealed, .reveal-line.revealed {
  opacity: 1;
  transform: translate(0);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .about-grid, .stitching-grid, .visit-grid, .inquiry-grid { grid-template-columns: 1fr; gap: 40px; }
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .collection-card-wide { grid-column: span 2; }
  .testimonials-slider { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { gap: 20px; }
  .image-frame img { height: 350px; }
}

@media (max-width: 600px) {
  .collections-grid { grid-template-columns: 1fr; }
  .collection-card-wide { grid-column: span 1; }
  .experience-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; }
  .section { padding: 60px 0; }
  .about-stats { flex-direction: column; gap: 16px; }
}

/* ─── Preloader ─── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-brand {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
  letter-spacing: 4px;
}
.preloader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.preloader-fill {
  height: 100%;
  background: var(--gold);
  animation: preloaderFill 1.5s ease-in-out forwards;
}
@keyframes preloaderFill {
  0% { width: 0; }
  100% { width: 100%; }
}

/* ─── Social / Instagram Grid ─── */
.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.social-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
}
.social-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition);
}
.social-item:hover img { transform: scale(1.08); }
.social-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.social-item:hover .social-overlay { opacity: 1; }

@media (max-width: 600px) {
  .social-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Cursor Glow (desktop only) ─── */
@media (min-width: 1024px) {
  .cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
  }
}

/* ─── Image Placeholder (when no images loaded) ─── */
.image-frame img,
.card-image img,
.gallery-item img,
.social-item img {
  background: linear-gradient(135deg, #2d2520 0%, #3d3530 50%, #2d2520 100%);
  min-height: 200px;
}

/* ─── Marquee / Scrolling Text ─── */
.marquee-section {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--cream);
  border-bottom: 1px solid var(--cream);
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--muted);
  padding: 0 40px;
  font-style: italic;
}
.marquee-item span { color: var(--gold); margin: 0 16px; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Page Transition ─── */
main {
  animation: pageIn 0.6s ease-out;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
