/* Base Styles */
:root {
    --primary-color: #1a365d;
    --secondary-color: #ffffff;
    --accent-color: #d4a017;
    --text-color: #333333;
    --background-color: #f5f5f5;
    --max-width: 1200px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-container img {
    height: 50px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: var(--secondary-color);
    font-weight: 500;
}

nav a:hover {
    color: var(--accent-color);
}

/* Main Content */
main {
    padding: 2rem 0;
    min-height: 60vh;
}

section {
    margin-bottom: 2rem;
}

h1, h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

/* Hero Section (Home) */
.hero {
    text-align: center;
    padding: 3rem 0;
    background-color: var(--background-color);
}

.hero-logo {
    max-height: 200px;
    margin-bottom: 1rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-link {
    color: var(--secondary-color);
    background-color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    text-decoration: none;
}

.social-link.x {
    background-color: #000000;
}

.social-link.x:hover {
    background-color: #333333;
    color: var(--secondary-color);
}

.social-link.facebook {
    background-color: #1877f2;
}

.social-link.facebook:hover {
    background-color: #1464d4;
    color: var(--secondary-color);
}

.social-link.instagram {
    background-color: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.instagram:hover {
    background-color: #bc1888;
    color: var(--secondary-color);
}

/* Footer Social Links */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social .social-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

footer a {
    color: var(--accent-color);
}

footer a:hover {
    color: var(--secondary-color);
}

/* Press Releases Page */
.press-list {
    list-style: none;
}

.press-item {
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
}

.press-item:last-child {
    border-bottom: none;
}

.press-item h3 {
    margin-bottom: 0.5rem;
}

.press-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.press-excerpt {
    color: #444;
}

/* Individual Press Release */
.back-link {
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .logo-container img {
        height: 40px;
    }
}
