h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Josefin Sans', sans-serif;
}


header .navbar {
    background-color: transparent;
    transition: background-color 0.6s ease;

}

header.scrolled .navbar {
    background-color: #dc3545;
    color: #fff;

}

header .nav-link {
    --bs-nav-link-hover-color: #fff;
    color: #fff;

}

header .logo {
    max-height: 40px;
}

#toTop {
    width: 30px;
    height: 30px;
    background: #5f484829;
    text-align: center;
    position: fixed;
    bottom: 7px;
    right: 7px;
    cursor: pointer;
    transition: color 300ms, background-color 300ms, opacity 300ms;
    -moz-transition: color 300ms, background-color 300ms, opacity 300ms;
    -o-transition: color 300ms, background-color 300ms, opacity 300ms;
    -webkit-transition: color 300ms, background-color 300ms, opacity 300ms;
    z-index: 9999;
    font-size: 25px;
    border-radius: 50%;
    font-family: none;
    padding: 0;
    justify-content: center;
    align-items: normal;

}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0e0d0a;
    color: #e2e8f0;
}

.hero-section {
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.666);
}

.hero-section .container {
    z-index: 10;
}

.hero-section .container .row {
    max-width: 80%;
    margin: auto;
}

@keyframes zoom-in-out {
    0% {
        transform: scale(1.05);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.05);
    }
}

.max-80 {
    max-width: 80;
}

.hero-section .hero-image-wrapper {
    animation: zoom-in-out 15s infinite ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.bg-light-charcoal {
    background-color: #1a1a1a;
}

.dotted-line {
    border-bottom: 2px dotted #555;
    flex-grow: 1;
    margin: 0 1rem;
}

.nav-pills .nav-link {
    color: #e2e8f0;
    background-color: transparent;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

/* Estilos para o efeito de paralaxe */
.parallax {
    /* Imagem de fundo para a seção de reservas */
    background-image: url('../img/bg2.jpg');
    /* Fundo fixo, cria o efeito de paralaxe */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Camada semi-transparente para o texto ser mais legível */
.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1;
}

.parallax>* {
    position: relative;
    z-index: 2;
}
footer {
    background-color: #000;
}

footer .text-danger {

    color: #E91E63 !important
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
    text-align: center;
}

.social-links a {
    transition: all 0.3s;
    text-decoration: none !important;
}

.social-links a svg {
    width: 25px;
    height: 25px;
    color: #E91E63;
}

.social-links a:hover {
    background: var(--logo-red);
    border-color: var(--logo-gold);
    color: var(--white);
    transform: translateY(-3px);
}

.reservation {
    width: 650px;
    max-width: 80%;
}