@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
:root {
    --primary-color: #53624e;
    --primary-color-hover: #414d3d;
    --secondary-color: #a89470;
    --secondary-color-hover: #8f7d5c;
    --dark-color: #1e221b;
    --light-bg: #f9faf8;
    --white: #ffffff;
    --border-color: #e0e4dd;
    --text-color: #4a5047;
    --font-title: 'Marcellus', serif;
    --font-body: 'Jost', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    color: var(--dark-color);
    font-weight: 400;
    line-height: 1.2;
}

/* Common Components & Helpers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

.button:hover {
    background-color: var(--primary-color-hover);
}

.button.secondary {
    background-color: var(--secondary-color);
}

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

.button.outline {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.button.outline:hover {
    background-color: var(--white);
    color: var(--dark-color);
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.subtitle {
    font-family: var(--font-body);
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: rgba(30, 34, 27, 0.4);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.sticky {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border-color);
}

header.sticky .nav-link, 
header.sticky .nav-tel a, 
header.sticky .mobile-menu-btn span {
    color: var(--dark-color);
}

header.sticky .mobile-menu-btn span {
    background-color: var(--dark-color);
}

header.sticky .logo img {
    filter: none; /* If logo image needs coloring */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    transition: var(--transition);
}

header.sticky .header-container {
    height: 80px;
}

.logo img {
    height: 55px;
    width: auto;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 10px 0;
}

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

/* Dropdown menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border-top: 3px solid var(--primary-color);
    padding: 10px 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item a {
    display: block;
    padding: 10px 20px;
    color: var(--dark-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-item a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-tel {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

/* Mobile Navigation Side Panel */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background-color: var(--dark-color);
    color: var(--white);
    z-index: 1050;
    padding: 80px 40px 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(3px);
}

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

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.mobile-nav-link {
    font-size: 1.1rem;
    font-family: var(--font-title);
    letter-spacing: 1px;
}

.mobile-nav-sub {
    padding-left: 20px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-sub a {
    font-size: 0.9rem;
    opacity: 0.8;
}

.mobile-nav-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ==========================================================================
   Hero Section & Slideshow
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
    animation: zoomOut 8s infinite alternate ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 34, 27, 0.45);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 60px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease-out;
}

.hero-btn {
    animation: fadeInUp 1.4s ease-out;
}

/* ==========================================================================
   Welcome Section
   ========================================================================== */
/* ==========================================================================
   Welcome Section (3-Column Premium Banner)
   ========================================================================== */
.welcome-banner-section {
    padding: 80px 0 40px;
    background-color: var(--light-bg);
}

.welcome-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: 0 auto;
    height: 600px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.welcome-banner-col {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.welcome-banner-left {
    background-image: url('../assets/images/welcome-left.jpg');
    background-position: bottom center;
}

.welcome-banner-center {
    background-image: url('../assets/images/welcome-center.jpg');
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    color: var(--white);
    text-align: center;
}

.welcome-banner-center-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2C3529; /* Matches original Elementor overlay color */
    opacity: 0.85;
    z-index: 1;
}

.welcome-banner-center-inner {
    position: relative;
    z-index: 2;
    border: 1px solid var(--secondary-color);
    padding: 50px 30px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.welcome-banner-center-inner::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid rgba(168, 148, 112, 0.25);
    pointer-events: none;
}

.welcome-subtitle {
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 25px;
}

.welcome-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: normal;
    line-height: 1.35;
    color: var(--white);
    margin-bottom: 30px;
    max-width: 320px;
}

.welcome-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    padding: 12px 15px;
    border-top: 1px solid rgba(168, 148, 112, 0.4);
    border-bottom: 1px solid rgba(168, 148, 112, 0.4);
    transition: var(--transition);
    width: 100%;
    max-width: 290px;
    line-height: 1.5;
    margin-top: auto;
}

.welcome-link:hover {
    color: var(--secondary-color);
    border-top-color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.03);
}

.welcome-banner-right {
    background-image: url('../assets/images/welcome-right.jpg');
}

.welcome-banner-action {
    text-align: center;
    margin-top: 50px;
}

.welcome-banner-action .button {
    padding: 16px 45px;
    font-size: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.welcome-banner-action .button:hover {
    background-color: var(--primary-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Welcome Banner */
@media (max-width: 991px) {
    .welcome-banner-grid {
        display: flex;
        flex-direction: column;
        height: auto;
        width: calc(100% - 30px);
    }
    
    .welcome-banner-col {
        height: 350px;
    }
    
    .welcome-banner-center {
        order: -1; /* Green box goes first */
        height: 480px;
        padding: 15px;
    }
    
    .welcome-banner-center-inner {
        padding: 40px 20px;
    }
    
    .welcome-title {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   Rooms Selection Grid
   ========================================================================== */
.rooms-section {
    background-color: var(--light-bg);
}

.rooms-intro {
    max-width: 700px;
    margin: 0 auto 50px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.room-card {
    background-color: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.room-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.room-price-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: var(--white);
    padding: 20px 20px 10px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.room-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.room-card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.room-card-title a:hover {
    color: var(--primary-color);
}

.room-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    font-size: 0.85rem;
    color: #777;
}

.room-feature-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-feature-item i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.room-excerpt {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.room-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 2px;
    width: fit-content;
}

.room-link:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* ==========================================================================
   Amenities / Info Boxes
   ========================================================================== */
.amenities-section {
    background-color: var(--white);
}

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

.amenity-item {
    display: flex;
    gap: 20px;
}

.amenity-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.4rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.amenity-item:hover .amenity-icon {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.amenity-content h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.amenity-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* ==========================================================================
   Gastronomia / Description Section
   ========================================================================== */
.gastronomia-section {
    background-color: var(--light-bg);
}

.gastronomia-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.gastronomia-content {
    flex: 1;
}

.gastronomia-image {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    aspect-ratio: 16/10;
}

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

.gastronomia-content p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* ==========================================================================
   News / Blog Section
   ========================================================================== */
.news-section {
    background-color: var(--white);
}

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

.news-card {
    background-color: var(--white);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.news-card:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.news-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

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

.news-content {
    padding: 30px;
}

.news-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.news-title a:hover {
    color: var(--primary-color);
}

.news-excerpt {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ==========================================================================
   Testimonial Section (Parallax Banner Style)
   ========================================================================== */
.testimonials-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 34, 27, 0.7);
    z-index: 1;
}

.testimonials-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-title {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 40px;
    line-height: 1.5;
    font-style: italic;
}

.testimonial-slider {
    position: relative;
    min-height: 200px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
}

.testimonial-author {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.testimonial-source {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-top: 5px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.3);
}

/* ==========================================================================
   Instagram Preview Section
   ========================================================================== */
.instagram-section {
    background-color: var(--white);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 2px;
    position: relative;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.instagram-item::after {
    content: '\f16d';
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(83, 98, 78, 0.4);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    opacity: 0;
    transition: var(--transition);
}

.instagram-item:hover img {
    transform: scale(1.08);
}

.instagram-item:hover::after {
    opacity: 1;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 20px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h5 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-col.about p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-col.about a {
    color: var(--secondary-color);
    font-weight: 500;
}

.footer-col.about a:hover {
    color: var(--white);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
}

.footer-contact-item i {
    color: var(--secondary-color);
    font-size: 1.05rem;
    margin-top: 3px;
}

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

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

.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social-link:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

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

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a:hover {
    color: var(--white);
}

/* ==========================================================================
   Room Detail Pages Styles
   ========================================================================== */
.room-top-section {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.room-top-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-top-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 34, 27, 0.3);
}

.room-detail-container {
    padding: 60px 0 80px;
}

.room-header {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}

.room-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.room-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.room-icon-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.room-spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

.room-spec-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.room-main-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.room-content-area p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.room-amenities-group {
    margin-bottom: 45px;
}

.room-amenities-group h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.room-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.room-amenity-card {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.room-amenity-card i {
    color: var(--primary-color);
    font-size: 1.05rem;
}

/* Sidebar for reservations & details */
.room-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.booking-card {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.02);
}

.booking-card-price {
    font-size: 1.8rem;
    font-family: var(--font-title);
    color: var(--primary-color);
    margin-bottom: 20px;
}

.booking-card .button {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
}

.booking-card-note {
    font-size: 0.8rem;
    color: #777;
}

/* Lightbox Gallery for Cabin pages */
.cabin-gallery {
    margin-top: 50px;
}

.cabin-gallery h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}

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

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

/* Lightbox Overlay */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
}

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

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

.lightbox-prev:hover, .lightbox-next:hover {
    color: var(--secondary-color);
}

/* ==========================================================================
   Page Headers (Policies & Contact)
   ========================================================================== */
.page-header {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 34, 27, 0.55);
}

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

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    letter-spacing: 1px;
}

.policies-layout {
    max-width: 800px;
    margin: 0 auto;
}

.policies-layout h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.policies-layout p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.policies-layout ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.policies-layout li {
    margin-bottom: 10px;
}

/* Contact page styles */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.contact-info-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 15px;
}

.contact-detail-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 4px;
}

.contact-detail-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-detail-item p, .contact-detail-item a {
    color: #666;
    font-size: 0.95rem;
}

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

/* Form Styles */
.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(83, 98, 78, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-form .button {
    width: 100%;
    padding: 14px;
}

.form-success-msg {
    background-color: #f0f7ef;
    border: 1px solid #d4ebd2;
    color: #3b6b35;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
    font-size: 0.95rem;
}

/* Map widget */
.map-section {
    padding-top: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   WhatsApp Widget
   ========================================================================== */
.whatsapp-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #25D366;
    color: var(--white);
    padding: 10px 18px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.whatsapp-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    background-color: #20ba5a;
}

.whatsapp-widget i {
    font-size: 1.5rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes zoomOut {
    0% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

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

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .header-container {
        height: 80px;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .nav-menu {
        display: none;
    }
    .nav-actions {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .gastronomia-container {
        flex-direction: column;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .room-main-layout {
        grid-template-columns: 1fr;
    }
    .room-sidebar {
        position: static;
        margin-top: 40px;
    }
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lightbox-prev, .lightbox-next {
        display: none; /* Hide setas in mobile lightbox */
    }
}
