/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #A4723F;
    --secondary-color: #003657;
    --white: #ffffff;
    --light-gray: #f8f8f8;
    --text-dark: #333333;
    --text-light: #666666;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.btn-book {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

.btn-book:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 70px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 54, 87, 0.3);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 3px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    background: var(--white);
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content h2 {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.welcome-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* About Preview Section */
.about-preview {
    padding: 100px 0;
    background: var(--light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 500px;

object-fit: cover;
    border-radius: 2px;
}

.about-text h2 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-link {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
}

.btn-link:hover {
    color: var(--secondary-color);
}

.btn-link:hover::after {
    background: var(--secondary-color);
}

/* Accommodation Section */
.accommodation-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.accommodation-card {
    background: var(--white);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accommodation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 300px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.accommodation-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 30px;
    text-align: center;
}

.card-content h3 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.card-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Experience Section */
.experience-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.experience-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.experience-item h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.experience-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    padding: 40px;
    background: var(--light-gray);
    border-radius: 2px;
    text-align: center;
}

.review-stars {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 20px;
}

.review-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 54, 87, 0.9), rgba(0, 54, 87, 0.9)), url('https://calalaiya.com/wp-content/uploads/2023/03/CLL-Beach.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 20px;
    color: var(--white);

margin-bottom: 40px;
    font-weight: 300;
}

.btn-large {
    padding: 20px 50px;
    font-size: 16px;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h3,
.footer-column h4 {
    font-size: 24px;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.footer-column p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Page Header */
.page-header {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    margin-top: 70px;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 54, 87, 0.5);
}

.page-header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
}

.page-header-content h1 {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header-content p {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* About Content Section */
.about-content-section {
    padding: 100px 0;
    background: var(--white);
}

.about-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro h2 {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2px;
}

.location-text h2 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.location-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.detail-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.detail-item h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.detail-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: var(--white);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.mission-content > p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 50px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    padding: 40px 30px;
    background: var(--light-gray);
    border-radius: 2px;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.mission-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Rooms Intro Section */
.rooms-intro {
    padding: 80px 0;
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Room Detail Section */
.room-detail-section {
    padding: 100px 0;
    background: var(--white);
}

.room-detail-section.alt-bg {
    background: var(--light-gray);
}

.room-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.room-detail-grid.reverse {
    direction: rtl;
}

.room-detail-grid.reverse > * {
    direction: ltr;
}

.room-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Room Slideshow */
.room-slideshow {
    width: 100%;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 2px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-prev,
.slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 54, 87, 0.8);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    border-radius: 2px;
}

.slideshow-prev {
    left: 10px;
}

.slideshow-next {
    right: 10px;
}

.slideshow-prev:hover,
.slideshow-next:hover {
    background: rgba(164, 114, 63, 0.9);
}

.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.slideshow-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 54, 87, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.slideshow-dot.active {
    background: var(--primary-color);
}

.slideshow-dot:hover {
    background: rgba(164, 114, 63, 0.7);
}

.room-main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 2px;
}

.room-thumbnails {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.room-thumbnails img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 2px;
}

.room-info h3 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.room-tagline {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 25px;
    font-style: italic;
}

.room-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.room-amenities {
    list-style: none;
    margin-bottom: 30px;
}

.room-amenities li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 0;
}

/* Experience Intro Section */
.experience-intro {
    padding: 80px 0;
    background: var(--white);
}

/* Activity Section */
.activity-section {
    padding: 100px 0;
    background: var(--white);
}

.activity-section.alt-bg {
    background: var(--light-gray);
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.activity-card {
    background: var(--white);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.activity-image {
    height: 250px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-content {
    padding: 25px;
    text-align: center;
}

.activity-content h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;

}

.activity-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Featured Activity Section */
.featured-activity {
    padding: 100px 0;
    background: var(--white);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-grid.reverse {
    direction: rtl;
}

.featured-grid.reverse > * {
    direction: ltr;
}

.featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2px;
}

.featured-content h3 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.featured-content > p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.activity-features {
    list-style: none;
}

.activity-features li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2,
.contact-form h2 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.contact-info > p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 32px;
    min-width: 40px;
}

.contact-text h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Contact Form */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    align-self: flex-start;
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 56px;
    }

    .accommodation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 400px;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-image img {
        height: 400px;
    }

    .room-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .room-detail-grid.reverse {
        direction: ltr;
    }

    .slideshow-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content h1 {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .hero-content p {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .welcome-content h2,

.section-header h2,
    .about-text h2,
    .cta-content h2 {
        font-size: 32px;
    }

    .accommodation-grid {
        grid-template-columns: 1fr;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .welcome-section,
    .about-preview,
    .accommodation-section,
    .experience-section,
    .reviews-section,
    .cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .logo a {
        font-size: 22px;
    }

    .hero-content h1 {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .welcome-content h2,
    .section-header h2,
    .about-text h2,
    .cta-content h2 {
        font-size: 28px;
    }

    .btn-primary,
    .btn-book {
        padding: 12px 30px;
        font-size: 12px;
    }

    .page-header-content h1 {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .page-header {
        height: 50vh;
        min-height: 350px;
    }

    .about-intro h2,
    .intro-content h2,
    .mission-content h2,
    .room-info h3,
    .featured-content h3,
    .contact-info h2,
    .contact-form h2 {
        font-size: 32px;
    }

    .location-image img,
    .featured-image img {
        height: 300px;
    }

    .room-main-image img {
        height: 300px;
    }

    .slideshow-container {
        height: 300px;
    }

    .slideshow-prev,
    .slideshow-next {
        padding: 10px 15px;
        font-size: 18px;
    }

    .room-detail-grid {
        gap: 30px;
    }

    .room-info h3 {
        font-size: 32px;
    }

    .room-tagline {
        font-size: 16px;
    }

    .room-description {
        font-size: 16px;
    }

    .room-amenities li {
        font-size: 15px;
    }

    .activity-grid {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .room-thumbnails {
        grid-template-columns: 1fr;
    }

    .about-content-section,
    .location-section,
    .mission-section,
    .rooms-intro,
    .room-detail-section,
    .experience-intro,
    .activity-section,
    .featured-activity,
    .contact-section {
        padding: 60px 0;
    }

    .map-container {
        height: 300px;
    }

    .about-content-section {
        padding: 60px 0;
    }

    .about-intro h2 {
        font-size: 28px;
    }

    .location-text h2 {
        font-size: 28px;
    }

    .location-details {
        grid-template-columns: 1fr;
    }

    .slideshow-container {
        height: 250px;
    }

    .slideshow-prev,
    .slideshow-next {
        padding: 8px 12px;
        font-size: 16px;
    }

    .room-info h3 {
        font-size: 26px;
    }

    .room-tagline {
        font-size: 15px;
    }

    .room-description {
        font-size: 15px;
    }

    .room-amenities li {
        font-size: 14px;
    }
}

/* Rooms Modal Styles */
.rooms-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.rooms-modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: var(--white);
    max-width: 1200px;
    max-height: 90vh;
    margin: 5vh auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    display: flex;
    flex-direction: column;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 30px;
    text-align: center;
    position: relative;
}

.modal-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.modal-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {

background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-body {
    padding: 40px;
    overflow-y: auto;
    flex: 1;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.room-card {
    background: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-info {
    padding: 20px;
}

.room-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.room-tagline {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-style: italic;
}

.room-pricing {
    margin-bottom: 15px;
}

.price-promo {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.price-original {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.room-description {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.modal-footer {
    padding: 30px 40px;
    background: var(--light-gray);
    display: flex;
    justify-content: center;
    gap: 20px;
    border-top: 1px solid #e0e0e0;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design for Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 0;
        max-height: 100vh;
        border-radius: 0;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-header h2 {
        font-size: 1.8rem;
    }

    .modal-body {
        padding: 20px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .modal-footer {
        padding: 20px;
        flex-direction: column;
    }

    .modal-footer a {
        text-align: center;
    }
}

