/* =============================================
   HOME PAGE CSS — Samatta Vogue
   ============================================= */

/* ── Hero ── */
.hero {
    position: relative;
    height: 100vh; min-height: 700px;
    overflow: hidden;
    display: flex; align-items: flex-end;
}
.hero-image-wrap {
    position: absolute; inset: 0;
    transform: scale(1.08);
    animation: heroZoom 10s var(--ease-out-expo) forwards;
}
@keyframes heroZoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1.0); }
}
.hero-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(5,5,5,0.9) 0%,
        rgba(5,5,5,0.4) 50%,
        rgba(5,5,5,0.15) 100%
    );
}
.hero-content {
    position: relative; z-index: 2;
    padding: 0 6rem 7rem;
    max-width: 900px;
}
.hero-tagline {
    font-size: 0.7rem; letter-spacing: 5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
}
.hero-title { line-height: 1; margin-bottom: 1.5rem; }
.hero-desc {
    font-size: 0.9rem; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(247,244,239,0.6); margin-bottom: 2.5rem;
}
.hero-cta { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.hero-scroll-hint {
    position: absolute; bottom: 2.5rem; right: 4rem; z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    animation: scrollFade 2s ease-in-out infinite alternate;
}
@keyframes scrollFade { from { opacity: 0.4; } to { opacity: 1; } }
.hero-scroll-hint span { font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--grey); }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent); }

@media (max-width: 768px) {
    .hero-content { padding: 0 2rem 6rem; }
    .hero-scroll-hint { right: 2rem; }
}

/* ── Collections Grid ── */
.collections-preview { background: var(--dark-2); }
.section-header { margin-bottom: 3rem; }

.collections-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
    max-width: 1400px; margin: 0 auto;
}
.collection-right { display: grid; gap: 1.5rem; }

.collection-item {
    position: relative; overflow: hidden;
    display: block; text-decoration: none;
    border-radius: 4px;
}
.collection-item.large { min-height: 600px; }
.collection-item { min-height: 280px; }

.collection-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.8s var(--ease-out-expo);
}
.collection-item:hover .collection-img { transform: scale(1.12); }

.collection-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 2rem;
    transition: background 0.4s;
}
.collection-item:hover .collection-overlay { background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 60%); }
.collection-label { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.collection-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--light); }
.collection-arrow {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--light); font-size: 0.85rem; margin-top: 1rem;
    transform: translateX(-10px); opacity: 0;
    transition: transform 0.4s var(--ease-out-expo), opacity 0.4s, border-color 0.3s;
}
.collection-item:hover .collection-arrow { transform: translateX(0); opacity: 1; border-color: var(--gold); color: var(--gold); }

@media (max-width: 768px) {
    .collections-grid { grid-template-columns: 1fr; }
    .collection-item.large { min-height: 400px; }
}

/* ── About Teaser ── */
.about-teaser {
    background: var(--dark);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
    max-width: 1400px; margin: 0 auto;
    padding: 8rem 4rem;
}
.about-teaser-img-wrap {
    position: relative; border-radius: 4px; overflow: hidden;
    aspect-ratio: 3 / 4;
}
.about-teaser-img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.about-img-badge {
    position: absolute; bottom: 2rem; right: -1.5rem;
    background: var(--gold); color: var(--dark);
    padding: 1.5rem; text-align: center;
    display: flex; flex-direction: column;
}
.badge-year { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.badge-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; line-height: 1; }

.about-teaser-text { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.about-body { color: rgba(247,244,239,0.65); line-height: 1.9; font-size: 1rem; }

@media (max-width: 900px) {
    .about-teaser { grid-template-columns: 1fr; gap: 3rem; }
    .about-img-badge { right: 0; }
}

/* ── Quote Section ── */
.quote-section {
    position: relative; height: 60vh; min-height: 400px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.quote-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}
.quote-section:hover .quote-bg { transform: scale(1); }
.quote-overlay { position: absolute; inset: 0; background: rgba(5,5,5,0.7); }
blockquote.quote-text {
    position: relative; z-index: 2;
    text-align: center; padding: 0 4rem; max-width: 800px;
}
blockquote.quote-text p {
    font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic; font-weight: 400; line-height: 1.5;
    color: var(--light); margin-bottom: 1.5rem;
}
blockquote.quote-text cite {
    font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); font-style: normal;
}

/* ── Contact CTA ── */
.contact-cta {
    background: var(--dark-2);
    display: flex; align-items: center; justify-content: center;
    text-align: center;
}
.cta-content { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.cta-title {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; color: var(--light);
}
.cta-details { display: flex; gap: 3rem; flex-wrap: wrap; justify-content: center; }
.cta-item {
    display: flex; align-items: center; gap: 0.7rem;
    font-size: 0.9rem; color: rgba(247,244,239,0.7);
}
.cta-item i { color: var(--gold); }
.cta-item a { color: inherit; text-decoration: none; transition: color 0.3s; }
.cta-item a:hover { color: var(--gold); }
