@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Playfair+Display:wght@700;900&display=swap');

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

:root {
    --rose: #e8637a;
    --blush: #f5c6cf;
    --lavender: #c9aaff;
    --mint: #a8e6cf;
    --cream: #fdf8f5;
    --dark: #2a1f2d;
    --text: #4a3550;
    --text-light: #8a7090;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.75;
}

/* MAGAZINE HEADER */
.mag-top {
    background: var(--dark);
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mag-title {
    font-family: 'Playfair Display', serif;
    color: var(--blush);
    font-size: 1.2em;
    letter-spacing: 2px;
}
.mag-issue {
    font-size: 0.75em;
    color: #6a5070;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* HERO - MAGAZINE COVER STYLE */
.hero {
    background: linear-gradient(135deg, #2a1f2d 0%, #3d2545 60%, #2a1f2d 100%);
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 100%;
}
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 24px;
    }
}
.hero-category {
    display: inline-block;
    background: var(--rose);
    color: #fff;
    font-size: 0.72em;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 14px;
    margin-bottom: 20px;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero h1 em { color: var(--blush); font-style: normal; }
.hero-sub { color: #9a7aa0; font-size: 1.05em; line-height: 1.6; }

.hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.look-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 22px 16px;
    text-align: center;
}
.look-card:nth-child(1) { border-top: 3px solid var(--rose); }
.look-card:nth-child(2) { border-top: 3px solid var(--lavender); }
.look-card:nth-child(3) { border-top: 3px solid var(--mint); }
.look-card:nth-child(4) { border-top: 3px solid var(--blush); }
.look-icon { font-size: 2em; margin-bottom: 8px; }
.look-name { font-weight: 700; color: #fff; font-size: 0.9em; }

/* BODY */
.body-wrap {
    max-width: 1060px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

/* PULL QUOTE */
.pull-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.6em;
    color: var(--rose);
    text-align: center;
    padding: 40px;
    margin: 40px 0;
    border-top: 2px solid var(--blush);
    border-bottom: 2px solid var(--blush);
    line-height: 1.4;
}

/* FEATURE SECTION */
.feature {
    background: #fff;
    border-radius: 16px;
    padding: 44px;
    margin-bottom: 28px;
    box-shadow: 0 4px 24px rgba(42,31,45,0.07);
}
.feature-label {
    font-size: 0.72em;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 14px;
}
.feature h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9em;
    color: var(--dark);
    margin-bottom: 18px;
    line-height: 1.25;
}
.feature h3 {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--dark);
    margin: 22px 0 10px;
}
.feature p {
    font-size: 1.03em;
    color: var(--text);
    margin-bottom: 16px;
    text-align: justify;
}
@media (max-width: 768px) { .feature { padding: 26px; } }

/* OUTFIT GRID */
.outfit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 28px 0;
}
.outfit-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #ecdde8;
}
.outfit-top {
    padding: 28px 20px;
    text-align: center;
    font-size: 3em;
}
.outfit-card:nth-child(1) .outfit-top { background: linear-gradient(135deg, #fce4ec, #f8bbd9); }
.outfit-card:nth-child(2) .outfit-top { background: linear-gradient(135deg, #ede7f6, #d1c4e9); }
.outfit-card:nth-child(3) .outfit-top { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.outfit-card:nth-child(4) .outfit-top { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.outfit-bottom { background: #fff; padding: 16px; }
.outfit-name { font-weight: 700; color: var(--dark); font-size: 0.95em; margin-bottom: 4px; }
.outfit-desc { font-size: 0.83em; color: var(--text-light); line-height: 1.5; }

/* STYLE TAGS */
.style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}
.style-tag {
    background: var(--blush);
    color: var(--rose);
    font-size: 0.82em;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
}
.style-tag:nth-child(2) { background: #ede7f6; color: #7b5ea7; }
.style-tag:nth-child(3) { background: #e8f5e9; color: #388e3c; }
.style-tag:nth-child(4) { background: #fff3e0; color: #e65100; }
.style-tag:nth-child(5) { background: #e3f2fd; color: #1565c0; }

/* TWO COL SPREAD */
.spread {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 28px 0;
}
@media (max-width: 640px) { .spread { grid-template-columns: 1fr; } }
.spread-box {
    background: #fdf0f3;
    border-radius: 12px;
    padding: 24px;
    border-top: 3px solid var(--rose);
}
.spread-box:nth-child(2) { background: #f3f0fd; border-top-color: var(--lavender); }
.spread-box-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1em;
}
.spread-box p { font-size: 0.94em; color: var(--text); margin: 0; }

/* ANIMATION LIST */
.anim-list { list-style: none; margin: 20px 0; }
.anim-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f0e8ec;
}
.anim-list li:last-child { border-bottom: none; }
.anim-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50%;
    background: var(--rose);
    margin-top: 7px;
}
.anim-text { font-size: 0.98em; color: var(--text); }
.anim-text strong { color: var(--dark); }

/* LINK */
a {
    color: var(--rose);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid rgba(232,99,122,0.3);
}
a:hover { border-color: var(--rose); }

/* FOOTER */
footer {
    background: var(--dark);
    padding: 40px 24px;
    text-align: center;
}
footer p { color: #6a5070; font-size: 0.9em; }
