/* ==========================================================================
   YESHREE FASHION STUDIO - MAIN STYLES
   ========================================================================== */

/* Announcement Bar */
.announcement-bar {
  background: var(--crimson-950);
  color: var(--gold-300);
  font-size: 0.8rem;
  padding: 6px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
  z-index: 101;
  line-height: 1.35;
}

.announcement-inner {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
  justify-content: center;
  letter-spacing: 0.03em;
}

.announcement-bar strong {
  color: var(--gold-400);
  font-weight: 700;
}

.announcement-tag {
  background: var(--crimson-800);
  color: var(--gold-200);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(252, 250, 246, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: background var(--transition-base), box-shadow var(--transition-base), padding var(--transition-base);
  padding: 8px 0;
}

.site-header.scrolled {
  padding: 6px 0;
  background: rgba(252, 250, 246, 0.98);
  box-shadow: 0 8px 24px rgba(14, 14, 17, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

/* Brand Monogram & Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
  flex-shrink: 0;
  transition: transform var(--transition-bounce), box-shadow var(--transition-base);
  display: block;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.55);
}

.brand-emblem {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-emblem svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-300);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--crimson-950);
  line-height: 1;
  text-transform: uppercase;
}

.brand-tagline {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-800);
  font-weight: 600;
  margin-top: 2px;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: var(--space-md);
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal-700);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-gold);
  transition: width var(--transition-base);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-call-btn {
  padding: 10px 18px;
  font-size: 0.88rem;
}

.header-inquiry-btn {
  padding: 10px 20px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.inq-text-short {
  display: none;
}

.mobile-menu-extra {
  display: none;
}

.mobile-nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--ivory-100);
  border: 1px solid var(--ivory-300);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  cursor: pointer;
}

.mobile-nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--charcoal-900);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  padding: 70px 0 80px;
  overflow: hidden;
  background: var(--charcoal-950);
  color: var(--white);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.55) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(14, 14, 17, 0.45) 0%, 
    rgba(14, 14, 17, 0.78) 50%,
    rgba(14, 14, 17, 0.94) 100%);
  z-index: 2;
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-text {
  max-width: 650px;
}

.hero-location-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  backdrop-filter: blur(8px);
  margin-bottom: 18px;
}

.hero-location-pill svg {
  width: 14px;
  height: 14px;
  fill: var(--gold-400);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.2vw, 4.2rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-300);
  font-weight: 400;
}

.hero-desc {
  font-size: 1.02rem;
  color: var(--sand-200);
  line-height: 1.62;
  margin-bottom: 26px;
  max-width: 600px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-400);
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.trust-sub {
  font-size: 0.72rem;
  color: var(--sand-300);
}

/* Hero Launch Card / Countdown (Spacious & Grand) */
.launch-card {
  background: rgba(23, 24, 28, 0.88);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.launch-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
}

.launch-card-header {
  margin-bottom: 14px;
}

.launch-badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 700;
  margin-bottom: 6px;
}

.launch-date-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
}

.launch-venue {
  font-size: 0.8rem;
  color: var(--sand-300);
  margin-top: 4px;
}

/* Countdown Clock */
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 16px 0;
}

.countdown-box {
  background: rgba(14, 14, 17, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-sm);
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-number {
  font-family: var(--font-serif);
  font-size: 1.95rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-300);
}

.countdown-label {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand-300);
  margin-top: 6px;
  font-weight: 600;
}

.launch-perk-box {
  background: rgba(123, 10, 34, 0.4);
  border: 1px dashed var(--gold-500);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin: 16px 0 20px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
}

.launch-perk-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--crimson-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.launch-perk-text {
  font-size: 0.76rem;
  color: var(--gold-100);
  line-height: 1.3;
}

.launch-perk-text strong {
  color: var(--gold-400);
  display: block;
}

/* Sections */
.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-alt {
  background-color: var(--ivory-100);
}

.section-dark {
  background-color: var(--charcoal-950);
  color: var(--white);
}

.section-dark .heading-section {
  color: var(--white);
}

.section-dark .lead-p {
  color: var(--sand-300);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-2xl);
}

/* Craftsmanship & Atelier Section */
.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.craft-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.craft-image-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: calc(var(--radius-xl) - 8px);
  pointer-events: none;
}

.craft-image-frame img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.craft-image-frame:hover img {
  transform: scale(1.03);
}

.craft-card-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(14, 14, 17, 0.9);
  color: var(--gold-300);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  border: 1px solid var(--gold-500);
  backdrop-filter: blur(8px);
}

.craft-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.pillar-item {
  display: flex;
  gap: var(--space-md);
}

.pillar-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--crimson-700);
  line-height: 1;
  width: 32px;
  flex-shrink: 0;
}

.pillar-content h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--charcoal-900);
  margin-bottom: 2px;
}

.pillar-content p {
  font-size: 0.9rem;
  color: var(--charcoal-600);
  line-height: 1.55;
}

/* Location Card */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.location-details-card {
  background: var(--white);
  border: 1px solid var(--ivory-300);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.location-details-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-crimson);
}

.location-header {
  margin-bottom: var(--space-lg);
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.location-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.location-icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--gold-100);
  color: var(--crimson-800);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--gold-300);
}

.location-icon-box svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.location-text h5 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--charcoal-900);
  margin-bottom: 2px;
}

.location-text p {
  font-size: 0.88rem;
  color: var(--charcoal-600);
  line-height: 1.5;
}

.location-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.map-visual-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold-300);
  height: 420px;
  position: relative;
  background: #e5e3df;
}

.map-visual-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--charcoal-950);
  color: #ede6dc;
  padding: var(--space-3xl) 0 var(--space-lg);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand p {
  font-size: 0.92rem;
  color: #d0c8be;
  margin-top: var(--space-sm);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-400);
  margin-bottom: var(--space-md);
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

.footer-links a {
  font-size: 0.92rem;
  color: #ede6dc;
  text-decoration: none;
  font-weight: 400;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold-300);
  padding-left: 6px;
}

.footer-contact-info p {
  font-size: 0.92rem;
  color: #ded6c9;
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-contact-info p strong {
  color: var(--gold-400);
  font-weight: 600;
}

.footer-contact-info a {
  color: var(--gold-300);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer-contact-info a:hover {
  color: var(--gold-200);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition-bounce), box-shadow var(--transition-base);
  border: 2px solid var(--white);
}

.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.6);
  color: var(--white);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.whatsapp-tooltip {
  position: absolute;
  right: 64px;
  background: var(--charcoal-900);
  color: var(--white);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-base);
  pointer-events: none;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-content-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text {
    margin: 0 auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-trust-badges {
    justify-content: center;
  }
  .launch-card {
    max-width: 480px;
    margin: 0 auto;
  }
  .craft-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 8px 0;
  }

  .site-header .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    position: relative;
    width: 100%;
  }

  .brand-logo {
    gap: 8px;
    min-width: 0;
    flex-shrink: 1;
  }

  .brand-logo-img {
    width: 38px;
    height: 38px;
  }

  .brand-emblem {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }

  .brand-emblem svg {
    width: 17px;
    height: 17px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-tagline {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .header-call-btn {
    display: none;
  }

  .header-inquiry-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 8px;
    background: var(--ivory-100);
    border: 1.5px solid var(--gold-500);
    gap: 5px;
    padding: 8px;
    flex-shrink: 0;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
  }

  .mobile-nav-toggle:hover,
  .mobile-nav-toggle[aria-expanded="true"] {
    background: var(--crimson-50);
    border-color: var(--crimson-700);
  }

  .mobile-nav-toggle span {
    width: 22px;
    height: 2.5px;
    background: var(--crimson-900);
    border-radius: 2px;
    transition: all 0.25s ease;
  }

  .mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* Mobile Dropdown Menu Drawer */
  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1.5px solid rgba(212, 175, 55, 0.45);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 45px rgba(14, 14, 17, 0.25);
    flex-direction: column;
    padding: 16px 20px;
    gap: 12px;
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex;
    animation: mobileNavFadeIn 0.22s ease-out;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--ivory-200);
    padding-bottom: 10px;
  }

  .nav-menu li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .nav-menu .nav-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal-900);
    display: block;
    padding: 4px 0;
  }

  .nav-menu .nav-link:hover {
    color: var(--crimson-800);
  }

  .mobile-menu-extra {
    display: block;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .countdown-number {
    font-size: 1.4rem;
  }
}

@media (max-width: 400px) {
  .site-header .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .brand-logo {
    gap: 6px;
  }
  .brand-logo-img {
    width: 34px;
    height: 34px;
  }
  .brand-name {
    font-size: 1.05rem;
  }
  .brand-tagline {
    font-size: 0.52rem;
  }
  .inq-text-full {
    display: none;
  }
  .inq-text-short {
    display: inline;
  }
  .header-inquiry-btn {
    padding: 7px 10px;
    font-size: 0.78rem;
  }
}

@keyframes mobileNavFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
