:root {
    --primary-color: #007A33;
    --secondary-color: #c9a45c;
    --accent-color: #2d5a87;
    --text-dark: #333;
    --text-light: #e0e0e0;
    --text-white: #fff;
    --bg-light: #f4f4f4;
    --bg-dark: #1a1a1a;
    --border-color: #ddd;
    --success-color: #28a745;
    --error-color: #dc3545;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Joan', serif;
    --font-heading: 'Rouge Script', cursive;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: url('../images/wood.jpg') fixed repeat;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.glass-box {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

#content {
    padding-top: 80px;
}

.header {
    background: var(--primary-color);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    opacity: 0.8;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-white);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 0;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--secondary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

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

.main-nav .dropdown {
    position: relative;
}

.main-nav .dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
    padding: 10px 0;
}

.main-nav .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
}

.main-nav .dropdown-content li {
    padding: 0;
}

.main-nav .dropdown-content a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
}

.main-nav .dropdown-content a:hover {
    background: rgba(255,255,255,0.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 5px 0;
    transition: var(--transition);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--primary-color);
    z-index: 1001;
    transition: var(--transition);
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 30px;
    cursor: pointer;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav a {
    display: block;
    color: var(--text-white);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.mobile-nav .dropdown-content a {
    padding-left: 20px;
    font-size: 13px;
    opacity: 0.8;
}

.mobile-nav .dropdown > a::after {
    content: '+';
    float: right;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 90px;
}

.slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-white);
    z-index: 10;
    width: 90%;
    max-width: 800px;
    padding: 40px;
    background: rgba(0,0,0,0.6);
    border-radius: 10px;
}

.slide-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.slider-dot.active {
    background: var(--secondary-color);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: var(--text-white);
    border: none;
    padding: 20px 15px;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: var(--transition);
}

.slider-nav:hover {
    background: var(--secondary-color);
}

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

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

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h1, h2, h3, h4, h5, h6 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title p {
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
}

.accommodations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.room-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.room-card-images {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-card-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-card-content {
    padding: 25px;
}

.room-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}

.room-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.room-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.room-detail {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #666;
}

.room-detail svg {
    width: 16px;
    height: 16px;
    fill: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background: var(--accent-color);
    color: var(--text-white);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #b8934d;
    color: var(--text-dark);
}

.btn-block {
    display: block;
    width: 100%;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-item a {
    display: block;
    height: 100%;
}

.menu-section {
    margin-bottom: 50px;
}

.menu-section h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    text-align: center;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 0;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-details {
    margin-bottom: 5px;
}

.menu-item-name {
    font-weight: 600;
    color: #fff;
}

.menu-item-name::after {
    content: " – ";
}

.menu-item-description {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 5px;
}

.menu-item-price {
    font-weight: 700;
    color: var(--secondary-color);
}

.menu-extras {
    margin-top: 20px;
}

.menu-extras h4 {
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}

.menu-image {
    text-align: center;
    margin: 40px 0;
}

.menu-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.menu-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 30px;
    font-style: italic;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 20px;
}

.contact-info ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0e0e0;
}

.contact-info a {
    color: #fff;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

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

.footer-bottom a {
    color: var(--secondary-color);
}

.page-header {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 100px 0 60px;
    text-align: center;
    margin-top: 90px;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-top: 15px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb span {
    color: var(--secondary-color);
}

.form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #fff;
}

.form-group label span {
    color: var(--error-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-item input {
    width: auto;
}

.checkbox-item label {
    margin-bottom: 0;
    font-weight: normal;
}

.availability-box {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.availability-box h4 {
    margin-bottom: 10px;
}

.price-display {
    text-align: center;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: 8px;
    margin-top: 20px;
}

.price-display span {
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.price-display strong {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.content-area {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #fff;
}

.content-area h3 {
    font-family: var(--font-heading);
    color: #fff;
    margin: 30px 0 15px;
}

.content-area p {
    margin-bottom: 15px;
    color: #e0e0e0;
}

.content-area ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content-area li {
    margin-bottom: 10px;
    list-style: disc;
    color: #e0e0e0;
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h3 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.room-detail-page {
    padding: 40px 0;
}

.room-detail-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.room-detail-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.room-detail-images .main-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.room-detail-images .main-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.room-detail-images .thumbnail-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.room-detail-images .thumbnail-gallery a {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

.room-detail-images .thumbnail-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.room-detail-images .thumbnail-gallery a:hover img {
    transform: scale(1.1);
}

.room-detail-info h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.room-detail-info {
    color: #fff;
}

.room-detail-info > p {
    color: #e0e0e0;
    margin-bottom: 20px;
}

.room-specs {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.room-specs h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    color: #333;
}

.room-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.room-specs li {
    color: #333;
    margin-bottom: 8px;
}

.post-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.post-nav a {
    padding: 10px 20px;
    background: var(--bg-light);
    border-radius: 4px;
    color: var(--primary-color);
    font-weight: 500;
}

.post-nav a:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 40px;
    cursor: pointer;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    background: #128C7E;
}

.click-to-call {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
}

.click-to-call:hover {
    color: var(--secondary-color);
}

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

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .room-detail-header {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    #content {
        padding-top: 70px;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
        margin-top: 70px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .page-header {
        padding: 80px 0 40px;
        margin-top: 70px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .slide-content {
        padding: 25px;
    }

    .slide-content h2 {
        font-size: 1.4rem;
    }

    .slider-nav {
        padding: 15px 10px;
        font-size: 16px;
    }

    .form-section {
        padding: 25px;
    }

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

    .checkbox-group {
        grid-template-columns: 1fr;
    }

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

    .menu-section[style*="background"] {
        background-image: none !important;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 45px;
    }

    .hero {
        height: 50vh;
        min-height: 350px;
    }

    .slide-content {
        width: 95%;
        padding: 20px 15px;
    }

    .slide-content h2 {
        font-size: 1.2rem;
    }

    .slider-dots {
        bottom: 15px;
    }

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

    .menu-item {
        flex-direction: column;
        gap: 5px;
    }

    .menu-item-price {
        margin-left: 0;
    }

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

    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}
