/* css/style.css - COMPLETE FINAL VERSION */
/* Generic Gallery System for Healing Farm Website */
/* Copy this entire file to replace your css/style.css */

/* --- 0. Basic Reset & Global Styles --- */

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

:root {
    --primary-color: #2d3e2b;
    --secondary-color: #8b9d83;
    --accent-color: #c9b896;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --nav-height: 4rem;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: var(--text-dark);
    background: #fff;
    padding-top: var(--nav-height); 
}

html {
    scroll-behavior: smooth;
}

/* --- Navigation --- */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    min-height: var(--nav-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 1rem 2rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: absolute;
    display: block;
    left: 40%;
}

nav ul {
    list-style: none;
    position: fixed;
    top: var(--nav-height);
    left: -25%;  /* CHANGED: from -100% to -25% for desktop */
    height: calc(100vh - var(--nav-height));
    width: 25%;  /* CHANGED: from 100% to 25% for desktop */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    transition: left 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    padding: 2rem;
    z-index: 999;
    display: flex;
}

nav ul.active {
    left: 0;
}

nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* --- Hero Section - Carousel --- */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(45, 62, 43, 0.3), rgba(45, 62, 43, 0.4));
}

.carousel-media-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0s;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    filter: brightness(0.7);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 62, 43, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 4px;
    font-weight: 300;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    font-weight: 300;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* --- Sections --- */

section {
    padding: 6rem 2rem;
}

.section-alt {
    background: var(--bg-light);
}

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

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 2;
}

/* --- Grid Layouts --- */

.two-col-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.image-box {
    width: 100%;
    height: 400px;
    background: var(--secondary-color);
    border-radius: 2px;
    overflow: hidden;
}

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

.content-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 400;
}

.content-box p {
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 1rem;
}

/* --- Cards --- */

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

.card {
    background: white;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

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

.card-image {
    width: 100%;
    height: 300px;
    background: var(--accent-color);
}

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

.card-content {
    padding: 2rem;
}

.card-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- Founder Section --- */

.founder-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.founder-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    border-radius: 2px;
    overflow: hidden;
}

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

.founder-text {
    max-width: 700px;
    text-align: center;
}

/* --- Instagram Section --- */

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

.insta-box {
    aspect-ratio: 1;
    background: var(--secondary-color);
    border-radius: 2px;
    overflow: hidden;
}

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

/* --- CTA Button --- */

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    border-radius: 2px;
    transition: background 0.3s;
    margin-top: 1rem;
}

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

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

/* --- Footer Quote --- */

/* Footer Quote - Full width background */
.footer-quote {
    text-align: center;
    padding: 6rem 0;  /* CHANGED: Remove horizontal padding */
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-style: italic;
    color: var(--secondary-color);
    max-width: none;  /* CHANGED: Remove max-width */
    margin: 0;        /* CHANGED: Remove margin */
    line-height: 1.8;
    background: var(--bg-light);
    width: 100%;      /* ADDED: Full width */
}

/* Create an inner wrapper effect with pseudo-element */
.footer-quote::after {
    content: attr(data-quote);
    display: block;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;  /* Add horizontal padding to text only */
}

/* Extra spacing for attractions page only */
.footer-quote-attractions {
    padding: 6rem 2rem;  /* or 8rem 2rem for even more */
}

/* --- Footer --- */

footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

footer p {
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
}

/* ========================================= */
/*  GENERIC GALLERY SYSTEM                  */
/*  Works for both Suites & Attractions     */
/* ========================================= */

/* Generic sections that use galleries */
#suites,
#attractions {
    padding-left: 0;
    padding-right: 0;
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: var(--bg-light);
}

/* Category cards navigation (rooms/attractions) */
.room-categories,
.attraction-categories {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.category-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    cursor: pointer;
    transition: transform 0.3s;
    text-align: center;
}

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

.category-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 1rem;
}

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

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

.category-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.category-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

/* Generic detail containers */
.room-detail-container,
.attraction-detail-container {
    width: 100%;
    margin-bottom: 4rem;
    background-color: var(--bg-light);
    display: block;
    position: relative;
    min-height: 80vh;
    scroll-margin-top: 2rem; /* Offset for fixed header */
}

/* Optional: Highlight effect when targeted */
.room-detail-container:target,
.attraction-detail-container:target {
    animation: highlight 2s ease;
}

@keyframes highlight {
    0%, 100% { background: var(--bg-light); }
    50% { background: rgba(201, 184, 150, 0.2); }
}

#suites .room-detail-container:last-of-type,
#attractions .attraction-detail-container:last-of-type {
    margin-bottom: 0;
}

/* Generic detail layout */
.room-detail,
.attraction-detail {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 80vh;
    overflow: visible;
    justify-content: center;
    align-items: center;
}

/* Generic image main container */
.room-image-main,
.attraction-image-main { 
    position: relative;
    display: block;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    z-index: 1;
    background-color: var(--secondary-color);
    overflow: hidden;
}

.room-image-main > img,
.attraction-image-main > img {            
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Generic gallery slides container */
.room-gallery-slides,
.attraction-gallery-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--secondary-color);
}

/* Generic individual gallery slides */
.room-gallery-slide,
.attraction-gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
    pointer-events: none;
    background-color: var(--bg-light);
    cursor: pointer;
}

.room-gallery-slide.active,
.attraction-gallery-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.room-gallery-slide img,
.attraction-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.room-gallery-slide video,
.attraction-gallery-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Generic info box */
/*.room-info,
.attraction-info {
    position: relative;
    max-width: 900px;
    width: 90%;
    background: rgba(45, 62, 43, 0.92);
    color: white;
    z-index: 10;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    margin: -10rem auto 2rem auto;
    border-radius: 2px;
}

.room-info h3,
.attraction-info h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
    color: white;
}
*/

/* Generic info box - DEFAULT STYLE (overlapping dark box) */
.room-info,
.attraction-info {
    position: relative;
    max-width: 900px;
    width: 90%;
    background: rgba(45, 62, 43, 0.92);
    color: white;
    z-index: 10;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    margin: -10rem auto 2rem auto;
    border-radius: 2px;
}

.room-info h3,
.attraction-info h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
    color: white;
}

/* ATTRACTION-SPECIFIC: Light box below image (attractions.html only) */
.attraction-info {
    background: var(--bg-light);
    color: var(--text-dark);
    margin: 2rem auto;  /* No overlap - sits below image */
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.attraction-info h3 {
    color: var(--primary-color);
}

.attraction-info p {
    color: var(--primary-color);
}


/* Room-specific: description grid */
.room-description-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem 2rem;
    width: 100%;
    max-width: 800px;
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.description-item {
    text-align: left;
    font-weight: 300;
    color: white;
}

.description-item strong {
    font-weight: 500;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.25rem;
}


/* Attraction-specific: simple paragraph styling */
/*
.attraction-info p {
    color: white;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 700px;
}
*/

/* Cursor hint for clickable galleries */
.room-image-main::after,
.attraction-image-main::after {
    content: 'Click to view fullscreen';
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(45, 62, 43, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 90;
}

.room-image-main:hover::after,
.attraction-image-main:hover::after {
    opacity: 1;
}

/* ========================================= */
/*  INTERACTIVE GALLERY NAVIGATION          */
/* ========================================= */

/* Gallery Navigation Arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
}

/* Show arrows on hover */
.room-image-main:hover .gallery-arrow,
.attraction-image-main:hover .gallery-arrow {
    opacity: 1;
    pointer-events: auto;
}

.gallery-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.gallery-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-arrow-left {
    left: 20px;
}

.gallery-arrow-right {
    right: 20px;
}

/* Gallery Counter */
.gallery-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(45, 62, 43, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* ========================================= */
/*  FULLSCREEN GALLERY MODAL                */
/* ========================================= */

.fullscreen-gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fullscreen-gallery-modal.active {
    opacity: 1;
}

/* Fullscreen Close Button */
.fullscreen-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    font-weight: 300;
}

.fullscreen-close:hover {
    background: white;
    transform: scale(1.1) rotate(90deg);
}

/* Fullscreen Navigation Arrows */
.fullscreen-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

.fullscreen-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.fullscreen-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.fullscreen-arrow-left {
    left: 30px;
}

.fullscreen-arrow-right {
    right: 30px;
}

/* Fullscreen Slide Container */
.fullscreen-slide-container {
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10001;
}

.fullscreen-image,
.fullscreen-video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

/* Fullscreen Counter */
.fullscreen-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
    font-weight: 500;
    z-index: 10002;
    box-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

/* ========================================= */
/*  ADDITIONAL SECTIONS                     */
/* ========================================= */

/* Amenities Section (for suites page) */
.amenities-section {
    background: white;
    padding: 4rem 2rem;
    margin: 0;
}

.amenities-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.amenities-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
}

.amenities-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 2;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--primary-color);
    color: white;
}

.cta-section h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.cta-section .cta-button {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
}

.cta-section .cta-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* ========================================= */
/*  RESPONSIVE ADJUSTMENTS                  */
/* ========================================= */

@media (max-width: 768px) {
    /* Detail containers */
    .room-detail-container,
    .attraction-detail-container {
        margin-bottom: 3rem;
        min-height: auto;
    }
    
    .room-detail,
    .attraction-detail {
        min-height: auto;
    }
    
    /* Image containers */
    .room-image-main,
    .attraction-image-main {
        height: 50vh;
        min-height: 350px;
    }
    
   
    /* Info boxes */
    .room-info,
    .attraction-info {
        width: 95%;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Room keeps overlap on mobile */
    .room-info {
        margin-top: -5rem;
    }
    
    /* Attraction below image on mobile */
    .attraction-info {
        margin-top: 2rem;
    }


    .room-info h3,
    .attraction-info h3 {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
        margin-bottom: 1rem;
    }

    .room-description-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        font-size: 0.9rem;
    }
    
    .description-item {
        text-align: center;
    }

    .attraction-info p {
        font-size: 0.95rem;
    }
    
    /* Category cards */
    .room-categories,
    .attraction-categories {
        flex-direction: column;
        align-items: center;
        padding: 0 1.5rem;
    }

    .category-card {
        max-width: 100%;
    }

    /* Smaller arrows on mobile */
    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .gallery-arrow-left {
        left: 10px;
    }
    
    .gallery-arrow-right {
        right: 10px;
    }
    
    /* Always show arrows on mobile (no hover state) */
    .gallery-arrow {
        opacity: 0.7;
        pointer-events: auto;
    }
    
    .gallery-arrow:active {
        opacity: 1;
    }
    
    /* Adjust counter position */
    .gallery-counter {
        bottom: 10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Fullscreen adjustments */
    .fullscreen-arrow {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }
    
    .fullscreen-arrow-left {
        left: 15px;
    }
    
    .fullscreen-arrow-right {
        right: 15px;
    }
    
    .fullscreen-close {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
        top: 15px;
        right: 15px;
    }
    
    .fullscreen-counter {
        bottom: 20px;
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    /* Hide hint on mobile */
    .room-image-main::after,
    .attraction-image-main::after {
        display: none;
    }

    /* Common responsive rules */
    section {
        padding: 4rem 1.5rem;
    }

    .hero-content h1 {
        letter-spacing: 4px;
    }

    .nav-logo {
        font-size: 1rem;
    }

        /* Full width menu for mobile */
    nav ul {
        width: 100%;
        left: -100%;
    }
    
    nav ul.active {
        left: 0;
    }
    
    .footer-quote {
        padding: 4rem 1.5rem;  /* Less padding on mobile */
    }
    
    /* Or for attractions only */
    .footer-quote-attractions {
        padding: 5rem 1.5rem;
    }

}

@media (max-width: 480px) {
    .room-image-main,
    .attraction-image-main {
        height: 40vh;
        min-height: 300px;
    }
    
    .room-info {
        margin-top: -3rem;
    }
    
    /* Attraction stays below image */
    .attraction-info {
        margin-top: 1.5rem;
        padding: 1.25rem;
    }
    
    .category-card {
        min-width: unset;
    }

    .fullscreen-slide-container {
        width: 95%;
        height: 85%;
    }
    
    .gallery-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .fullscreen-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }
}

css/* ========================================= */
/*  ATTRACTION DETAIL PAGE                  */
/* ========================================= */

/* Detail page section */
#attraction-detail-section {
    padding: 0 0 6rem 0;  /* 0 top, 0 left/right, 6rem bottom */
    background: var(--bg-light);
}

/* Single attraction container on detail page */
#single-attraction-container {
    width: 100%;
    margin-bottom: 3rem;
}

/* ========================================= */
/*  ATTRACTION NAVIGATION BUTTONS           */
/* ========================================= */

.attraction-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    gap: 2rem;
    padding: 0 2rem;
}

.attraction-nav-btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.attraction-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.attraction-nav-btn:active {
    transform: translateY(0);
}

/* Previous button - align left */
.attraction-nav-prev {
    justify-content: flex-start;
}

/* Next button - align right */
.attraction-nav-next {
    justify-content: flex-end;
}

.nav-arrow {
    font-size: 2rem;
    line-height: 1;
    font-weight: 300;
}

.nav-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ========================================= */
/*  RESPONSIVE - DETAIL PAGE                */
/* ========================================= */

@media (max-width: 768px) {
    .attraction-navigation {
        flex-direction: column;
        width: 95%;
        gap: 1rem;
    }
    
    .attraction-nav-btn {
        width: 100%;
        justify-content: center;
        padding: 1.25rem 1.5rem;
    }
    
    .attraction-nav-prev,
    .attraction-nav-next {
        justify-content: center;
    }
    
    .nav-label {
        font-size: 0.85rem;
    }
    
    .nav-arrow {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .attraction-nav-btn {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }
    
    .nav-label {
        font-size: 0.8rem;
    }
}

/* ========================================= */
/*  FORCE REMOVE ALL TOP SPACING           */
/* ========================================= */

/* Detail page overrides */
#attraction-detail-section {
    padding: 0 !important;
    padding-bottom: 6rem !important;
    margin: 0 !important;
}

#single-attraction-container {
    margin: 0 !important;
    padding: 0 !important;
}

#single-attraction-container .attraction-detail-container {
    margin: 0 !important;
    padding: 0 !important;
}

#single-attraction-container .attraction-detail {
    margin: 0 !important;
    padding: 0 !important;
    min-height: auto !important;
    justify-content: flex-start !important;
}

#single-attraction-container .attraction-image-main {
    margin: 0 !important;
    padding: 0 !important;
}

/* --- END OF FILE style.css --- */