/*=========================================
  1. RESET & BAZA
  ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/*=========================================
  2. HEADER
  ========================================= */
.main-header {
    background: #0a0a0a;
    border-bottom: 1px solid #c9a84c;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-info {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    color: #c9a84c;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-sub {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 700;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.main-nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
}

.main-nav ul li a:hover {
    color: #c9a84c;
}

.btn-reservar {
    display: inline-block;
    padding: 10px 25px;
    background: #c9a84c;
    color: #0a0a0a;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
    border-radius: 2px;
}

.btn-reservar:hover {
    background: #ffffff;
    color: #0a0a0a;
}
/*=========================================
  3. HERO
  ========================================= */
.hero {
    min-height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-sub {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #c9a84c;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.btn-hero {
    display: inline-block;
    padding: 16px 45px;
    background: transparent !important;
    color: #c9a84c !important;
    border: 2px solid #c9a84c;
    text-decoration: none !important;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-hero:hover {
    background: #c9a84c;
    color: #0a0a0a;
}

/*=========================================
  4. CONTAINER & TITLURI
  ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    color: #c9a84c;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

/*=========================================
  5. SERVICIOS
  ========================================= */
.servicios {
    padding: 80px 20px;
    background: #0f0f0f;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.servicio-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-top: 2px solid #c9a84c;
    padding: 35px 25px;
    text-align: center;
    transition: 0.3s;
}

.servicio-card:hover {
    border-color: #c9a84c;
    transform: translateY(-5px);
}

.servicio-card i {
    font-size: 2.5rem;
    color: #c9a84c;
    margin-bottom: 20px;
}

.servicio-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.servicio-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 20px;
}

.precio {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #c9a84c;
    letter-spacing: 1px;
}

/*=========================================
  6. GALERIA
  ========================================= */
.galeria {
    padding: 80px 20px;
    background: #0a0a0a;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 50px;
}

.galeria-item {
    overflow: hidden;
    position: relative;
}

.galeria-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.5s;
    filter: grayscale(30%);
}

.galeria-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/*=========================================
  7. CONTACTO
  ========================================= */
.contacto {
    padding: 80px 20px;
    background: #111111;
}

.contacto-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 50px auto 0 auto;
    max-width: 900px;
}

.contacto-item {
    flex: 1;
    max-width: 200px;
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #2a2a2a;
    border-top: 2px solid #c9a84c;
    transition: 0.3s;
}

.contacto-item:hover {
    border-color: #c9a84c;
}

.contacto-item i {
    font-size: 2rem;
    color: #c9a84c;
    margin-bottom: 15px;
}

.contacto-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contacto-item a,
.contacto-item p {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.contacto-item a:hover {
    color: #c9a84c;
}

/*=========================================
  8. FOOTER
  ========================================= */
.main-footer {
    background: #0a0a0a;
    border-top: 1px solid #c9a84c;
    padding: 40px 20px;
    text-align: center;
}

.footer-inner {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

.footer-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: #c9a84c;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.footer-location {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-legal {
    margin-bottom: 20px;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.8rem;
    margin: 0 10px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.footer-legal a:hover {
    color: #c9a84c;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

.footer-copy a {
    color: #c9a84c;
    text-decoration: none;
}

/*=========================================
  9. MAIN CONTENT - PAGINI LEGALE
  ========================================= */
.main-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px 50px;
    background: #111111;
    border: 1px solid #2a2a2a;
    border-top: 2px solid #c9a84c;
    border-radius: 4px;
}

.main-content h1 {
    font-family: 'Oswald', sans-serif;
    color: #c9a84c;
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #2a2a2a;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.main-content h2 {
    font-family: 'Oswald', sans-serif;
    color: #c9a84c;
    font-size: 1rem;
    margin-top: 25px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-content p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.main-content a {
    color: #c9a84c;
}

.btn-volver {
    display: inline-block;
    margin-bottom: 25px;
    padding: 10px 25px;
    background: transparent;
    color: #c9a84c;
    border: 1px solid #c9a84c;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-volver:hover {
    background: #c9a84c;
    color: #0a0a0a;
}

/*=========================================
  10. HORARIO
  ========================================= */
.horario {
    padding: 80px 20px;
    background: #0a0a0a;
    border-top: 1px solid #2a2a2a;
}

.horario-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.horario-item {
    text-align: center;
    padding: 30px 40px;
    border: 1px solid #2a2a2a;
    border-top: 2px solid #c9a84c;
    min-width: 200px;
}

.horario-item.cerrado {
    border-top: 2px solid #444;
    opacity: 0.5;
}

.dia {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hora {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #c9a84c;
    letter-spacing: 2px;
}

/*=========================================
  11. FLOAT BUTTON
  ========================================= */
.float-btn-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.float-main {
    width: 55px;
    height: 55px;
    background: #c9a84c;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    color: #0a0a0a;
    box-shadow: 0 4px 15px rgba(201,168,76,0.4);
    transition: 0.3s;
}

.float-main:hover {
    background: #ffffff;
    transform: scale(1.1);
}

.float-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.float-menu.active {
    opacity: 1;
    visibility: visible;
}

.float-item {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.float-phone {
    background: #1e3a8a;
    color: #ffffff;
}

.float-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.float-reservar {
    background: #c9a84c;
    color: #0a0a0a;
}

.float-item:hover {
    transform: scale(1.1);
}

/*=========================================
  RESPONSIVE MOBIL
  ========================================= */
@media (max-width: 768px) {

    .main-header {
        padding: 10px 15px;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .header-inner {
        flex-wrap: wrap;
        gap: 10px;
    }

    .main-nav {
        display: block;
        width: 100%;
        order: 3;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: row !important;
        justify-content: center;
        gap: 20px !important;
        border-top: 1px solid #2a2a2a;
        padding-top: 10px;
    }

    .main-nav ul li a {
        font-size: 0.6rem;
        letter-spacing: 0;
        padding: 5px 0;
        border-bottom: none !important;
    }

    .btn-reservar {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacto-grid {
        flex-wrap: wrap;
        gap: 15px;
    }

    .contacto-item {
        max-width: 45%;
        min-width: 140px;
    }

    .container {
        padding: 0 15px;
        width: 100%;
    }

    section {
        width: 100%;
        box-sizing: border-box;
    }

    .logo-sub {
        font-size: 0.9rem;
        letter-spacing: 4px;
    }

    .horario-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .horario-item {
        width: 100%;
        max-width: 300px;
    }

}

