/* Variables globales */
:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #c8a97e;
    --text-color: #ffffff;
    --text-secondary: #cccccc;
    --spacing-unit: 1rem;
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

/* Reset y estilos base */
@font-face {
    font-family: 'Bank Gothic Light BT';
    src: url('fuentes/bank-gothic-light-bt.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Bank Gothic Light BT', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
}

/* Ajustes específicos para la tipografía */
h1, h2, h3, .nav-links a, .btn-primary, .section-title {
    font-family: 'Bank Gothic Light BT', sans-serif;
    letter-spacing: 1px;
}

.nav-links a {
    font-size: 1.2rem;
    text-transform: uppercase;
}

.hero-content h2 {
    font-size: 3.5rem;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #fff, #c8a97e, #fff);
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: shine 2s linear infinite;
}

.section-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Header y Navegación */
header {
    /* background: var(--primary-color); */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.header-logo {
    width: 80px;
    height: 80px;
    /* border-radius: 50%; */
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all var(--transition-speed);
}

.nav-links a:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.btn-reserva {
    /* background-color: var(--accent-color); */
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    color: white !important;
    font-weight: 600;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, -0.3), rgba(0, 0, 0, 0.7)),
                url('images/IMG_6154.jpeg') center/cover;
    margin-top: 0px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 35rem;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: grey;
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all var(--transition-speed);
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(200, 169, 126, 0.3);
}

/* Sección Nosotros */
.nosotros {
    padding: 5rem 0;
    background-color: black;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    text-transform: uppercase;
}

.nosotros-content {
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.nosotros-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.nosotros-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Sección Info */
.info {
    padding: 5rem 0;
    background-color: var(--primary-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-item {
    text-align: center;
    padding: 2rem;
    background-color: black;
    border-radius: var(--border-radius);
    transition: transform var(--transition-speed);
}

.info-item:hover {
    transform: translateY(-10px);
}

.info-item i {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.info-item h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    text-transform: uppercase;
}

.info-item p {
    color: var(--text-secondary);
}

.info-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.info-item a:hover {
    color: var(--accent-color);
}

/* Galería */
.gallery {
    padding: 5rem 0;
    background-color: black;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: transform var(--transition-speed);
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    /* background-color: var(--secondary-color); */
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 120px;
    /* border-radius: 50%; */
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-social a {
    color: var(--accent-color);
    font-size: 2rem;
    transition: transform var(--transition-speed);
}

.footer-social a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
i.fas.fa-external-link-alt {
    display: none;
}
.fa-instagram:before {
    content: "\f16d";
    color: white;
}


/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .nosotros-content {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    i.fas.fa-external-link-alt {
        display: none;
    }

    .fa-instagram:before {
        content: "\f16d";
        color: white;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .logo-container h1 {
        font-size: 1.2rem;
    }

    .header-logo {
        width: 60px;
        height: 60px;
    }

    .fa-instagram:before {
        content: "\f16d";
        color: white;
    }

    i.fas.fa-external-link-alt {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero {
        height: 82vh;
        margin-top: 0px;
        padding: 0 10px;
    }
    .hero-content h2 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .btn-primary {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
        /* margin-top: 38rem; */
    }
    .logo-container h1 {
        font-size: 1rem;
    }
    .header-logo {
        width: 40px;
        height: 40px;
    }
    .section-title {
        font-size: 1.3rem;
        color: white
    }
    .nosotros-content,
    .info-grid,
    .gallery-grid,
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        
    }

    .fa-instagram:before {
        content: "\f16d";
        color: white;
    }

    i.fas.fa-external-link-alt {
        display: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h2 {
    animation: fadeInUp 1s cubic-bezier(1, -0.25, 0.58, 1);
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.typewriter-text {
    display: inline-block;
    border-right: 2px solid #c8a97e;
    white-space: nowrap;
    overflow: hidden;
    font-size: 2.2rem;
    letter-spacing: 2px;
    animation: blink-caret 0.7s steps(1) infinite;
}

@keyframes blink-caret {
    0%, 100% { border-color: transparent; }
    50% { border-color: #c8a97e; }
}

