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

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #000;
    color: #fff;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    font-size: 15px;
    font-weight: 550;
    border-bottom: 1px solid #ffffff;
    background-color: #000000;
    color: #ffffff;
}

.social-icons a img {
    width: 35px;
    height: 25px;
    object-fit: contain;
    vertical-align: middle;
    filter: brightness(0) invert(1);
    /* Esto los hace blancos */
    transition: filter 0.2s, transform 0.2s;
}

.social-icons a img:hover {
    transform: scale(1.3);
    filter: brightness(0) invert(1) drop-shadow(0 0 6px #fff);
}

.social-icons a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 10px;
    font-weight: bold;
}

.book a {
    text-decoration: underline;
    color: #ffffff;
}

.address {
    text-align: center;
    flex: 1;
    color: #ffffff;
}

/* Header Navigation */
.main-header {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 30px;
    border-bottom: 2px solid #ffffff;
    background-color: #000000;
    flex-wrap: wrap;
    color: #ffffff;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;

}

.header-container a {
    text-decoration: none;
}


.logo img {
    height: 100px;
}

.logo-text h1 {
    font-size: 20px;
    line-height: .9;
    font-weight: 300;
    margin-right: 100px;
    color: #ffffff;
}

.logo-text span {
    font-size: 14px;
    font-weight: normal;
    color: #ffffff;
}

.hamburger {
    font-size: 26px;
    color: #ffffff;
    cursor: pointer;
    padding-left: 10px;
}

.menu-toggle {
    display: none;
}

/* Botón hamburguesa (visible solo en móviles) */
.hamburger {
    display: none;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    padding: 10px;
}

/* Estilos normales del menú (pantallas grandes) */
.nav-menu ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ffffff;
}

/* RESPONSIVE: ocultar menú y mostrar hamburguesa */
@media (max-width: 768px) {
    .logo img {
        height: 80px;
    }

    .logo-text h1 {
        font-size: 19px;
        line-height: 1;
        font-weight: 300;
        margin: 0 10px;
        color: #ffffff;
        align-items: center;
    }

    .logo-text span {
        font-size: 14px;
        font-weight: normal;
        color: #ffffff;
    }

    .hamburger {
        display: block;
        padding-left: 15px;
        align-items: center;
    }

    .header-container {
        align-items: center;
    }

    .nav-menu {
        width: 100%;
        display: none;
    }

    .nav-menu ul {
        flex-direction: column;
        margin-bottom: 55px;
    }

    .menu-toggle:checked~.header-container .logo-text h1 {
        display: none;
    }

    .menu-toggle:checked~.nav-menu {
        display: block;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
    }

    .address {
        display: none;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content h3 {
        font-size: 20px;
    }


    .hero-content p {
        color: #ffffff;
        font-size: 16px;
        margin-bottom: 30px;
        max-width: 400px;
        text-align: justify;
        padding: 16px;
    }

    .nav-menu ul {
        justify-content: center;
        gap: 10px;
        padding-top: 15px;
    }

    .main-header {
        flex-direction: column;
        align-items: center;
    }
}