@font-face {
    font-family: 'MiFuente';
    src: url('../fonts/Barber-Complete.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MiFuente2';
    src: url('../fonts/Study\ Clash.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MiFuente3';
    src: url('../fonts/Blackout\ 2\ AM.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f8f5f0;
    color: black;
    font-family: Arial, sans-serif;
}

#hero {
    background-image: url('../Imgs/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

#hero .container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    position: relative;
    z-index: 2; /
}

#hero h1 {
    font-family: "MiFuente";
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

#hero .lead {
    font-family: 'MiFuente2';
    color: #feae34;
}

@media (max-width: 576px) {
    #hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 60px;
    }

    #hero h1 {
        font-size: 3.5rem !important;
    }

    #hero .lead {
        font-size: 1.3rem !important;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    #hero h1 {
        font-size: 5rem !important;
    }

    #hero .lead {
        font-size: 2rem !important;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    #hero h1 {
        font-size: 7rem !important;
    }

    #hero .lead {
        font-size: 2.5rem !important;
    }
}

@media (min-width: 993px) {
    #hero h1 {
        font-size: 9rem !important;
    }

    #hero .lead {
        font-size: 3rem !important;
    }
}

@media (max-width: 1200px) {
    #hero h1 {
        max-width: 100%;
        word-wrap: break-word;
    }
}

.navbar {
    transition: all 0.3s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: #d5d2d4;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: white;
    transition: color 0.3s ease;
    font-weight: bold;
    font-size: 1.2rem;
}

.navbar.scrolled .navbar-brand {
    color: #242424da;
    font-weight: bold;
}

.nav-link {
    color: white;
    transition: color 0.3s ease;
    font-weight: bold;
    font-size: 1rem;
}

.navbar.scrolled .nav-link {
    color: #242424da;
    font-weight: bold;
}

.nav-link:hover {
    color: #bd9641;
}

.navbar.scrolled .nav-link:hover {
    color: #bd9641;
}

.navbar-toggler {
    color: white;
    border-color: white;
}

.navbar.scrolled .navbar-toggler {
    color: #676767;
    border-color: #5c5c5c;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.8);
    z-index: 100;
    padding: 10px 0;
    text-align: center;
}
 
.inline-image {
    width: 15%;
    margin: 10px;
}

.section-divider {
    border-top: 1px solid #33333356;
    margin: 2rem 0;
}

.footer {
    background-color: #d5d2d4;
    color: #000000da;
}

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

.footer .social-link {
    color: #000000da;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer .social-link:hover {
    color: #bd9641;
}

footer a:hover {
    color: #8e8574;
}

footer .bi {
    color: #8e8574;
}

footer .bi:hover {
    color: #171717;
}

.img_nos {
    width: 100%;
    border-radius: 50%;
}