/* ===========================
   GOOGLE FONT: SYNE TACTILE
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Syne+Tactile&display=swap');

/* ===========================
   ROOT VARIABLES
=========================== */
:root {
  --rose: #F875AA;
  --mint: #EDFFF0;
  --blush: #FDEDED;
  --charcoal: #2D2424;
  --midnight: #0f1412;
}

/* ===========================
   RESET
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--mint);
  color: var(--charcoal);
  font-family: 'Montserrat', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===========================
   TYPOGRAPHY SYSTEM
=========================== */

/* SYNE BRAND FONT */
.syne {
  font-family: "Syne Tactile", system-ui;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Editorial / Brand Headings */
h1, h2, h3,
.editorial-title,
.serif,
#auth-title {
  font-family: "Syne Tactile", system-ui;
  font-weight: 400;
}

/* Hero Scale */
.editorial-title {
  font-size: clamp(3rem, 8vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
}

/* UI Labels */
.ui-label {
  font-family: "Syne Tactile", system-ui;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  color: var(--rose);
  font-weight: 400;
}

/* Body Text */
p,
li,
input,
textarea {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1rem;
}

/* Drop Cap */
.drop-cap::first-letter {
  font-family: "Syne Tactile", system-ui;
  font-size: 6rem;
  float: left;
  line-height: 0.8;
  padding-right: 1rem;
  color: var(--rose);
}

/* ===========================
   LAYOUT UTILITIES
=========================== */
.section-padding {
  padding: 10rem 1.5rem;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 5rem 1rem;
  }
}

.page-view {
  display: none;
  min-height: 100vh;
}

.page-view.active {
  display: block;
  animation: viewFade 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes viewFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   HERO SLIDESHOW
=========================== */
.hero-grid {
  grid-column: 1 / -1;
  position: relative;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease-in-out, transform 10s linear;
  transform: scale(1.1);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* ===========================
   BUTTONS
=========================== */
.btn-luxury {
  background: var(--rose);
  color: var(--mint);
  padding: 1.25rem 3rem;
  border: none;
  cursor: pointer;
  font-family: "Syne Tactile", system-ui;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-luxury:hover {
  letter-spacing: 0.5em;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(248, 117, 170, 0.3);
}

/* ===========================
   FORMS
=========================== */
input,
textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(248,117,170,0.3);
  padding: 1rem 0;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--rose);
}

/* ===========================
   PANELS & OVERLAYS
=========================== */
.side-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  max-width: 500px;
  background: var(--mint);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.05);
  padding: 3rem;
}

.side-panel.active {
  transform: translateX(0);
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: var(--mint);
  z-index: 10000;
  display: none;
  padding: 10vh 5vw;
}

.search-overlay.active {
  display: flex;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ===========================
   MEDIA / IMAGE MOTION
=========================== */
.img-editorial {
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
  filter: sepia(20%) contrast(1.1);
}

.img-container:hover .img-editorial {
  transform: scale(1.08);
}

/* ===========================
   SCROLLBAR
=========================== */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--mint);
}

::-webkit-scrollbar-thumb {
  background: var(--rose);
}@keyframes reveal {
  from {
    clip-path: inset(0 100% 0 0);
    filter: saturate(0.8);
  }
  to {
    clip-path: inset(0 0 0 0);
    filter: saturate(1);
  }
}
#hero-commerce {
  transform: translateY(-50%) translateX(-12px);
}

#hero-commerce.opacity-100 {
  transform: translateY(-50%) translateX(0);
}


/* ===========================
   GRID SYSTEM
=========================== */
.asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

/* ===========================
   FOOTER
=========================== */
footer {
  font-family: 'Montserrat', system-ui, sans-serif;
}
/* BIG IMAGE */
.editorial-big {
  opacity: 0;
  transform: scale(1.08);
  animation: bigIn 1.1s ease-out forwards;
}

/* SMALL IMAGE */
.editorial-small {
  opacity: 0;
  transform: translateY(24px) scale(1.05);
  animation: smallIn 1.2s ease-out forwards;
  animation-delay: 0.2s;
}

/* LOGO */
#hero-logo {
  animation: logoIn 0.9s ease-out forwards;
  animation-delay: 0.5s; /* AFTER images */
}

/* TAGLINE */
#hero-tagline {
  animation: taglineIn 0.8s ease-out forwards;
  animation-delay: 0.8s;
}

/* KEYFRAMES */
@keyframes bigIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes smallIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logoIn {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes taglineIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Marquee Track */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}

/* Marquee Text */
.marquee-text {
  white-space: nowrap;
  padding-right: 3rem;
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Animation */
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Optional smoothness for editorial feel */
.marquee-track:hover {
  animation-play-state: paused;
}
