
@font-face {
    font-family: 'monument_extendedregular';
    src: url('font/monumentextended-regular-webfont.eot');
    src: url('font/monumentextended-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('font/monumentextended-regular-webfont.woff2') format('woff2'),
         url('font/monumentextended-regular-webfont.woff') format('woff'),
         url('font/monumentextended-regular-webfont.ttf') format('truetype'),
         url('font/monumentextended-regular-webfont.svg#monument_extendedregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
:root {
    --primary-orange: #fc6c0f;
    --primary-dark: #393837;
    --light-bg: #f8f9fa;
    --section-padding: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
body {
    font-family:  "Manrope", sans-serif;
    color: var(--primary-dark);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family:  "Manrope", sans-serif;
    font-weight: 800;
}


/* Navbar */
.navbar {
    background-color: white !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 25px rgba(0,0,0,0.12);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 40px;
}

.nav-link {
    color: var(--primary-dark) !important;
    font-weight: 600;
    padding: 0.5rem 1.2rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-orange) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 70%;
}

/* Hero Section */
.hero {
 background-image: 
      linear-gradient(135deg, rgb(0 0 0 / 33%) 0%, rgba(42, 41, 40, 0.75) 100%), url(img/feim-hero.jpg);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}
.hero {
    display: flex;
    align-items: flex-end;
}

.hero-content {
    margin-bottom: 0px;
}

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

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

.hero h1 {
     font-size: 4rem;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: 'monument_extendedregular';
}
.hero h1 span {
    display: block;
    font-size: 3.2rem;
    font-weight: 600;
    font-family: "Manrope", sans-serif;
    letter-spacing: 0px;
}
.hero .subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-orange);
    margin-bottom: 2rem;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(252, 108, 15, 0.15);
    border-left: 4px solid var(--primary-orange);
}

.hero-logo {
    max-width: 300px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    animation: fadeInUp 1s ease 0.2s backwards;
}

/* Section Styling */
section {
    padding: var(--section-padding) 0;
}

.section-title {
 font-size: 2rem;
 letter-spacing: 2px;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'monument_extendedregular';
    color:var(--primary-dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, transparent 100%);
}

/* About Section */
.about-section {
    background-color: white;
}

.about-content {
        font-size: 17px;
    line-height: 1.6em;
    color: #555;
}

.image-box {
    position: relative;
    overflow: hidden;
}

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

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

.highlight-box {
    background: #4b8189;
    color: white;
    padding: 3.5rem;
    border-radius: 15px;
    margin-top: 2rem;

    transform: translateY(0);
    transition: all 0.3s ease;
}


.highlight-box p {
       margin: 0;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.3em;
    text-align: center;
}

/* Asamblea Section */
.asamblea-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #fd8c3f 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(252, 108, 15, 0.3);
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* Comité Section */
.comite-section {
    background-color: white;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.team-member:hover {
    border-color: var(--primary-orange);
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.team-member .role {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member .name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Partidos Section */
.partidos-section {
    background: #4b8189;
    color: white;
}

.partidos-section .section-title {
    color: white;
}

.partidos-section .section-title::after {
    background: linear-gradient(90deg, var(--primary-orange) 0%, transparent 100%);
}

.partido-item {
    background: rgba(255,255,255,0.05);
    padding: 1.2rem 1.8rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.partido-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
    border-left-width: 6px;
}

.partido-item i {
    color: var(--primary-orange);
    margin-right: 1rem;
    font-size: 1.1rem;
}

.partido-name {
    font-weight: 700;
    font-size: 1.15rem;
}

.partido-siglas {
    color: rgb(255 255 255 / 48%);
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Federarse Section */
.federarse-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #fd8c3f 100%);
    color: white;
    text-align: center;
}

.federarse-section .section-title {
    color: white;
}

.federarse-section .section-title::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.7) 0%, transparent 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.btn-custom {
    background: white;
    color: var(--primary-orange);
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    text-decoration: none;
    display: inline-block;
}

.btn-custom:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255,255,255,0.2);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    backdrop-filter: blur(10px);
}

/* Footer */
.footer {
    background: #4b8189;
    color: white;
    padding: 3rem 0 1.5rem;
    text-align: center;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
    }
    .hero {
            background-attachment: unset;
    }
    .col-lg-6 {
    padding-top: 3rem;
}
    .hero h1 span {

    font-size: 2.2rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    .highlight-box {
        transform: none;
    padding: 2.5rem;
    }
     .highlight-box p {
    font-size: 1.6rem;
    }
    .hero-logo {
        max-width: 200px;
    }
    
    .navbar-brand img {
        height: 40px;
    }
}

/* Scroll animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #fd8c3f 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 108, 15, 0.4);
    z-index: 1000;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #fd8c3f 0%, var(--primary-orange) 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(252, 108, 15, 0.6);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Language selector */
.language-selector {
    font-weight: 700;
    border: 2px solid var(--primary-orange);
    border-radius: 20px;
    padding: 0.3rem 0.9rem !important;
    transition: all 0.3s ease;
}

.language-selector:hover {
    background-color: var(--primary-orange);
    color: white !important;
}

.dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.dropdown-item {
    font-weight: 600;
}

.dropdown-item:hover {
    background-color: var(--primary-orange);
    color: white;
}
.dropdown-toggle::after {
    background-color: transparent !important;
    content: '';
    position: relative;
    width: 0;
    height: 3px;
    left: 6px;
    top: 45%;
    right: auto;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.dropdown-toggle:hover::after {
    width: auto !important;
}
/* Mostrar dropdown al hacer hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Asegurar que se vea por encima del hero */
.dropdown-menu {
    z-index: 2000;
}

/* opcional: animación suave */
.dropdown-menu {
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.2s ease;
    display: block;
    visibility: hidden;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: all 0.2s ease;
    }
}
