:root {
    --bg-dark: #121212;
    --text-light: #f5f5f5;
    --gold: #D4AF37;         /* Deep gold */
    --gold-light: #FFD700;   /* Lighter gold highlight */
    --gold-dark: #B8860B;    /* Shadow tone */
    --accent-dark: #1f1f1f;
    --header-dark: #0d0d0d; /* darker for contrast */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

header {
    background-color: var(--accent-dark);
    padding: 20px;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

a:not(.booking-btn):link,
a:not(.booking-btn):visited {
	color: var(--gold);
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 600;
}

a:not(.booking-btn):hover,
a:not(.booking-btn):active {
	color: var(--gold-light);
	text-decoration: underline;
}

html {
    scroll-padding-top: 180px; /* or whatever height your header is */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-img {
    height: 75px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    padding: 8px 12px;
    font-weight: 600;
    border-radius: 9999px;
    transition: 0.3s;
}

.nav-links a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold-light);
}

.booking-btn {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold));
    color: #121212;
    padding: 0.8rem 1.4rem;
    border-radius: 9999px;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid var(--gold);
}

.booking-btn:hover {
    background-color: transparent;
    color: var(--text-light);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.language-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
}

.flag {
    width: 30px;
    height: 20px;
    object-fit: cover;
    cursor: pointer;
    vertical-align: middle;
    transition: transform 0.2s ease-in-out;
}

.flag:hover {
    transform: scale(1.1);
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../images/header.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    background-attachment: fixed;
}

.hero h1 {
    font-size: 50px;
    font-weight: bold;
    animation: fadeInText 1s ease-in forwards;
    background: linear-gradient(to right, var(--gold-dark), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    border-radius: 15px;
    max-width: 800px;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-text p {
    margin-bottom: 10px;
    font-size: 20px;
}

.hero::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: url('../images/logo-bw.png') center/contain no-repeat;
    opacity: 0.1;
    z-index: 0;
    animation: fadeInLogo 1s ease-in forwards;
}

section {
    padding: 50px 20px;
    text-align: center;
    background-color: var(--bg-dark);
}

.rooms, .tours, .restaurants, .about-contact {
    background-color: var(--accent-dark);
}

.tour-links a:link,
.tour-links a:visited {
	color: var(--gold);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.tour-links a:hover,
.tour-links a:active {
	color: var(--gold-light); /* Optional lighter gold on hover */
	text-decoration: underline;
}

h2, h3 {
    background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.about-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.about-box {
    background: #181818;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.05);
    color: var(--text-light);
    flex: 1 1 300px;
    max-width: 350px;
    text-align: left;
}

.about-box a {
    color: var(--gold);
    text-decoration: none;
}

.about-box a:hover {
    text-decoration: underline;
    color: var(--gold-light);
}

.thumbnail-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.thumb {
    width: 150px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.7;
    transition: transform 0.2s, opacity 0.2s;
}

.thumb:hover, .thumb.active {
    transform: scale(1.05);
    opacity: 1;
    border: 2px solid var(--gold);
}

.gallery-button-wrapper {
    margin-top: 40px; /* increase if needed */
    display: flex;
    justify-content: center;
}

.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
}

.lightbox.hidden {
    display: none;
}

#lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--gold);
    font-size: 40px;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--gold);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
    transition: background 0.3s;
}

.lightbox-nav:hover {
    background: rgba(212, 175, 55, 0.2);
}


.lightbox-nav.prev {
    left: 30px;
}

.lightbox-nav.next {
    right: 30px;
}

.full-screen-bg {
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center 40%;
    background-attachment: scroll;
    transform: translateZ(0);
}

.full-screen-bg .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.bg1 {
    background-image: url('../images/bg1.jpg');
}

.bg2 {
    background-image: url('../images/bg2.jpg');
}

.bg3 {
    background-image: url('../images/bg3.jpg');
}

/* Animations */
@keyframes fadeInText {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInLogo {
    from { opacity: 0; }
    to { opacity: 0.2; }
}

@media screen and (max-width: 768px) {
    header {
        padding: 8px 12px;
    }

    
    html {
        scroll-padding-top: 140px; /* or whatever height your header is */
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .logo-img {
        height: 40px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 0;
    }

    .nav-links li {
        flex: 1 1 auto;
        text-align: center;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 6px 10px;
    }

    .nav-right {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .language-switcher {
        display: flex;
        gap: 5px;
        align-items: center;
        flex-wrap: nowrap;
    }

    .booking-btn {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
        border-radius: 9999px;
        margin-left: auto;
    }

}