* {
    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: #0f3d3d;
    color: #e3dcc9;
}

.social-icons a img {
    width: 35px;
    color: #ffffff;
    height: 25px;
    object-fit: contain;
    vertical-align: middle;
}

.social-icons img:hover {
    transform: scale(1.3);
}

.social-icons a,
.book 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: 60px;
    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;
    }


}


/* Hero Section */
.hero {
    margin-top: 145px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #000;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.hero-content {
    flex: 1;
    padding: 20px;
    text-align: left;
}

.hero-content h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #f7f0e9;
}

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

.cta-button {
    padding: 12px 20px;
    border: 1px solid #fff;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #0f3d3d;
}

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

    .address {
        display: none;
    }

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

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

    .cta-button {
        width: 100%;
        text-align: center;
    }

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

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