/* =========================================
   HOTEL RAYMI
========================================= */

:root {
    --color-black: #050505;
    --color-black-soft: #111111;

    --color-gold: #d4af37;
    --color-gold-light: #f0d77b;
    --color-gold-dark: #9b7418;

    --color-white: #ffffff;
    --color-gray: #b5b5b5;

    --container: 1200px;
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--color-black);
    color: var(--color-white);
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font: inherit;
}


/* =========================================
   GENERAL
========================================= */

.container {
    width: min(90%, var(--container));
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.header {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 100;

    border-bottom: 1px solid rgba(212, 175, 55, 0.25);

    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
}

.navbar {
    min-height: 95px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* LOGO */

.logo img {
    display: block;

    width: 170px;
    height: 70px;

    object-fit: contain;
}


/* NAVEGACIÓN */

.nav {
    display: flex;
    align-items: center;

    gap: 35px;
}

.nav-link {
    position: relative;

    padding: 10px 0;

    color: #eeeeee;

    font-size: 14px;
    font-weight: 500;

    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--color-gold);

    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* BOTÓN RESERVA */

.btn-reserva {
    padding: 14px 25px;

    border: 1px solid var(--color-gold);

    color: var(--color-black);
    background: var(--color-gold);

    font-size: 13px;
    font-weight: bold;

    text-transform: uppercase;
    letter-spacing: 1px;

    transition: 0.3s ease;
}

.btn-reserva:hover {
    color: var(--color-gold);
    background: transparent;
}


/* MENÚ MÓVIL */

.menu-toggle {
    display: none;

    border: none;

    color: var(--color-gold);
    background: transparent;

    font-size: 30px;

    cursor: pointer;
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.80) 40%,
            rgba(0, 0, 0, 0.45) 100%
        ),
        url("/assets/images/hero-hotel.jpg");

    background-size: cover;
    background-position: center;
}


/* EFECTO DORADO */

.hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -300px;
    bottom: -250px;

    border-radius: 50%;

    background: rgba(212, 175, 55, 0.13);

    filter: blur(70px);
}


/* CONTENIDO */

.hero-content {
    position: relative;

    z-index: 2;

    padding-top: 100px;
}

.hero-subtitle {
    display: block;

    margin-bottom: 15px;

    color: var(--color-gold);

    font-size: 13px;
    font-weight: bold;

    letter-spacing: 6px;
}

.hero h1 {
    max-width: 800px;

    color: var(--color-white);

    font-size: clamp(55px, 9vw, 115px);

    line-height: 0.9;

    letter-spacing: 5px;
}

.hero h1 span {
    display: block;

    margin-top: 12px;

    color: var(--color-gold);
}

.hero-line {
    width: 80px;
    height: 3px;

    margin: 30px 0;

    background: var(--color-gold);
}

.hero p {
    max-width: 620px;

    color: #d0d0d0;

    font-size: 18px;

    line-height: 1.8;
}


/* BOTONES */

.hero-buttons {
    display: flex;
    gap: 15px;

    margin-top: 35px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;

    min-height: 52px;

    padding: 0 30px;

    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: bold;

    text-transform: uppercase;
    letter-spacing: 1px;

    transition: 0.3s ease;
}

.btn-primary {
    border: 1px solid var(--color-gold);

    color: var(--color-black);
    background: var(--color-gold);
}

.btn-primary:hover {
    color: var(--color-gold);
    background: transparent;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.6);

    color: var(--color-white);
    background: transparent;
}

.btn-secondary:hover {
    border-color: var(--color-white);

    color: var(--color-black);
    background: var(--color-white);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .navbar {
        min-height: 80px;
    }

    .logo img {
        width: 140px;
        height: 60px;
    }

    .nav {
        position: absolute;

        top: 80px;
        left: 0;

        width: 100%;

        display: none;
        flex-direction: column;

        padding: 30px;

        background: rgba(0, 0, 0, 0.97);
    }

    .nav.active {
        display: flex;
    }

    .btn-reserva {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content {
        padding-top: 120px;
    }

    .hero-buttons {
        flex-direction: column;

        max-width: 280px;
    }

}


@media (max-width: 500px) {

    .hero h1 {
        font-size: 55px;
    }

    .hero-subtitle {
        letter-spacing: 4px;
    }

    .hero p {
        font-size: 16px;
    }

}