body {
    margin: 0;
    font-family: Georgia, serif;
    background: #f2eee6;
    color: #2b2621;
}

/* NAVBAR */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-style: italic;
    opacity: 0.7;
    font-size: 14px;
}

.logo-img {
    height: 30px;
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #2b2621;
    font-size: 15px;
}

/* BUTTON */
.btn {
    background: #5a2e24;
    color: white;
    padding: 8px 18px;
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.btn:hover,
.btn:focus {
    background: #4a241d;
}

.btn.large {
    padding: 15px 40px;
    margin-top: 20px;
    display: inline-block;
}

a:focus,
button:focus {
    outline: 3px solid #000;
    outline-offset: 3px;
}

.nav .btn {
    color: white !important;
    background: #5a2e24;
    border-radius: 4px;
}

.back-btn {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 14px;
    background: #5a2e24;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.back-btn:hover,
.back-btn:focus {
    background: #4a241d;
}

/* accessibility focus */
.back-btn:focus {
    outline: 3px solid #000;
    outline-offset: 3px;
}

/* HERO */
.hero {
    display: flex;
    height: 100vh;
    background: #cbbfb0;
    position: relative;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
}

.hero-left h1 {
    font-size: 3.5rem;
    color: #ffffff;
    line-height: 1.4;
}

.hero-booking {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

.hero-right img {
    height: 100%;
    object-fit: cover;
}

/* SECTIONS */
.section {
    padding: 80px 20px;
    text-align: center;
}

.section.dark {
    background: #5c4c42;
    color: white;
}

.location {
    margin-top: 20px;
    font-size: 14px;
}

.booking {
    background: #cbbfb0;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    background: none;
    border: none;
}

.footer {
    text-align: center;
    padding: 40px 20px;
    background: #f2eee6;
}

.footer-links {
    margin-bottom: 20px;
    font-size: 14px;
}

.footer a {
    color: #2b2621;
    text-decoration: none;
    margin: 0 8px;
}

.footer a:hover {
    text-decoration: underline;
}

/* SOCIAL ICONS */
.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px; /* fallback */
}

.socials img {
    width: 24px;
    height: 24px;
    display: block;
    opacity: 0.8;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.socials img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* accessibility focus */
.socials a:focus {
    outline: 3px solid black;
    outline-offset: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2b2621;
    color: white;
    padding: 15px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.cookie-banner button {
    margin-left: 10px;
    padding: 8px 12px;
    border: none;
    cursor: pointer;
}

/*LAUNGAGE*/

.lang-switcher {
    display: flex;
    gap: 5px;
}

.lang-switcher button {
    background: transparent;
    border: 1px solid #2b2621;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 12px;
}

.lang-switcher button.active {
    background: #2b2621;
    color: white;
}


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

    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 70px;
        right: 20px;
        background: #f2eee6;
        width: 200px;

        display: none;              
        flex-direction: column;
        padding: 20px;

        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 999;               
    }

    nav.active {
        display: flex;              
    }

    nav a {
        margin: 10px 0;
    }

    .hero {
        flex-direction: column;
        height: auto;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-right {
        justify-content: center;
    }

    .hero-right img {
        height: 300px;
    }

    .hero-booking {
        position: static;          
        transform: none;
        margin-bottom: 20px;       
        text-align: center;
    }

    
}