* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Libre Baskerville', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

/* Magazine Cover */
.magazine-cover {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.cover-masthead {
    text-align: center;
    margin-bottom: 40px;
}

.cover-masthead h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

.cover-masthead h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.2em;
}

.issue {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
}

.cover-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cover-photo {
    height: 300px;
    background: linear-gradient(45deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cover-photo::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3) 0%, transparent 50%);
    border-radius: 15px;
}

.cover-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cover-text p {
    font-size: 1.3rem;
    opacity: 0.9;
    font-style: italic;
}

/* Navigation */
.magazine-nav {
    background: rgba(255,255,255,0.95);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.nav-home {
    color: #8B4513;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 8px 16px;
    border: 2px solid #D4AF37;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-home:hover {
    background: #D4AF37;
    color: white;
    transform: translateY(-2px);
}

.nav-date {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #4a4a4a;
}

/* Content Grid */
.magazine-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Featured Article */
.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.featured-img {
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    line-height: 1.1;
    color: #2c2c2c;
}

.byline {
    color: #666;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 25px;
    font-style: italic;
}

.article-body p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: #4a4a4a;
    padding: 30px;
    border-left: 5px solid #D4AF37;
    background: rgba(212,175,55,0.1);
    margin: 40px 0;
    position: relative;
}

blockquote::before {
    content: '—';
    font-size: 3rem;
    color: #D4AF37;
    position: absolute;
    left: -10px;
    top: 5px;
}

/* Magazine Grid */
.magazine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.column-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.side-article {
    position: relative;
}

.side-article .article-image.small {
    height: 200px;
    margin-bottom: 20px;
}

.article-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #FF6B35;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 12px rgba(255,107,53,0.4);
}

.side-article h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.column-right .photo-spread {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.photo-item {
    height: 140px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-5px);
}

.coffee { background: linear-gradient(135deg, #FF9A8B, #FEC8C1); }
.book { background: linear-gradient(135deg, #A8E6CF, #88D8A3); }
.notebook { background: linear-gradient(135deg, #D299C2, #FEF9D7); }

.stats-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(212,175,55,0.3);
}

.stats-box h4 {
    font-family: 'Playfair Display', serif;
    color: #8B4513;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.stats-box ul {
    list-style: none;
    font-family: 'Inter', sans-serif;
}

.stats-box li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 1rem;
}

.stats-box li:last-child {
    border-bottom: none;
}

/* Closing Spread */
.closing-spread {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 60px;
    border-radius: 30px;
    color: white;
    text-align: center;
    margin-top: 80px;
    box-shadow: 0 30px 80px rgba(240,147,251,0.3);
}

.reflection h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.reflection p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.mood-board {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.mood-tag {
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.mood-tag:hover {
    background: rgba(255,255,255,0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Magazine Footer */
.magazine-footer {
    background: #1a1a1a;
    color: #999;
    text-align: center;
    padding: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

/* Images */
.article-image, .featured-img, .photo-item {
    background-size: cover;
    background-position: center;
    transition: all 0.4s ease;
}

.article-image.small {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.featured-img {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 25%, #a8edea 50%, #fed6e3 75%, #ffecd2 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .magazine-cover {
        padding: 40px 20px;
    }
    
    .cover-image {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .magazine-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .featured-article {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}