/* =========================================
   CSS Variables & Theme Setup (Light/Sunny)
========================================= */
:root {
    --primary: #d35400; /* Warm burnt orange */
    --primary-hover: #e67e22; /* Lighter warm orange */
    --bg-main: #fcf9f2; /* Light sunny cream */
    --bg-alt: #f3efe5; /* Slightly darker cream for contrast */
    --text-main: #2c3e50; /* Deep blue-grey for readability */
    --text-muted: #5d6d7e; /* Softer text color */
    --glass-bg: rgba(255, 255, 255, 0.85); /* Light glass */
    --glass-border: rgba(255, 255, 255, 1);
    --glass-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =========================================
   Typography & Utilities
========================================= */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-large, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 84, 0, 0.3);
}

.btn-gradient {
    background: linear-gradient(135deg, #f39c12, #d35400);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(211, 84, 0, 0.4);
}

.btn-outline {
    background: rgba(255,255,255,0.1);
    border: 2px solid #fff;
    color: #fff;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: #fff;
    color: var(--text-main);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: #fff;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: #fff;
}

/* Glassmorphism Classes */
.glass-effect {
    background: rgba(252, 249, 242, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

.glass-panel {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* =========================================
   Header / Navbar
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo i {
    font-size: 2rem;
}

.nav-logo {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 600;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* =========================================
   Hero Section
========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    animation: zoomInOut 20s infinite alternate;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0, 0.7) 0%, rgba(0,0,0, 0.4) 50%, rgba(0,0,0, 0.2) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    color: #fff;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    color: #f1c40f;
    backdrop-filter: blur(5px);
}

.rating-badge span {
    color: #fff;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #f8f9fa;
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-main);
    border-radius: 12px;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* =========================================
   Rooms Section (Alt Alta Liste)
========================================= */
.rooms-section {
    background-color: var(--bg-alt);
}

.rooms-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.room-card {
    display: flex;
    overflow: hidden;
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.room-image {
    width: 45%;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-details {
    width: 55%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.room-details p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.room-amenities {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.room-amenities li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    font-weight: 500;
}

.room-amenities i {
    color: var(--primary);
    font-size: 1.2rem;
}

.room-details button, .room-details a {
    align-self: flex-start;
}

/* =========================================
   Marquee Slider Setup
========================================= */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 1rem 0;
}

/* Gradient fade at edges */
.marquee-container::before,
.marquee-container::after {
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    content: "";
    z-index: 2;
}

.gallery-section .marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-main), transparent);
}
.gallery-section .marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-main), transparent);
}

.reviews-section .marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-alt), transparent);
}
.reviews-section .marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-alt), transparent);
}

.marquee-track {
    display: inline-block;
    animation: scrollRightToLeft 40s linear infinite;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scrollRightToLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* =========================================
   Gallery Slider Section
========================================= */
.gallery-section {
    padding-bottom: 2rem;
}

.gallery-img {
    height: 350px;
    width: 500px;
    object-fit: cover;
    margin: 0 1rem;
    border-radius: 16px;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(211, 84, 0, 0.2);
}

/* =========================================
   Reviews Slider Section
========================================= */
.reviews-section {
    background-color: var(--bg-alt);
}

.reviews-marquee .marquee-track {
    display: flex;
    gap: 2rem;
    padding: 1rem 2rem;
    animation: scrollRightToLeft 15s linear infinite;
}

.review-card {
    width: 400px;
    min-width: 400px;
    padding: 2.5rem;
    white-space: normal; 
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(211, 84, 0, 0.1);
}

.review-stars {
    color: #f39c12;
    font-size: 1.2rem;
    display: flex;
    gap: 0.2rem;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.review-author h4 {
    margin-bottom: 0.2rem;
    color: var(--text-main);
}

.review-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   Distances Section
========================================= */
.distances-section {
    background-color: var(--bg-main);
}

.distances-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.distance-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    transition: var(--transition);
}

.distance-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(211, 84, 0, 0.15);
}

.distance-icon {
    width: 70px;
    height: 70px;
    background: rgba(211, 84, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.distance-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.distance-card:hover .distance-icon {
    background: var(--primary);
}

.distance-card:hover .distance-icon i {
    color: #fff;
}

.distance-card h4 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.distance-card span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

/* =========================================
   Map Container
========================================= */
.map-container {
    width: 100%;
    height: 400px;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 4rem;
}
.map-container iframe {
    /* Removed the dark filter for a light, inviting look */
    filter: none; 
}

/* =========================================
   Footer
========================================= */
.footer {
    background-color: #1a252f; /* Dark nice footer */
    padding: 5rem 0 2rem;
    color: #fff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info {
    flex: 1;
    max-width: 400px;
}

.footer-info .logo {
    color: #fff;
}

.footer-info p {
    color: #bdc3c7;
    margin: 1.5rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-contact {
    flex: 1;
}

.footer-contact h3 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #bdc3c7;
}

.footer-contact li i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* =========================================
   WhatsApp Floating Button
========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}
.whatsapp-float:hover {
    background-color: #20b858;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: #fff;
}
.wa-tooltip {
    position: absolute;
    right: 75px;
    background: #fff;
    color: var(--text-main);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    transform: translateX(10px);
    font-weight: 600;
}
.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================
   Scroll Reveal Animations
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-pop {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.reveal-pop.active {
    opacity: 1;
    transform: scale(1);
}

/* =========================================
   Responsive Design
========================================= */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .room-card {
        flex-direction: column;
    }
    .room-image, .room-details {
        width: 100%;
    }
    .room-image {
        min-height: 250px;
    }
    .distances-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.2rem;
    }
    .section {
        padding: 3.5rem 0;
    }
    .section-header {
        margin-bottom: 2rem;
    }
    .nav-links {
        display: none;
    }
    .logo {
        font-size: 1.2rem;
    }
    .nav-contact .btn-primary {
        padding: 0.6rem;
        border-radius: 50%;
        width: 42px;
        height: 42px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .nav-contact .btn-primary span {
        display: none;
    }
    .nav-contact .btn-primary i {
        margin: 0;
        font-size: 1.2rem;
    }
    .navbar {
        padding: 0.5rem 0 !important;
    }
    .hero-title {
        font-size: 2.4rem;
        margin-top: 1rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    .hero-actions a {
        width: 100%;
        text-align: center;
    }
    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
    }
    .feature-item {
        justify-content: center;
    }
    .room-details {
        padding: 1.5rem;
    }
    .room-details h3 {
        font-size: 1.5rem;
    }
    .distances-grid {
        grid-template-columns: 1fr;
    }
    .room-amenities {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .room-details .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-info {
        margin: 0 auto;
    }
    .social-links {
        justify-content: center;
    }
    .footer-contact li {
        justify-content: center;
    }
    .map-container {
        height: 250px;
        margin-bottom: 2.5rem;
    }
    .gallery-img {
        width: 260px;
        height: 180px;
    }
    .review-card {
        width: 260px;
        min-width: 260px;
        padding: 1.2rem;
        gap: 1rem;
    }
    .review-text {
        font-size: 0.95rem;
    }
    .reviews-marquee .marquee-track {
        gap: 1rem;
        animation: scrollRightToLeft 10s linear infinite;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    .wa-tooltip {
        display: none; /* Hide tooltip on mobile to prevent overflow */
    }
}
