/* CSS Document */

/* =========================================================
   LOTERÍA EL ÑERO
   ========================================================= */

:root {

    /*
    COLORES TEMPORALES

    Cambiaremos estos valores cuando
    tengamos el logo oficial.
    */

    --primary: #f5b400;
    --primary-dark: #d99f00;

    --secondary: #151515;

    --dark: #080808;
    --dark-soft: #111111;

    --white: #ffffff;

    --gray: #777777;
    --light-gray: #f5f5f5;

}


/* =========================================================
   GENERAL
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {

    margin: 0;

    font-family: 'Montserrat', sans-serif;

    color: #222;

    background: #ffffff;

    overflow-x: hidden;

}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}


/* =========================================================
   NAVBAR
   ========================================================= */

#mainNavbar {

    padding: 18px 0;

    background: rgba(0, 0, 0, 0.15);

    transition: all 0.3s ease;

    z-index: 9999;

}


/* Cuando hacemos scroll */

#mainNavbar.navbar-scrolled {

    padding: 10px 0;

    background: rgba(5, 5, 5, 0.97);

    box-shadow:
        0 8px 30px
        rgba(0, 0, 0, 0.15);

}


.navbar-logo {

    width: auto;

    height: 55px;

    object-fit: contain;

}


.logo-text {

    font-weight: 900;

    font-size: 25px;

    letter-spacing: 1px;

    color: var(--white);

}


.navbar-nav {
    gap: 7px;
}


.navbar-nav .nav-link {

    color: rgba(255,255,255,.90);

    font-size: 14px;

    font-weight: 600;

    padding: 10px 12px !important;

    transition: all .25s ease;

}


.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {

    color: var(--primary);

}


.btn-navbar {

    background: var(--primary);

    color: var(--dark);

    border-radius: 50px;

    padding: 11px 22px;

    font-size: 13px;

    font-weight: 800;

    border: 2px solid var(--primary);

    transition: .25s;

}


.btn-navbar:hover {

    background: transparent;

    color: var(--white);

    border-color: var(--white);

}


/* =========================================================
   HERO
   ========================================================= */

.hero-slider {

    position: relative;

    background: #000;

}


.hero-slider .carousel-item {

    position: relative;

    height: clamp(580px, 75vh, 850px);

    min-height: 580px;

}


.hero-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.78) 0%,
            rgba(0,0,0,.48) 45%,
            rgba(0,0,0,.10) 100%
        );

}


.hero-content {

    top: 0;

    bottom: 0;

    left: 0;

    right: 0;

    padding: 0;

    text-align: left;

}


.hero-content .container {

    height: 100%;

    display: flex;

    align-items: center;

}


.hero-text {

    max-width: 680px;

}


.hero-small {

    display: inline-block;

    color: var(--primary);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 16px;

}


.hero-text h1,
.hero-text h2 {

    color: #fff;

    font-size:
        clamp(42px, 5vw, 76px);

    font-weight: 900;

    line-height: 1;

    letter-spacing: -2px;

    margin-bottom: 20px;

}


.hero-text p {

    color: rgba(255,255,255,.85);

    font-size: 17px;

    line-height: 1.7;

    max-width: 580px;

    margin-bottom: 30px;

}


.btn-nero {

    background: var(--primary);

    color: var(--dark);

    padding: 14px 30px;

    border-radius: 50px;

    font-weight: 800;

    font-size: 14px;

    border: 2px solid var(--primary);

    transition: all .25s ease;

}


.btn-nero:hover {

    background: transparent;

    border-color: #fff;

    color: #fff;

}


/* Carousel */

.carousel-control-prev,
.carousel-control-next {

    width: 8%;

}


.carousel-indicators {

    bottom: 25px;

}


.carousel-indicators [data-bs-target] {

    width: 35px;

    height: 4px;

    border: 0;

}


/* =========================================================
   PLACEHOLDER SECTION
   ========================================================= */

.placeholder-section {

    padding: 110px 0;

    background: #fff;

}


.section-eyebrow {

    color: var(--primary-dark);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;

}


.placeholder-section h2 {

    font-size: clamp(32px, 4vw, 50px);

    font-weight: 900;

    margin-top: 12px;

    margin-bottom: 15px;

}


.placeholder-section p {

    max-width: 620px;

    margin: 0 auto;

    color: var(--gray);

    line-height: 1.7;

}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {

    background: var(--dark);

    color: rgba(255,255,255,.72);

    padding: 75px 0 25px;

}


.footer-logo {

    max-width: 170px;

    max-height: 80px;

    object-fit: contain;

    margin-bottom: 20px;

}


.footer-description {

    max-width: 330px;

    line-height: 1.7;

    font-size: 14px;

}


.site-footer h5 {

    color: #fff;

    font-size: 15px;

    font-weight: 800;

    margin-bottom: 22px;

}


.footer-links {

    list-style: none;

    margin: 0;

    padding: 0;

}


.footer-links li {

    margin-bottom: 11px;

}


.footer-links a {

    color: rgba(255,255,255,.62);

    font-size: 14px;

    transition: all .2s ease;

}


.footer-links a:hover {

    color: var(--primary);

    padding-left: 3px;

}


.social-links {

    display: flex;

    gap: 10px;

    margin-top: 22px;

}


.social-links a {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255,255,255,.08);

    color: #fff;

    transition: all .25s ease;

}


.social-links a:hover {

    background: var(--primary);

    color: var(--dark);

}


.footer-contact {

    display: flex;

    gap: 10px;

    align-items: center;

    font-size: 14px;

}


.footer-contact i {

    color: var(--primary);

}


.footer-divider {

    border-color: rgba(255,255,255,.10);

    margin: 50px 0 25px;

}


.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    font-size: 12px;

    color: rgba(255,255,255,.45);

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    #mainNavbar {

        background: rgba(5,5,5,.96);

        padding: 10px 0;

    }

    .navbar-collapse {

        padding: 20px 0;

    }

    .navbar-nav {

        align-items: stretch !important;

    }

    .navbar-nav .nav-link {

        padding:
            10px 0 !important;

    }

    .hero-slider .carousel-item {

        height: 650px;

        min-height: 650px;

    }

    .hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,.78),
                rgba(0,0,0,.35)
            );

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .navbar-logo {

        height: 44px;

    }


    .hero-slider .carousel-item {

        height: 620px;

        min-height: 620px;

    }


    .hero-image {

        object-position: center;

    }


    .hero-overlay {

        background:
            linear-gradient(
                0deg,
                rgba(0,0,0,.88),
                rgba(0,0,0,.28)
            );

    }


    .hero-content .container {

        align-items: flex-end;

        padding-bottom: 100px;

    }


    .hero-text {

        max-width: 100%;

    }


    .hero-text h1,
    .hero-text h2 {

        font-size: 40px;

        letter-spacing: -1px;

    }


    .hero-text p {

        font-size: 15px;

        line-height: 1.6;

    }


    .carousel-control-prev,
    .carousel-control-next {

        display: none;

    }


    .placeholder-section {

        padding: 75px 0;

    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

    }

}