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

body {
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

/* Hero Variables */
:root {
    --primary-brown: #584E4A;
    --primary-yellow: #DCD262;
    --primary-red: #9B213C;
    --overlay-opacity: 0.85;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Base Structure */
.hero {
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    background-color: var(--primary-brown);
}

/* Slideshow Styles */
.slideshow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(88, 78, 74, var(--overlay-opacity)),
        rgba(88, 78, 74, var(--overlay-opacity))
    );
    z-index: 1;
}

/* Logo Styles */
.logo-wrapper {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: auto;
    z-index: 2;
}

.hero-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(220, 210, 98, 0.3));
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    margin-top: 40vh;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.cta-button {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.menu-btn {
    background: var(--primary-red);
    color: white;
}

.reserve-btn {
    background: transparent;
    border: 2px solid var(--primary-yellow);
    color: var(--primary-yellow);
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s ease-out;
}

.cta-button:hover .btn-shine {
    transform: scale(1);
}

.cta-button:hover {
    transform: translateY(-2px);
}

.menu-btn:hover {
    background: #7a1930;
}

.reserve-btn:hover {
    background: var(--primary-yellow);
    color: var(--primary-brown);
}

/* Decorative Elements */
.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.element {
    position: absolute;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.palm-left {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 5%;
    background: url('../images/palm1.png') no-repeat center/contain;
    animation: float 6s ease-in-out infinite;
}

.palm-right {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 5%;
    background: url('../images/palm2.png') no-repeat center/contain;
    animation: float 5s ease-in-out infinite 1s;
}

.shell-left {
    width: 80px;
    height: 80px;
    bottom: 15%;
    left: 10%;
    background: url('../images/shell1.png') no-repeat center/contain;
    animation: float 4s ease-in-out infinite 0.5s;
}

.shell-right {
    width: 60px;
    height: 60px;
    bottom: 20%;
    right: 10%;
    background: url('../images/shell2.png') no-repeat center/contain;
    animation: float 4.5s ease-in-out infinite 0.7s;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {

    .hero {
        
        
        
        
        margin-top: 0px;
        
    }
    .logo-wrapper {
        width: 200px;
        top: 10%;
    }

    .hero-content {
        margin-top: 45vh;
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-button {
        width: 220px;
        padding: 0.8rem 2rem;
    }

    .palm-left, .palm-right {
        width: 100px;
        height: 100px;
    }

    .shell-left, .shell-right {
        width: 50px;
        height: 50px;
    }
}

@media (min-width: 1440px) {
    .logo-wrapper {
        width: 400px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .cta-button {
        font-size: 1.2rem;
        padding: 1.2rem 3rem;
    }

    .palm-left {
        width: 200px;
        height: 200px;
    }

    .palm-right {
        width: 180px;
        height: 180px;
    }

    .shell-left {
        width: 100px;
        height: 100px;
    }

    .shell-right {
        width: 80px;
        height: 80px;
    }
}


