/* Espaço entre menus horizontais na experiência gastronômica */
.box-horizontal-highlights {
    margin-bottom: 2.5rem;
}
/* Horizontal Highlights for Experiência Gastronômica */
.horizontal-highlights {
    width: 100%;
    min-height: 100px;
    background-image: url('imgs/general/menu-terra.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-radius: 15px;
    position: relative;
    margin-bottom: 1.5rem;
    overflow: hidden;
    padding: 1.2rem 2rem;
    gap: 0.3rem;
}
.horizontal-highlights h4 {
    color: #fff;
    font-size: 2rem;
    margin-left: 2rem;
    z-index: 2;
    text-shadow: 0 2px 8px #000a;
}
.horizontal-highlights::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}
/* Dining Experience Section */
.dining-experience {
    background: #fff;
}
/* Submenu styles */
.nav-has-submenu {
    position: relative;
}
.nav-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-color);
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-radius: 0 0 10px 10px;
    z-index: 3000;
    padding: 0.5rem 0;
    list-style: none;
}
.nav-has-submenu:hover > .nav-submenu,
.nav-has-submenu:focus-within > .nav-submenu {
    display: block;
}
.nav-submenu li {
    width: 100%;
}
.nav-submenu .nav-link {
    color: white;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 0;
    font-size: 1rem;
    white-space: nowrap;
}
.nav-submenu .nav-link:hover,
.nav-submenu .nav-link.active {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
@media (max-width: 1024px) {
    .nav-has-submenu {
        width: 100%;
    }
    .nav-submenu {
        position: static;
        box-shadow: none;
        background: var(--primary-color);
        border-radius: 0 0 10px 10px;
        padding: 0;
    }
    .nav-has-submenu:hover > .nav-submenu,
    .nav-has-submenu:focus-within > .nav-submenu,
    .nav-has-submenu .nav-submenu {
        display: block;
    }
    .nav-submenu .nav-link {
        padding-left: 1rem;
    }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Nova Paleta Quente */
    --primary-color: #CF9250; /* Cor Principal */
    --secondary-color: #EDD4A6; /* Cor Secundária */
    --accent-warm: #EFD4A7; /* Acento Quente */
    --accent-medium: #F6E6C4; /* Acento Médio */
    --accent-earth: #8B7355; /* Terra Seca */
    --accent-dark: #5D4E37; /* Marrom Chocolate */
    
    /* Textos - Mantendo cores originais */
    --text-dark: #5D4E37; /* Marrom Chocolate */
    --text-medium: #8B7355; /* Terra Seca */
    --text-light: #A69080; /* Marrom Areia */
    
    /* Backgrounds */
    --bg-light: #F5F1E8; /* Areia Clara */
    --bg-medium: #E6D7C3; /* Areia Média */
    --bg-white: #FFFFFF;
    --border-color: #D4C4A8; /* Areia Escura */
}

html {
    scroll-behavior: smooth;
    width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Didact Gothic', sans-serif;
    font-weight: 400;
    color: var(--text-medium);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-light);
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Poiret One', cursive;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 2px;
    color: var(--text-dark);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(207, 146, 80, 0.1);
    backdrop-filter: blur(10px);
    z-index: 4000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(207, 146, 80, 0.3);
    box-shadow: 0 4px 20px rgba(207, 146, 80, 0.3);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-link {
    text-decoration: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(207, 146, 80, 0.3);
    color: white;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    background: rgba(207, 146, 80, 0.3);
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background: var(--accent-dark);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

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

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

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.slide-nav {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.slide-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* Slideshow Indicators */
.slideshow-indicators {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
    max-width: 1400px;
    width: 100%;
    padding: 0 2rem;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
    box-sizing: border-box;
    overflow-x: hidden;
}
@media (max-width: 930px) {
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }
    .hero-content {
        padding: 0 1rem;
        max-width: 100vw;
        overflow-x: hidden;
    }
    .container {
        padding-left: 16px;
        padding-right: 16px;
        max-width: 100vw;
        overflow-x: hidden;
    }
    .nav-container {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 100vw;
        overflow-x: hidden;
    }
    .about-content,
    .wellness-content,
    .contact-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100vw;
        overflow-x: hidden;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100vw;
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {
    .about-content,
    .wellness-content,
    .contact-content,
    .location-content {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .hero-content {
        padding-left: 8px;
        padding-right: 8px;
    }
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }
    .nav-container {
        padding-left: 4px;
        padding-right: 4px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typewriter Effect */
.typewriter-container {
    position: relative;
    margin-bottom: 3rem;
    min-height: 330px;
}

.typewriter-text {
    font-family: 'Poiret One', cursive;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.3;
    color: white;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.5);
    margin: 0;
    opacity: 1;
    transition: opacity 1s ease;
    letter-spacing: 2px;
}

.typewriter-text.fade-out {
    opacity: 0;
}

.cursor {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: white;
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(207, 146, 80, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(207, 146, 80, 0.4);
}

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

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative; /* Ensure z-index works */
    z-index: 1; /* Default z-index for sections */
}

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

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header.light .section-tag {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    backdrop-filter: blur(10px);
}

.section-header.light .section-title {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about {
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    color: var(--text-medium);
}

.feature-icon img {
    width: 90px;
    height: 90px;
    filter: brightness(0) saturate(100%) invert(47%) sepia(15%) saturate(21%) hue-rotate(22deg) brightness(97%) contrast(88%);
}

.feature-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.feature-text p {
    color: var(--text-light);
    margin: 0;
}

.about-image {
    position: relative;
}

.about-slideshow {
    position: relative;
    width: 100%;
    height: 750px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(207, 146, 80, 0.15);
}

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

.about-slide.active {
    opacity: 1;
}

.about-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.about-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.about-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.about-nav.prev {
    left: 10px;
}

.about-nav.next {
    right: 10px;
}

.about-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.about-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-indicator.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

/* Accommodation Section */
.accommodation {
    background: var(--bg-light);
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.accommodation-item {
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: 10;
    animation: pulse 2s infinite;
    width: max-content;
}

.notification-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.accommodation-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(207, 146, 80, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
}

.accommodation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
    z-index: 0;
}

.accommodation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(207, 146, 80, 0.15);
}

.accommodation-card:hover::before {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: white;
    width: 100%;
}

.card-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: white;
}

.card-content > p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    font-style: italic;
}

.cabin-details p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.price {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cabin-details .btn {
    margin-top: 0.5rem;
}

/* Dining Section */
.dining {
    position: relative;
    background-image: url('imgs/general/menu.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    overflow: hidden;
}

.dining::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: inherit;
    background-position: inherit;
    background-repeat: inherit;
    filter: blur(3px);
    z-index: 0;
}

.dining-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.dining .container {
    position: relative;
    z-index: 2;
}

.dining-content {
    position: relative;
    z-index: 2;
}

.dining-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.dining-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.dining-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.highlight:hover {
    transform: translateY(-5px);
}

.highlight h4,
.highlight p {
    position: relative;
    z-index: 2;
}

.highlight h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.highlight p.menu-price {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-light);
}

/* Menu background images */
.menu-terra {
    background-image: url('imgs/general/menu-terra.jpg');
}

.menu-mar {
    background-image: url('imgs/general/menu-mar.jpg');
}

.menu-vegetariano {
    background-image: url('imgs/general/menu-vegetariano.jpg');
}

.menu-aman {
    background-image: url('imgs/general/menu-aman.jpg');
}

/* Wellness Section */
.wellness {
    background: var(--bg-white);
}

.wellness-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.wellness-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.wellness-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.wellness-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wellness-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Gallery Section */
.gallery {
    background: var(--bg-light);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-size: 2rem;
}

.gallery-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.gallery-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-image {
    max-width: 100%;
    max-height: 100%;
}

.gallery-modal-image img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gallery-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10001;
    padding: 10px;
    transition: opacity 0.3s ease;
}

.gallery-modal-close:hover {
    opacity: 0.7;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    z-index: 10001;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: -80px;
}

.gallery-next {
    right: -80px;
}

.gallery-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-white);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 300px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-content {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(207, 146, 80, 0.1);
}

.stars {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Location Section */
.location {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('imgs/gallery/04.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0;
    color: white;
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(1px);
}

.location-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.location-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.location-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.location-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(207, 146, 80, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--text-dark);
    stroke-width: 2;
    fill: none;
}

.location-item:hover .location-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(207, 146, 80, 0.4);
}

.location-item h4 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.location-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.location-map {
    position: relative;
    z-index: 2;
}

.location-map a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.map-image {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(207, 146, 80, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(207, 146, 80, 0.15);
}

.map-image img {
    width: 100%;
    height: auto;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
}

.map-image:hover .map-overlay {
    opacity: 1;
}

.waze-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.map-overlay p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

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

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(207, 146, 80, 0.3);
}

.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(207, 146, 80, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--accent-medium);
    border-radius: 10px;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn {
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--accent-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(207, 146, 80, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(207, 146, 80, 0.3);
        transition: left 0.3s ease;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

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

    .about-content,
    .wellness-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-nav {
        font-size: 1.5rem;
        padding: 10px 15px;
    }

    .gallery-prev {
        left: -60px;
    }

    .gallery-next {
        right: -60px;
    }

    .gallery-modal-close {
        font-size: 2rem;
        top: -40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .typewriter-text {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .cursor {
        font-size: 2.2rem;
    }
    
    .typewriter-container {
        min-height: 310px;
  }

    .section-title {
        font-size: 2rem;
    }

    .accommodation-grid,
    .wellness-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .location {
        background-attachment: scroll;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dining-highlights {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .typewriter-text {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .cursor {
        font-size: 1.6rem;
    }
    
    .typewriter-container {
        min-height: 210px;
  }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    section {
        padding: 3rem 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-nav {
        font-size: 1.2rem;
        padding: 8px 12px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .gallery-modal-close {
        font-size: 1.8rem;
        top: 10px;
        right: 10px;
    }

    .gallery-counter {
        bottom: 10px;
        font-size: 0.9rem;
    }
}
