@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Bebas+Neue&display=swap');

:root {
    --color-white: #ffffff;
    --color-black: #000000;
    --color-orange: #f54e2c;
    --color-gray: #333333;
    --color-light-gray: #f5f5f5;
    --fuente-principal: 'Montserrat', sans-serif;
    --fuente-secundaria: 'Bebas Neue', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--color-white);
    color: var(--color-black);
    font-family: var(--fuente-principal);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

.header {
    background: var(--color-white);
    border-bottom: 2px solid var(--color-orange);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 65px;
    height: 65px;
    background: var(--color-white);
    border: 2px solid var(--color-orange);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
}

.logo:hover {
    transform: rotate(360deg) scale(1.05);
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.club-name {
    font-family: var(--fuente-secundaria);
    font-size: 1.9rem;
    color: var(--color-black);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 1.4rem;
    border-radius: 25px;
    color: var(--color-gray);
    transition: .3s ease;
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--color-orange);
    color: var(--color-white);
    transform: translateY(-2px);
}

.content-section {
    padding: 4rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-family: var(--fuente-secundaria);
    font-size: 2.7rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-inline: auto;
}

.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.content-card,
.logo-card,
.news-card {
    background: var(--color-light-gray);
    padding: 2.2rem;
    border-radius: 12px;
    border: 1px solid #ddd;
    transition: .3s ease;
}

.content-card:hover,
.logo-card:hover,
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
    border-color: var(--color-orange);
}

.logo-card {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-card img {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    transition: .3s;
}

.logo-card img:hover {
    transform: scale(1.05);
}

.content-card h3 {
    font-size: 1.6rem;
    font-family: var(--fuente-secundaria);
    margin-bottom: .8rem;
    border-bottom: 2px solid var(--color-orange);
    padding-bottom: .4rem;
}

.content-card p {
    color: var(--color-gray);
}

.news-section {
    margin-top: 2rem;
}

.news-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.news-icon {
    font-size: 3rem;
    color: var(--color-orange);
    margin-bottom: 1rem;
}

.news-card h4 {
    font-size: 1.4rem;
    margin-bottom: .5rem;
}

.footer {
    background: var(--color-light-gray);
    border-top: 2px solid var(--color-orange);
    margin-top: auto;
}

.footer-bottom {
    padding: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-gray);
    font-family: var(--fuente-secundaria);
    font-size: 1rem;
}



@media (max-width: 900px) {
    .main-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {

    .navbar {
        flex-direction: column;
        gap: 0.8rem;
        height: auto;
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .logo {
        width: 58px;
        height: 58px;
    }

    .club-name {
        font-size: 1.7rem;
    }

    .content-section {
        padding: 3rem 1rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 450px) {
    .nav-links a {
        padding: .6rem 1rem;
        font-size: .85rem;
    }

    .content-card,
    .logo-card {
        padding: 1.6rem;
    }

    .logo-card img {
        width: 170px;
        height: 170px;
    }
}
