:root {
    --primary-color: #dd9933;
    --text-color: #dd9933;
    --bg-color: rgba(46,18,1,0.9);
    --accent-color: #ffff99;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: var(--accent-color);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background: var(--bg-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    line-height: 1.2;
    color: var(--accent-color);
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(0px);
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
}

.header.scrolled {
    background: var(--bg-color);
    backdrop-filter: blur(10px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header .container {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 150px;
    width: auto;
}

.nav {
    background: var(--bg-color);
    display: flex;
    padding: 2rem;
    gap: 2rem;
    border-radius: 12px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-color);
}

/* HERO */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 170px;
}

.slide.active {
    opacity: 1;
}

.slide-1 {
    background-image: url('../images/hero-1.jpg');
}

.slide-2 {
    background-image: url('../images/hero-2.jpg');
}

.slide-3 {
    background-image: url('../images/hero-3.jpg');
}

.slide-4 {
    background-image: url('../images/hero-4.jpg');
}

.slide-5 {
    background-image: url('../images/hero-5.jpg');
}

.hero-content {
    flex-direction: column;
    background: var(--bg-color);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 12px;
    max-width: 800px;
    display: flex;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.8;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s;
    padding: 0;
}

.slider-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

/* SECTIONS */
.section {
    position: relative;
    min-height: 80vh;
    padding: 120px 0;
    overflow: hidden;
}

.fixed-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.bg-wood {
    background-image: url('../images/wood.jpg');
}

.bg-bg2 {
    background-image: url('../images/bg2.jpg');
}

.bg-hero-1 {
    background-image: url('../images/hero-1.jpg');
}

.bg-hero-5 {
    background-image: url('../images/hero-5.jpg');
}

.section .container {
    position: relative;
    z-index: 2;
    padding: 4rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.section .container .fa-mountain {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.phone-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--accent-color);
}

.fa-phone {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.card p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card ul {
    list-style-position: inside;
    color: var(--text-color);
    line-height: 1.8;
}

.card li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

.section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2.5rem;
    padding: 1rem 0.8rem;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}

.lightbox-nav:hover {
    background: var(--primary-color);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
}

/* FOOTER */
.footer {
    background: var(--bg-color);
    padding: 3rem 0;
    border-top: 1px solid #222;
    position: relative;
    z-index: 10;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background: transparent;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.social-icons a {
    color: var(--text-color);
    font-size: 1.8rem;
    transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

/* LOGO CAROUSEL */
#section4 {
    min-height: auto;
    padding: 2rem 0;
}

.logo-carousel {
    overflow: hidden;
    padding: 2rem 0;
}

.logo-track {
    display: flex;
    gap: 4rem;
    align-items: center;
    animation: scroll 25s linear infinite;
    width: max-content;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-slide {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.logo-slide img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.logo-slide img:hover {
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* BOOKING FORM */
.booking-form {
    background: var(--bg-color);
    max-width: 800px;
    padding: 2rem;
    margin: 0 auto;
    border-radius: 12px;
}

.booking-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.booking-field {
    flex: 1;
}

.booking-field.full {
    flex: 0 0 100%;
}

.booking-field label {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.booking-field input[type="text"],
.booking-field input[type="email"],
.booking-field input[type="tel"],
.booking-field input[type="date"],
.booking-field input[type="number"],
.booking-field textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.booking-field input:focus,
.booking-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.booking-field input[type="checkbox"] {
    margin-right: 0.5rem;
    accent-color: var(--primary-color);
}

.booking-field label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem 0;
}

.booking-section-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-family: 'Caveat', cursive;
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.booking-btn {
    display: block;
    margin: 2rem auto 0;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

/* CONTACT SECTION */
.contact-grid {
    background: var(--bg-color);
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3,
.contact-locations h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.contact-info h3 i,
.contact-locations h3 i {
    margin-right: 0.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-locations ul {
    list-style: none;
    padding: 0;
}

.contact-locations li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    line-height: 1.6;
}

.contact-locations li::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    margin-right: 0.8rem;
}

/* MAP SECTION */
.map-section {
    width: 100%;
    position: relative;
    z-index: 2;
}

.map-section iframe {
    display: block;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-row {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* CONTACT FORM */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

/* HAMBURGER */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--bg-color);
        padding: 1rem 2rem;
        gap: 0.5rem;
    }

    .nav.open {
        display: flex;
    }

    .nav-link {
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section .container {
        padding: 2.5rem 1.5rem;
    }
}