/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

:root {
    --primary-gold: #D4AF37;
    --light-gold: #F4E4A6;
    --dark-gold: #B8860B;
    --cream: #FDF6E3;
    --dark-brown: #3E2723;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --black: #000000;
    --shadow: rgba(0, 0, 0, 0.1);
    --gold-gradient: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-brown);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--dark-brown);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--dark-brown);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-logo {
    position: absolute;
    left: 0;
}

.nav-logo h2 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    font-weight: 700;
}

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

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: 0.3s;
}

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

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    background: #000 url('images/headers/rooms-header.jpg') center center / cover no-repeat;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-width: 100%;
    min-height: 100vh;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.55));
    backdrop-filter: blur(1.5px);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    padding: 0 24px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    text-shadow: 0 6px 24px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.2rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    text-shadow: 0 4px 18px rgba(0,0,0,0.6);
}

.hero-btn {
    padding: 15px 40px;
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(212,175,55,0.45);
}

/* Sections */
section {
    padding: 80px 0;
}

/* Page-specific section adjustments - Remove ALL top spacing */
.rooms-page .rooms,
.about-page .about,
.contact-page .contact {
    padding: 0 0 60px 0 !important;
    margin: 0 !important;
}

/* Ensure containers also have no spacing */
.rooms-page .rooms .container,
.about-page .about .container,
.contact-page .contact .container {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Force all nested elements to have no top spacing */
.rooms-page .rooms *:first-child,
.about-page .about *:first-child,
.contact-page .contact *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

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

.section-header h2 {
    font-size: 3rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--dark-brown);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--dark-brown);
    opacity: 0.8;
}

/* Rooms Section */
.rooms {
    background: rgba(253, 246, 227, 0.8);
    backdrop-filter: blur(2px);
    position: relative;
    z-index: 1;
}

.rooms-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 0;
}

.room-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.room-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.room-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(212, 175, 55, 0.1));
}

.room-content {
    padding: 2rem;
}

.room-title {
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.room-description {
    color: var(--dark-brown);
    opacity: 0.8;
    line-height: 1.6;
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
    position: relative;
    z-index: 1;
}

.about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 0;
}

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

.about-text {
    margin-top: 0;
    padding-top: 0;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
    margin-top: 0;
    padding-top: 0;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--dark-brown);
    opacity: 0.9;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow);
}

/* Contact Section */
.contact {
    background: rgba(245, 245, 245, 0.8);
    backdrop-filter: blur(2px);
    position: relative;
    z-index: 1;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 0;
}

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

/* Remove any extra spacing from contact items */
.contact-info {
    margin-top: 0;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item:first-child {
    margin-top: 0;
    padding-top: 0;
}

.contact-item h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--dark-brown);
    line-height: 1.6;
}



/* Footer */
.footer {
    background: var(--dark-brown);
    padding: 2rem 0;
    margin: 0;
}

/* Remove extra margin between sections and footer on individual pages */
.rooms-page .footer,
.about-page .footer,
.contact-page .footer {
    margin-top: 0;
}

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

.footer-logo h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.footer-text p {
    color: var(--white);
    opacity: 0.8;
}

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

/* Page Header for individual pages */
.page-header {
    height: 60vh;
    min-height: 400px;
    background: var(--primary-gold);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 88px;
    margin-bottom: 0;
    padding: 0;
}

/* Specific page headers */
.rooms-page .page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/headers/rooms-header.jpg');
}

.about-page .page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/headers/about-header.jpg');
}

.contact-page .page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/headers/contact-header.jpg');
}

/* Loading state for page headers */
.page-header {
    background-color: var(--primary-gold);
    transition: background-image 0.3s ease-in-out;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gold);
    z-index: -1;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.page-header.loaded::before {
    opacity: 0;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.page-header-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    position: relative;
    max-width: 800px;
    padding: 0 2rem;
}

.page-header-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 600;
    line-height: 1.2;
}

.page-header-content p {
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.4;
}

/* Rooms Detail Page */
.rooms-detail {
    padding: 80px 0;
}

.room-detail-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px var(--shadow);
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.room-images {
    display: flex;
    flex-direction: column;
}

.main-image {
    flex: 1;
}

.room-main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.thumbnail-images {
    display: flex;
    height: 120px;
}

.thumbnail {
    flex: 1;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover {
    border-color: var(--primary-gold);
    transform: scale(0.95);
}

.room-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.room-info h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
}

.room-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-item ul {
    list-style: none;
    padding: 0;
}

.feature-item li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* About Page */
.about-page {
    padding: 80px 0;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.story-content h2 {
    font-size: 2.8rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-brown);
    opacity: 0.9;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow);
}

.values-section {
    margin-bottom: 6rem;
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 3rem;
}

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

.value-item {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.team-section {
    margin-bottom: 6rem;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
}

.team-intro {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--dark-brown);
    opacity: 0.9;
}

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

.stat-item {
    background: var(--primary-gold);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.location-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.location-content h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
}

.location-highlights {
    margin-top: 2rem;
}

.highlight-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-gold);
    font-size: 1.1rem;
}

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

.location-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow);
}

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

.awards-section h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 3rem;
}

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

.award-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    border-left: 4px solid var(--primary-gold);
}

.award-year {
    background: var(--primary-gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 600;
}

.award-item h4 {
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-page {
    padding: 80px 0;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.contact-info-detailed h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
}

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

.contact-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.checkin-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.checkin-info h3 {
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
    text-align: center;
}

.checkin-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.checkin-item strong {
    display: block;
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.checkin-item span {
    font-size: 0.9rem;
    color: var(--dark-brown);
    opacity: 0.7;
    display: block;
    margin-top: 0.5rem;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
}

.contact-form {
    background: var(--cream);
    padding: 2rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-brown);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gold);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-submit-btn {
    background: var(--primary-gold);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

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

.map-section h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-map iframe:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.transportation-section {
    margin-bottom: 4rem;
}

.transportation-section h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 3rem;
    text-align: center;
}

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

.transport-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
}

.transport-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.transport-item h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

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

.faq-section h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 3rem;
}

.faq-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.faq-item {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
}

.faq-item h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    /* Mobile header layout: logo left, menu button right */
    .nav-container { justify-content: space-between; }
    .nav-logo { position: static; }
    .nav-logo h2 { font-size: 1.4rem; }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
    }

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

    .hero-title { font-size: 2.4rem; }
    .hero-subtitle { font-size: 1.05rem; max-width: 90%; }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .rooms-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .room-card {
        margin: 0 1rem;
    }

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

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Tablet section spacing */
    section {
        padding: 50px 0;
    }
    
    .rooms-page .rooms,
    .about-page .about,
    .contact-page .contact {
        padding: 0 0 50px 0 !important;
        margin: 0 !important;
    }

    /* Page specific responsive */
    .page-header {
        height: 50vh;
        min-height: 350px;
        margin-top: 70px;
    }
    
    .page-header-content {
        padding: 0 1rem;
    }
    
    .page-header-content h1 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

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

    .room-detail-card {
        grid-template-columns: 1fr;
        margin-bottom: 2rem;
    }

    .room-info {
        padding: 2rem;
    }

    .about-story {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .checkin-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .transport-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 40px 0;
    }
    
    .rooms-page .rooms,
    .about-page .about,
    .contact-page .contact {
        padding: 0 0 40px 0 !important;
        margin: 0 !important;
    }

    .hero-title { font-size: 1.9rem; }
    .hero-subtitle { font-size: 0.98rem; }

    .page-header {
        height: 45vh;
        min-height: 300px;
        margin-top: 60px;
    }
    
    .page-header-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .page-header-content p {
        font-size: 0.9rem;
    }

    .rooms-container {
        grid-template-columns: 1fr;
    }

    .room-card {
        margin: 0;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Room Gallery Styles for Homepage */
.room-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.room-gallery .room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px 15px 0 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
}

.room-gallery .room-image.active {
    opacity: 1;
    visibility: visible;
}

.room-gallery .room-image:hover {
    cursor: pointer;
    filter: brightness(1.1);
}

/* Gallery Navigation */
.gallery-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

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

.gallery-dot.active,
.gallery-dot:hover {
    background: var(--primary-gold);
    transform: scale(1.2);
}

/* Gallery Arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}

.room-image-container:hover .gallery-arrow {
    opacity: 1;
    visibility: visible;
}

.gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.gallery-arrow.prev {
    left: 15px;
}

.gallery-arrow.next {
    right: 15px;
}

/* Image Counter */
.image-counter {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    z-index: 10;
}

/* APPENDED: mobile nav/link colors, touch arrows, media sizing */
@media (max-width: 768px) {
    .nav-menu .nav-link { color: var(--dark-brown); }
    .nav-menu .nav-link:hover { color: var(--primary-gold); }
    .gallery-arrow { opacity: 1; visibility: visible; }
    .room-image-container { height: 240px; }
    .about-image img { height: 280px; }
    .room-main-img { height: 300px; }
    .contact-map iframe { height: 280px; }
}
@media (max-width: 480px) {
    .room-image-container { height: 210px; }
    .about-image img { height: 240px; }
    .room-main_img { height: 260px; }
    .contact-map iframe { height: 220px; }
}
