@import url('./base.css');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
   
    line-height: 1.6;
    color: #333;
}


.main-content {
    min-height: calc(100vh - 82px);
}

.hero-section {
    background: linear-gradient(135deg, #6B7B5A 0%, #8B9A7A 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

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

.press-section {
    padding: 5rem 0;
    background: #fafafa;
}

.press-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.press-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #6B7B5A;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #6B7B5A;
    border-radius: 2px;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.press-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    max-width: 450px;
}

.press-cover {
    width: 100%;
    height: 300px; /* adjust as needed */
    object-fit: cover;
    border-radius: 14px 14px 0 0; /* rounded top only */
    margin-bottom: 1rem;
}

.press-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 8px 30px rgba(107, 123, 90, 0.15);
    border-color: #6B7B5A;
}

.press-date {
    font-size: 0.85rem;
    color: #6B7B5A;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.press-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.press-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.press-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6B7B5A;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.press-link:hover {
    color: #5A6B49;
    transform: translateX(5px);
}

.press-kit-section {
    padding: 4rem 0;
    background: white;
}

.press-kit-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.press-kit-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #6B7B5A;
    margin-bottom: 1rem;
}

.press-kit-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.press-kit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.press-kit-item {
    background: #fafafa;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.press-kit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(107, 123, 90, 0.1);
}

.press-kit-icon {
    font-size: 2.5rem;
    color: #6B7B5A;
    margin-bottom: 1rem;
}

.press-kit-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.press-kit-item-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #6B7B5A;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.download-button:hover {
    background: #5A6B49;
    transform: scale(1.05);
}

.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #6B7B5A 0%, #8B9A7A 100%);
    color: white;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* .contact-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.contact-item-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-item-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item-info {
    opacity: 0.9;
}

.contact-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #6B7B5A;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.contact-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
} */

@media (max-width: 900px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .press-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }

    .press-kit-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}