/* ============================================================
   HOME.CSS — MV Moda Femenina
   All home page sections below the hero
   ============================================================ */

/* ── Shared section helpers ── */

.sec-eyebrow {
    font-family: var(--f-italic);
    font-style: italic;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 10px;
}

.sec-title {
    font-family: var(--f-display);
    font-size: clamp(22px, 5vw, 36px);
    font-weight: 400;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink);
}

.sec-divider {
    display: flex;
    justify-content: center;
    margin: 14px 0 28px;
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 8px;
}

/* ── Collections ── */

.sec-collections {
    padding: 0;
}

.col-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: var(--max-content);
    margin: 0 auto;
}

.col-card {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--cream-3);
    text-decoration: none;
    cursor: pointer;
}

.col-overlay {
    position: absolute;
    inset: 0;
}

.col-card:not(.col-card--coming-soon) .col-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    mask-image: linear-gradient(to top, black 0%, transparent 55%);
    -webkit-mask-image: linear-gradient(to top, black 0%, transparent 70%);
}

.col-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.8s ease;
    filter: brightness(0.8);
}

.col-card:hover .col-overlay img {
    transform: scale(1.04);
}

.col-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 24px;
    color: var(--cream);
}


.col-sub {
    font-family: var(--f-italic);
    font-style: italic;
    font-size: 12px;
    color: var(--champagne);
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.col-name {
    font-family: var(--f-display);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 14px;
}

.col-info::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 12px;
    opacity: 0.8;
}

.col-cta {
    font-family: var(--f-body);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--champagne);
    border-bottom: 1px solid rgba(212,175,125,0.5);
    padding-bottom: 3px;
    display: inline-block;
    transition: padding-left 0.3s, color 0.3s;
}

.col-card:hover .col-cta {
    padding-left: 6px;
    color: white;
}

/* ── Coming soon card ── */

.col-card--coming-soon {
    cursor: default;
    pointer-events: none;
}

.col-card--coming-soon .col-overlay img {
    transform: scale(1.08);
    filter: blur(10px) saturate(0.2) brightness(0.5);
    transition: none;
}

.col-cs-banner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    text-align: center;
    padding: 24px;
}

.col-cs-label {
    font-family: var(--f-italic);
    font-style: italic;
    font-size: 12px;
    color: var(--champagne);
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    opacity: 0.75;
}

.col-cs-title {
    font-family: var(--f-display);
    font-size: clamp(32px, 7vw, 56px);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.col-cs-badge {
    font-family: var(--f-body);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--champagne);
    border: 1px solid rgba(212, 175, 125, 0.5);
    padding: 8px 20px;
}

/* Tablet/desktop: card is ~1/3 viewport width — scale title down */
@media (min-width: 768px) {
    .col-cs-title {
        font-size: 3.2vw;
        letter-spacing: 2px;
    }
}

@media (min-width: 1280px) {
    .col-cs-title {
        font-size: 2.6vw;
        letter-spacing: 2px;
    }
}

/* ── Brand story ── */

.sec-brand {
    background: var(--cream-2);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.sec-brand-inner {
    padding: 72px 28px 64px;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.brand-eyebrow {
    font-family: var(--f-italic);
    font-style: italic;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.12em;
}

.brand-title {
    font-family: var(--f-display);
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1.1;
}

.brand-title em {
    font-family: var(--f-italic);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--gold-dark);
}

.brand-rule {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 280px;
}

.brand-rule span:not(.brand-rule-gem) {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
}

.brand-rule span:last-child {
    background: linear-gradient(to left, transparent, var(--gold));
}

.brand-rule-gem {
    color: var(--gold);
    font-size: 9px;
    flex-shrink: 0;
}

.brand-body {
    font-size: 14px;
    line-height: 1.9;
    color: var(--warm-gray);
    max-width: 400px;
}

.brand-body strong {
    color: var(--ink);
    font-weight: 500;
}

.brand-logo-img {
    width: min(160px, 45vw);
    height: auto;
    opacity: 0.7;
    margin: 4px 0;
    filter: sepia(0.2) brightness(0.85);
}

.brand-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border: 1px solid var(--gold);
    font-family: var(--f-body);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    text-decoration: none;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.brand-btn:hover {
    background: var(--gold);
    color: var(--cream);
    border-color: var(--gold);
}

/* ── Featured products ── */

/* ── Footer marquee ── */

.marquee-footer {
    background: var(--ink);
    height: 64px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(212, 175, 125, 0.12);
}

.marquee-footer-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marqueeScroll 32s linear infinite;
}

.mf-item {
    font-family: var(--f-italic);
    font-style: italic;
    font-size: 17px;
    font-weight: 300;
    color: rgba(212, 175, 125, 0.75);
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 16px;
    letter-spacing: 0.03em;
}

.mf-gem {
    font-style: normal;
    font-size: 9px;
    color: var(--gold);
    opacity: 0.6;
}

