﻿
:root {
    --red: #ae003f;
    --dark: #3c3c3c;
    --white: #ffffff;
    --red-dark: #8a0032;
    --red-light: #d4004d;
    --gray-light: #f5f5f5;
    --gray-mid: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}


body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    padding-top: 65px;
}

h1, h2, h3, .display-font {
    font-family: 'Poppins', sans-serif;
}

/* ── NAVBAR ── */
.navbar {
    width: 100%;
    background: var(--dark);
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white) !important;
    letter-spacing: -0.5px;
}

    .navbar-brand span {
        color: var(--red);
    }

.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.nav-link {
    color: rgba(255,255,255,0.75) !important;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 0.4rem 0.7rem !important;
    transition: color 0.2s;
}

    .nav-link:hover {
        color: var(--red) !important;
    }

    .nav-link.active {
        color: var(--white) !important;
    }

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    text-align: left;
    color: #fff;
    background-color: #282828;
    background-image: radial-gradient(circle at 0% 0%, rgba(216, 0, 78, 0.35) 0%, transparent 25%), radial-gradient(circle at 75% 100%, rgba(122, 0, 44, 0.40) 0%, transparent 35%);
}

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, transparent 50%, rgba(20, 20, 20, 0.5) 100%);
        pointer-events: none;
    }

    .hero > * {
        position: relative;
        z-index: 1;
    }


.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-edition {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(174,0,63,0.15);
    color: #ff8fb3;
    border: 1px solid rgba(174,0,63,0.35);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.75rem;
}

    .hero-edition::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--red);
        display: inline-block;
    }

.hero h1 {
    font-size: clamp(1.6rem, 3.5vw, 3.2rem);
    color: var(--white);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

    .hero h1 em {
        font-style: normal;
        color: var(--red);
    }

.hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    /*max-width: 580px;*/
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-meta {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    padding: 0.7rem 1.4rem;
    /*border-right: 1px solid rgba(255,255,255,0.1);*/
}

    .hero-meta-item:last-child {
        border-right: none;
    }

    .hero-meta-item i {
        color: var(--red);
        font-size: 0.9rem;
    }

.btn-primary-custom {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
}

    .btn-primary-custom:hover {
        background: var(--red-dark);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(174,0,63,0.4);
    }

.btn-outline-custom {
    background: var(--dark);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
    padding: 0.85rem 2rem;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 3px;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
}

    .btn-outline-custom:hover {
        border-color: var(--white);
        background: rgba(255,255,255,0.08);
        color: var(--white);
    }

/* ── STATS BAR ── */
.stats-bar {
    background: var(--red);
    padding: 1.5rem 0;
}

.stat-item {
    text-align: center;
    padding: 0.5rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.2);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

/* ── ABOUT SECTION ── */
.section {
    padding: 5rem 0;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.section-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.divider-red {
    width: 48px;
    height: 3px;
    background: var(--red);
    margin-bottom: 1.5rem;
}

/* ── FEATURE CARDS ── */
.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-mid);
    border-radius: 6px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--red);
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .feature-card:hover {
        border-color: transparent;
        box-shadow: 0 12px 40px rgba(0,0,0,0.1);
        transform: translateY(-4px);
    }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(174,0,63,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

    .feature-icon i {
        color: var(--red);
        font-size: 1.3rem;
    }

.feature-card h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ── DARK SECTION ── */
.section-dark {
    background: var(--dark);
    padding: 5rem 0;
}

    .section-dark .section-title {
        color: var(--white);
    }

    .section-dark .section-label {
        color: #ff6699;
    }

    .section-dark .divider-red {
        background: #ff4d7d;
    }

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.timeline-dot {
    min-width: 40px;
    height: 40px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .timeline-dot i {
        color: var(--white);
        font-size: 0.9rem;
    }

.timeline-content h6 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.timeline-content p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
    line-height: 1.6;
}

/* ── AWARDS ── */
.award-card {
    background: #f4e6ec;
    border: 1px solid rgba(174,0,63,0.15);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

    .award-card:hover {
        background: var(--red);
        border-color: var(--red);
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(174,0,63,0.25);
    }

        .award-card:hover i {
            color: var(--white);
        }

        .award-card:hover h5 {
            color: var(--white);
        }

        .award-card:hover p {
            color: rgba(255,255,255,0.85);
        }

        .award-card:hover .btn-primary-custom {
            background: var(--white);
            color: var(--red);
        }

    .award-card i {
        font-size: 2.5rem;
        color: var(--red);
        margin-bottom: 1rem;
        display: block;
        transition: color 0.3s;
    }

    .award-card h5 {
        font-family: 'Poppins', sans-serif;
        color: var(--dark);
        margin-bottom: 0.5rem;
        transition: color 0.3s;
    }

    .award-card p {
        color: #666;
        font-size: 0.88rem;
        margin: 0;
        transition: color 0.3s;
    }

/* ── TOPICS ── */
.topic-tag {
    display: inline-block;
    background: rgba(174,0,63,0.08);
    color: var(--red);
    border: 1px solid rgba(174,0,63,0.2);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.82rem;
    font-weight: 500;
    margin: 0.3rem;
    transition: all 0.2s;
}

    .topic-tag:hover {
        background: var(--red);
        color: var(--white);
        border-color: var(--red);
        cursor: default;
    }

/* ── CTA ── */
.cta-section {
    background: var(--red);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '17';
        position: absolute;
        font-family: 'Poppins', sans-serif;
        font-size: 20rem;
        font-weight: 700;
        color: rgba(255,255,255,0.05);
        right: -2rem;
        bottom: -4rem;
        line-height: 1;
        pointer-events: none;
    }

    .cta-section h2 {
        color: var(--white);
    }

    .cta-section p {
        color: rgba(255,255,255,0.8);
    }

.btn-white {
    background: var(--white);
    color: var(--red);
    border: none;
    padding: 0.85rem 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 3px;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
}

    .btn-white:hover {
        background: var(--gray-light);
        color: var(--red-dark);
        transform: translateY(-2px);
    }

.btn-outline-white {
    background: var(--dark);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
    padding: 0.85rem 2rem;
    font-weight: 500;
    border-radius: 3px;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
}

    .btn-outline-white:hover {
        border-color: var(--white);
        background: rgba(255,255,255,0.1);
        color: var(--white);
    }


/* ── CONTACT SECTION ── */
.contact-section {
    background: var(--gray-light);
    padding: 5rem 0;
}

.contact-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--gray-mid);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.3s;
}

    .contact-card:hover {
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        transform: translateY(-3px);
        border-color: rgba(174,0,63,0.2);
    }

.contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(174,0,63,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .contact-icon i {
        color: var(--red);
        font-size: 1.4rem;
    }

.contact-card-body h6 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.35rem;
}

.contact-card-body a,
.contact-card-body p {
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    margin: 0;
    transition: color 0.2s;
}

    .contact-card-body a:hover {
        color: var(--red);
    }

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-mid);
    height: 300px;
}

    .map-wrapper iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

/* ── FOOTER ── */
footer {
    background: #2a2a2a;
    padding: 3rem 0 1.5rem;
}

.footer-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

    .footer-brand span {
        color: var(--red);
    }

.footer-desc {
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem;
    margin-top: 0.75rem;
    line-height: 1.7;
}

.footer-links h6 {
    color: var(--white);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

    .footer-links a:hover {
        color: var(--red);
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

/* ── ANIMATIONS ── */

/* ── HERO SIDE CARD ── */
.hero-side-card {
    width: 100%;
    max-width: 360px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    position: relative;
    animation: fadeUp 0.8s ease 0.5s both;
}

    .hero-side-card::before {
        content: '';
        position: absolute;
        inset: -1px;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(174,0,63,0.4), transparent 60%);
        z-index: -1;
    }

.hero-side-badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.hero-side-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 1.25rem;
    letter-spacing: -2px;
}

.hero-side-divider {
    width: 40px;
    height: 2px;
    background: var(--red);
    margin-bottom: 1.5rem;
}

.hero-side-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

    .hero-side-list li {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        color: rgba(255,255,255,0.75);
        font-size: 0.85rem;
        padding: 0.4rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

        .hero-side-list li:last-child {
            border-bottom: none;
        }

        .hero-side-list li i {
            color: var(--red);
            font-size: 0.85rem;
            flex-shrink: 0;
        }

.hero-side-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.25s;
}

    .hero-side-btn:hover {
        background: var(--red-dark);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(174,0,63,0.4);
    }

table {
    caption-side: top;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
}

    .hero-content > *:nth-child(1) {
        animation-delay: 0.1s;
    }

    .hero-content > *:nth-child(2) {
        animation-delay: 0.25s;
    }

    .hero-content > *:nth-child(3) {
        animation-delay: 0.4s;
    }

    .hero-content > *:nth-child(4) {
        animation-delay: 0.55s;
    }

    .hero-content > *:nth-child(5) {
        animation-delay: 0.7s;
    }

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .hero-accent {
        display: none;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

        .stat-item:last-child {
            border-bottom: none;
        }
}



/* ── DROPDOWN HOVER ── */
.dropdown-hover {
    position: relative;
}

.dropdown-hover-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #2a2a2a;
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 2px solid var(--red);
    border-radius: 6px;
    padding: 0.5rem 0;
    min-width: 200px;
    list-style: none;
    z-index: 9999;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.dropdown-hover:hover .dropdown-hover-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-hover-menu li a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.1rem;
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

    .dropdown-hover-menu li a:hover {
        color: var(--white) !important;
        background: rgba(174,0,63,0.15);
        padding-left: 1.4rem;
    }

    .dropdown-hover-menu li a i {
        color: var(--red);
        font-size: 0.85rem;
    }

.dropdown-hover::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
}

.dropdown-hover-menu {
    top: calc(100% + 0px);
}