@charset "UTF-8";

/*!
 * Home css - 1.1.1
 * Copyright (c) 2025 2A Digital <info@2adigital.site> and another company
*/

/*==================================================
HERO
===================================================*/

.edition-hero {

    position: relative;

    min-height: 85vh;

    display: flex;

    align-items: center;

    color: #fff;

    background: url("../images/hero-2024.jpg") center center/cover no-repeat;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background: var(--primary-dark);

}

.edition-hero .container {

    position: relative;

    z-index: 2;

}

.hero-badge {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 100px;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(8px);

    letter-spacing: 2px;

    font-weight: 600;

    font-size: .85rem;

    text-transform: uppercase;

}

.edition-hero h1 {

    font-weight: 800;

    line-height: 1.15;

}

.hero-text {

    max-width: 760px;

    margin: auto;

    opacity: .92;

    font-size: 1.15rem;

}


/*==================================================
Hero Stats
===================================================*/

.hero-stats {

    margin-top: 60px;

    display: flex;

    justify-content: center;

    gap: 60px;

    flex-wrap: wrap;

}

.hero-stats div {

    text-align: center;

}

.hero-stats strong {

    display: block;

    font-size: 3rem;

    color: var(--accent);

    font-weight: 800;

}

.hero-stats span {

    opacity: .9;

}


/*==================================================
Buttons
===================================================*/

.btn-success {

    background: var(--primary);

    border: none;

    border-radius: 50px;

    padding: 14px 40px;

    font-weight: 600;

    transition: var(--transition);

}

.btn-success:hover {

    background: var(--primary-dark);

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(0, 145, 62, .30);

}



/*==================================================
Sections
===================================================*/

section {

    padding: 90px 0;

}

.section-tag {

    color: var(--primary);

    text-transform: uppercase;

    font-weight: 700;

    letter-spacing: 2px;

    font-size: .82rem;

}

.section-title {

    font-size: 2.6rem;

    font-weight: 800;

    color: var(--primary-dark);

}

.lead {

    font-size: 1.25rem;

    color: var(--text);

}

p {

    color: var(--muted);

    line-height: 1.9;

}


/*==================================================
Image
===================================================*/

img {

    max-width: 100%;

}

.rounded-4 {

    border-radius: 26px !important;

}


/*==================================================
Numbers
===================================================*/

.numbers {

    background: #fff;

}

.number-card {

    background: #fff;

    border-radius: var(--radius);

    padding: 45px;

    box-shadow: var(--shadow);

    transition: var(--transition);

    height: 100%;

}

.number-card:hover {

    transform: translateY(-8px);

}

.number-card h2 {

    color: var(--primary);

    font-size: 3.4rem;

    font-weight: 800;

    margin-bottom: 10px;

}

.number-card p {

    margin: 0;

    color: var(--muted);

}


/*==================================================
Winner Cards
===================================================*/

.winner-card {

    background: #fff;

    border-radius: 26px;

    padding: 40px;

    box-shadow: var(--shadow);

    transition: var(--transition);

    position: relative;

    overflow: hidden;

}

.winner-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background: linear-gradient(90deg,

            var(--primary),

            var(--accent));

}

.winner-card:hover {

    transform: translateY(-10px);

    box-shadow:

        0 20px 55px rgba(0, 0, 0, .12);

}

.winner-icon {

    width: 70px;

    height: 70px;

    border-radius: 20px;

    background: rgba(0, 145, 62, .08);

    display: flex;

    justify-content: center;

    align-items: center;

    color: var(--primary);

    font-size: 1.9rem;

    margin-bottom: 30px;

}

.winner-card h3 {

    font-weight: 700;

    margin-bottom: 30px;

    color: var(--primary-dark);

}

.winner-card ul {

    list-style: none;

    padding: 0;

    margin: 0;

}

.winner-card li {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 0;

    border-bottom: 1px solid #ececec;

    font-weight: 500;

}

.winner-card li:last-child {

    border: none;

}

.gold {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 36px;

    height: 36px;

    background: rgba(255, 159, 28, .15);

    border-radius: 50%;

}


/*==================================================
Award Section
===================================================*/

.award-section {

    background: linear-gradient(135deg,

            var(--primary),

            var(--primary-dark));

    color: #fff;

}

.award-section .col-md-3 {

    padding: 30px;

}

.award-section i {

    font-size: 2.6rem;

    color: var(--accent);

    margin-bottom: 20px;

    display: block;

}

.award-section h5 {

    font-weight: 600;

}

.award-section p {

    color: rgba(255, 255, 255, .75);

}

/*==================================================
TIMELINE
==================================================*/

.timeline{

    position:relative;

    margin-left:25px;

    padding-left:35px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:12px;
    top:0;
    bottom:0;

    width:3px;

    background:linear-gradient(
        var(--primary),
        rgba(0,145,62,.15)
    );

    border-radius:50px;

}

.timeline-item{

    display:flex;

    align-items:flex-start;

    gap:22px;

    margin-bottom:40px;

    position:relative;

}

.timeline-item:last-child{

    margin-bottom:0;

}

.circle{

    width:24px;

    height:24px;

    border-radius:50%;

    background:#fff;

    border:4px solid var(--primary);

    position:absolute;

    left:-35px;

    top:2px;

    z-index:2;

    transition:var(--transition);

}

.circle.active{

    background:var(--accent);

    border-color:var(--accent);

    box-shadow:0 0 0 8px rgba(255,159,28,.15);

}

.timeline h5{

    margin-bottom:6px;

    color:var(--primary-dark);

    font-weight:700;

}

.timeline p{

    margin:0;

}


/*==================================================
GALERIE
==================================================*/

.gallery{

    background:#fff;

}

.gallery-img{

    width:100%;

    height:280px;

    object-fit:cover;

    border-radius:22px;

    cursor:pointer;

    transition:.45s ease;

    box-shadow:
        0 12px 35px rgba(0,0,0,.08);

}

.gallery-img:hover{

    transform:scale(1.05);

    box-shadow:
        0 25px 60px rgba(0,0,0,.18);

}


/*==================================================
CLOSING SECTION
==================================================*/

.closing{

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );

    color:#fff;

    position:relative;

    overflow:hidden;

}

.closing::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    right:-180px;

    top:-220px;

}

.closing::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    left:-120px;

    bottom:-120px;

}

.closing .container{

    position:relative;

    z-index:2;

}

.closing h2{

    font-size:2.8rem;

    font-weight:800;

    margin-bottom:25px;

}

.closing p{

    color:rgba(255,255,255,.85);

    font-size:1.15rem;

    max-width:760px;

    margin:auto;

    line-height:1.9;

}

.btn-warning{

    background:var(--accent);

    color:#fff;

    border:none;

    border-radius:50px;

    padding:14px 38px;

    font-weight:700;

    transition:var(--transition);

}

.btn-warning:hover{

    background:#ff8d00;

    color:#fff;

    transform:translateY(-4px);

    box-shadow:
        0 15px 35px rgba(255,159,28,.35);

}


/*==================================================
SECTION SPACING
==================================================*/

.py-5{

    padding-top:100px !important;

    padding-bottom:100px !important;

}


/*==================================================
CARD HOVER
==================================================*/

.number-card,
.winner-card{

    will-change:transform;

}

.number-card:hover,
.winner-card:hover{

    transform:
        translateY(-10px);

}


/*==================================================
IMAGE SHADOW
==================================================*/

.shadow-lg{

    box-shadow:
        0 25px 70px rgba(0,0,0,.12)!important;

}


/*==================================================
SMOOTH SCROLL
==================================================*/

html{

    scroll-behavior:smooth;

}


/*==================================================
SELECTION
==================================================*/

::selection{

    background:var(--primary);

    color:#fff;

}


/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#edf2f7;

}


/*==================================================
FADE ANIMATION
==================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:none;

}


/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:1200px){

    .edition-hero h1{

        font-size:3rem;

    }

    .section-title{

        font-size:2.2rem;

    }

}

@media (max-width:992px){

    .edition-hero{

        min-height:70vh;

        text-align:center;

    }

    .hero-stats{

        gap:35px;

    }

    .hero-stats strong{

        font-size:2.5rem;

    }

    .section-title{

        font-size:2rem;

    }

    .winner-card{

        padding:30px;

    }

    .gallery-img{

        height:230px;

    }

    .closing h2{

        font-size:2.2rem;

    }

}

@media (max-width:768px){

    section{

        padding:70px 0;

    }

    .hero-text{

        font-size:1rem;

    }

    .hero-stats{

        flex-direction:column;

        gap:20px;

    }

    .number-card{

        padding:35px;

    }

    .winner-card{

        padding:28px;

    }

    .timeline{

        margin-top:40px;

    }

    .gallery-img{

        height:210px;

    }

    .closing h2{

        font-size:1.8rem;

    }

}

@media (max-width:576px){

    .edition-hero{

        min-height:65vh;

    }

    .edition-hero h1{

        font-size:2.2rem;

    }

    .hero-badge{

        font-size:.75rem;

    }

    .hero-stats strong{

        font-size:2rem;

    }

    .section-title{

        font-size:1.8rem;

    }

    .gallery-img{

        height:190px;

    }

    .btn-success,
    .btn-warning{

        width:100%;

    }

}