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

:root {
    --forest-green: #1e453e;
    --gold: #e8d5b5;
    --dark: #0a1f1b;
    --black: #000000;
    --light-bg: #fbfaf8;
}

body {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

/* Typography */
.sans-serif {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--forest-green);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: 300;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--gold);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--forest-green);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 6px;
    line-height: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.hero .tagline {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--gold);
    margin-bottom: 40px;
    font-style: italic;
    opacity: 0.9;
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-cta {
    display: inline-block;
    background: var(--gold);
    color: var(--forest-green);
    padding: 18px 50px;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

/* Floating elements */
.floating-shape {
    position: absolute;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    opacity: 0.05;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
    opacity: 0.08;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Featured Section */
.featured {
    padding: 120px 0;
    background: var(--light-bg);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
}

.featured-card {
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.featured-card:nth-child(2) {
    animation-delay: 0.2s;
}

.featured-card:hover {
    transform: translateY(-5px);
}

.featured-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.featured-image:hover {
    box-shadow: 0 15px 50px rgba(232, 213, 181, 0.2), 0 10px 40px rgba(0, 0, 0, 0.2);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .featured-image {
    transform: scale(1.02);
}

.featured-card:hover .featured-image img {
    transform: scale(1.05);
}

.featured-category {
    display: inline-block;
    background: var(--gold);
    color: var(--forest-green);
    padding: 6px 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.featured-title {
    font-size: 36px;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.featured-excerpt {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.issue-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 12px 30px;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
}

.action-btn.primary {
    background: var(--forest-green);
    color: var(--gold);
    flex: 1;
    border: 2px solid var(--forest-green);
}

.action-btn.primary:hover {
    background: var(--dark);
    border-color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.action-btn.secondary {
    background: transparent;
    color: var(--forest-green);
    border-color: var(--gold);
    flex: 2;
}

.action-btn.secondary:hover {
    background: var(--gold);
    color: var(--forest-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(232, 213, 181, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .issue-actions {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
        flex: 1;
    }

}