/* Font Faces */
@font-face {
    font-family: 'MontHeavy';
    src: url('fonts/Mont-Heavy.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PublicSans';
    src: url('fonts/PublicSans-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PublicSans';
    src: url('fonts/PublicSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PublicSans';
    src: url('fonts/PublicSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PublicSans';
    src: url('fonts/PublicSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PublicSans';
    src: url('fonts/PublicSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Font Awesome 5 Brands';
    src: url('fonts/fa-brands-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Font Awesome 5 Free';
    src: url('fonts/fa-solid-900.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: block;
}

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

html, body {
    height: 100vh;
    min-height: 700px;
    background-color: #404a2a;
    overflow-x: hidden;
    font-family: 'PublicSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'MontHeavy', sans-serif;
    font-weight: normal;
}

b, strong {
    font-family: 'MontHeavy', sans-serif;
    font-weight: normal;
}

/* Carousel Background */
.carousel-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    animation: scaleAnimation 3s ease-in-out infinite;
}

.slide.active {
    opacity: 1;
}

/* Scale animation for active slide */
@keyframes scaleAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.logo-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo Container */
.logo-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    padding: 20px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.logo-container img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* Reservar Button */
.reservar-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #404a2a;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'PublicSans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(64, 74, 42, 0.3);
}

.reservar-btn:hover {
    background-color: #2e3520;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 74, 42, 0.4);
}

.reservar-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(64, 74, 42, 0.3);
}

/* Reviews Link */
.reviews-link {
    color: white;
    text-decoration: none;
    font-family: 'PublicSans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.reviews-link:hover {
    opacity: 0.8;
}

/* Social Media Icons */
.social-icons {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.social-icon img {
    width: 40px;
    height: 40px;
}

.social-icon:first-child img {
    width: 42px;
    height: 42px;
}

.social-icon:hover {
    transform: scale(1.15);
    opacity: 0.9;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .social-icons {
        bottom: 20px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon img {
        width: 35px;
        height: 35px;
    }
    
    .social-icon:first-child img {
        width: 37px;
        height: 37px;
    }
}