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

/* Hidden anti-bot fields used by contact and reservation forms */
.bot-trap {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Custom Hotel Colors - Enhanced Palette */
:root {
    /* Primary Colors */
    --hotel-orange: hsl(25, 95%, 53%);          /* Primary brand color */
    --hotel-orange-light: hsl(25, 95%, 65%);    /* Lighter variant for hover states */
    --hotel-orange-dark: hsl(25, 95%, 45%);     /* Darker variant for active states */
    
    /* Secondary Colors */
    --hotel-teal: hsl(175, 70%, 41%);           /* Secondary accent color */
    --hotel-teal-light: hsl(175, 70%, 50%);     /* Lighter teal for hover states */
    --hotel-teal-dark: hsl(175, 70%, 35%);      /* Darker teal for active states */
    
    /* Neutral Colors */
    --hotel-brown: hsl(25, 25%, 15%);           /* Dark brown for text */
    --hotel-cream: hsl(35, 50%, 96%);           /* Light cream for backgrounds */
    --hotel-gray: hsl(220, 15%, 25%);           /* Gray for secondary text */
    --hotel-pattern: hsl(35, 20%, 88%);         /* Pattern background color */
    
    /* System Colors */
    --background: hsl(0, 0%, 100%);             /* Page background */
    --foreground: hsl(25, 25%, 15%);            /* Primary text color */
    --muted: hsl(35, 20%, 95%);                 /* Muted background */
    --muted-foreground: hsl(25, 15%, 45%);      /* Muted text color */
    --border: hsl(35, 20%, 90%);                /* Border color */
    
    /* Feedback Colors */
    --success: hsl(145, 63%, 42%);              /* Success messages */
    --warning: hsl(45, 100%, 51%);              /* Warning messages */
    --error: hsl(0, 91%, 63%);                  /* Error messages */
    --info: hsl(210, 100%, 56%);                /* Information messages */
}

/* Typography - Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Typography Variables */
:root {
    /* Font Families */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Font Sizes */
    --fs-xs: 0.75rem;    /* 12px */
    --fs-sm: 0.875rem;   /* 14px */
    --fs-base: 1rem;     /* 16px */
    --fs-md: 1.125rem;   /* 18px */
    --fs-lg: 1.25rem;    /* 20px */
    --fs-xl: 1.5rem;     /* 24px */
    --fs-2xl: 1.875rem;  /* 30px */
    --fs-3xl: 2.25rem;   /* 36px */
    --fs-4xl: 3rem;      /* 48px */
    
    /* Font Weights */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    
    /* Line Heights */
    --lh-tight: 1.2;
    --lh-normal: 1.6;
    --lh-relaxed: 1.8;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    font-weight: var(--fw-regular);
    line-height: var(--lh-normal);
    color: var(--foreground);
    background-color: var(--background);
    min-height: 100vh;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

/* Header Styles */
.header {
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 0.75rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
    flex: 1 1 auto;
    min-width: 0;
}

.logo-img {
    width: 13rem;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    color: var(--hotel-brown);
    margin: 0;
    letter-spacing: 0.01em;
}

.logo-text p {
    font-size: var(--fs-xs);
    font-weight: var(--fw-regular);
    color: var(--muted-foreground);
    margin: 0;
    letter-spacing: 0.02em;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--foreground);
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--hotel-orange);
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--hotel-orange);
}

.reservation-btn {
    background-color: var(--hotel-orange);
    color: white;
    text-decoration: none;
    font-weight: var(--fw-medium);
    padding: 0.625rem 1.5rem;
    border-radius: 0.375rem;
    font-size: var(--fs-sm);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.reservation-btn .icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: transform 0.3s ease;
    flex: 0 0 auto;
}

.reservation-btn span {
    white-space: nowrap;
}

.reservation-btn:hover {
    background-color: var(--hotel-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reservation-btn:hover .icon {
    transform: scale(1.1) rotate(-3deg);
}

.reservation-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu - Enhanced */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background-color: var(--hotel-brown);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-navigation {
    display: none;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
    background-color: var(--background);
    animation: fadeIn 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-navigation.active {
    opacity: 1;
    transform: translateY(0);
}

/* Prevent scrolling when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

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

.mobile-nav-link {
    text-decoration: none;
    color: var(--foreground);
    font-weight: var(--fw-medium);
    font-size: var(--fs-base);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.mobile-nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--hotel-orange);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover:after,
.mobile-nav-link.active:after {
    width: 50px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--hotel-orange);
    padding-left: 0.5rem;
}

/* Hero Section with Enhanced Carousel */
.hero-section {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease, transform 2s ease;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
}

.hero-content {
    max-width: 800px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    font-weight: var(--fw-bold);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: var(--fs-md);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--hotel-orange);
    color: white;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-weight: var(--fw-medium);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover {
    background-color: var(--hotel-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Enhanced Carousel Navigation Dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.hero-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.hero-dot.active {
    background-color: var(--hotel-orange);
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.hero-dot:after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.hero-dot.active:after {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Image Carousel for Rooms */
.image-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

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

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background-color: var(--hotel-orange);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-indicator.active {
    background-color: white;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

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

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

.lightbox-close {
    position: absolute;
    top: -50px;
    right: -50px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
}

/* Gallery Grid Updates */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/5; /* Changed from 4/3 to 4/5 for taller images */
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--hotel-brown) 0%, var(--hotel-orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
}

/* Welcome Section - Enhanced */
.welcome-section {
    background-color: var(--background);
    padding: 5rem 0 4rem;
    position: relative;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--hotel-orange), transparent);
    opacity: 0.5;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.welcome-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.welcome-text h2 {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-semibold);
    color: var(--hotel-brown);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    text-transform: capitalize;
}

.welcome-text h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--hotel-orange);
}

.text-content {
    color: var(--foreground);
    line-height: var(--lh-relaxed);
    font-size: var(--fs-base);
}

.text-content p {
    margin-bottom: 1.5rem;
}

.rooms-section h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-semibold);
    color: var(--hotel-brown);
    margin-bottom: 1.75rem;
    position: relative;
    display: inline-block;
}

.rooms-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--hotel-orange);
}

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

.room-card {
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.room-card h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    font-family: var(--font-heading);
    font-weight: var(--fw-medium);
    font-size: var(--fs-md);
    padding: 2rem 1rem 1rem;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

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

.payment-info {
    font-size: var(--fs-sm);
    color: var(--muted-foreground);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-info::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='4' width='22' height='16' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='1' y1='10' x2='23' y2='10'%3E%3C/line%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.welcome-right h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-semibold);
    color: var(--hotel-brown);
    margin-bottom: 1.75rem;
    position: relative;
    display: inline-block;
}

.welcome-right h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--hotel-orange);
}

.welcome-right {
    background-color: var(--hotel-cream);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    align-self: start;
}

.facilities-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.facility-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.facility-item:hover {
    transform: translateX(5px);
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    color: white;
    background-color: var(--success);
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: var(--fw-bold);
    font-size: var(--fs-sm);
}

.facility-item span:last-child {
    font-size: var(--fs-sm);
    color: var(--foreground);
    line-height: var(--lh-normal);
}

/* Footer */
.footer {
    background-color: var(--hotel-cream);
    padding: 4rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 5px solid var(--hotel-orange);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    color: var(--hotel-brown);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--hotel-orange);
}

.address-info p {
    margin-bottom: 0.75rem;
    color: var(--foreground);
    font-size: var(--fs-sm);
    line-height: var(--lh-relaxed);
}

.contact-label {
    font-weight: var(--fw-medium);
    color: var(--hotel-brown);
}

.phone-info, .email-info {
    margin-top: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--foreground);
    text-decoration: none;
    font-size: var(--fs-sm);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--hotel-orange);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--hotel-orange);
    padding-left: 1.25rem;
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.newsletter-text {
    font-size: var(--fs-sm);
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: var(--lh-relaxed);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    background-color: white;
    font-size: var(--fs-sm);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--hotel-orange);
    box-shadow: 0 0 0 2px rgba(251, 146, 60, 0.2);
}

.newsletter-button {
    padding: 0.75rem 1rem;
    background-color: var(--hotel-orange);
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-weight: var(--fw-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background-color: var(--hotel-orange-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    color: var(--foreground);
    font-size: var(--fs-xs);
}

.social-links {
    display: flex;
    gap: 1.25rem;
}

.social-link {
    color: var(--foreground);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    color: white;
    background-color: var(--hotel-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(251, 146, 60, 0.3);
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-grid {
    display: grid;
    gap: 1rem;
}

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

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

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    background-color: var(--background);
    color: var(--foreground);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--hotel-orange);
    box-shadow: 0 0 0 2px rgba(251, 146, 60, 0.2);
}

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

.form-button {
    background-color: var(--hotel-orange);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-button:hover {
    background-color: var(--hotel-orange-dark);
}

/* Page Layout */
.page-layout {
    display: block;
    min-height: calc(100vh - 200px);
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

.main-content {
    width: 100%;
    padding: 3rem 2rem;
}

/* Sidebar removed */
.sidebar {
    display: none;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--hotel-orange);
    margin-bottom: 1rem;
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    margin-bottom: 0.5rem;
}

.sidebar-link {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-link:hover {
    color: var(--hotel-orange);
}

/* Map Container */
.map-container {
    height: 16rem;
    background-color: var(--muted);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-section h3 {
    font-weight: 600;
    color: var(--hotel-brown);
    margin-bottom: 0.5rem;
}

.contact-section p {
    color: var(--muted-foreground);
    margin: 0;
}

/* Success/Error Messages */
.message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Component Loading States */
.component-loading {
    padding: 1rem;
    text-align: center;
    color: var(--muted-foreground);
    font-style: italic;
}

.component-error {
    padding: 1rem;
    text-align: center;
    color: #dc2626;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.375rem;
    margin: 1rem 0;
}

/* Best Practice: Component Structure */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-wrapper {
    flex: 1;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    height: 600px; /* Increased height to 600px */
    overflow: hidden;
 
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Center the image */
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.carousel-content {
    color: white;
    text-align: center;
    width: 100%;
}



.carousel-content h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0;
    text-transform: uppercase;
}

.carousel-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* CTA Button Styling */
.cta-button {
    display: inline-block;
    background-color: var(--hotel-orange);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    border: 2px solid var(--hotel-orange);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: var(--hotel-orange-dark);
    border-color: var(--hotel-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

/* Piano Effect for Facilities */
.facility-item {
    position: relative;
    overflow: hidden;
}

.facility-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.facility-item:hover::before {
    left: 100%;
}

.facility-item:hover .piano-key {
    animation: pianoKeyPress 0.3s ease-in-out;
}

.facility-item:hover .piano-key svg {
    animation: musicalNote 0.5s ease-in-out;
    transform: scale(1.2);
}

@keyframes pianoKeyPress {
    0% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
    100% { transform: translateY(0); }
}

@keyframes musicalNote {
    0% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.3) rotate(-5deg); }
    50% { transform: scale(1.2) rotate(5deg); }
    75% { transform: scale(1.1) rotate(-2deg); }
    100% { transform: scale(1.2) rotate(0deg); }
}

/* Staggered animation for facility items */
.facility-item:nth-child(1) { animation-delay: 0ms; }
.facility-item:nth-child(2) { animation-delay: 50ms; }
.facility-item:nth-child(3) { animation-delay: 100ms; }
.facility-item:nth-child(4) { animation-delay: 150ms; }
.facility-item:nth-child(5) { animation-delay: 200ms; }
.facility-item:nth-child(6) { animation-delay: 250ms; }
.facility-item:nth-child(7) { animation-delay: 300ms; }
.facility-item:nth-child(8) { animation-delay: 350ms; }
.facility-item:nth-child(9) { animation-delay: 400ms; }
.facility-item:nth-child(10) { animation-delay: 450ms; }
.facility-item:nth-child(11) { animation-delay: 500ms; }
.facility-item:nth-child(12) { animation-delay: 550ms; }
.facility-item:nth-child(13) { animation-delay: 600ms; }
.facility-item:nth-child(14) { animation-delay: 650ms; }
.facility-item:nth-child(15) { animation-delay: 700ms; }
.facility-item:nth-child(16) { animation-delay: 750ms; }

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-nav:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
    display: none;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-indicator.active {
    background-color: white;
}

/* Room Carousel Specific Styles */
.room-carousel {
    position: relative;
    width: 100%;
    height: 500px; /* Keep room carousel at 500px */
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        gap: 0.5rem;
    }

    .logo-img {
        width: clamp(9rem, 42vw, 11rem);
    }

    .reservation-btn {
        padding: 0.55rem 0.9rem;
        font-size: 0.8125rem;
        gap: 0.375rem;
        border-radius: 0.5rem;
    }

    .reservation-btn .icon {
        width: 14px;
        height: 14px;
    }

    .mobile-menu-btn {
        padding: 0.35rem;
    }

    .mobile-menu-btn span {
        width: 24px;
    }

    .navigation {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-navigation.open {
        display: flex;
    }

    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: row;
    }
    
    .newsletter-input {
        flex: 1;
    }

    /* Page layout media query updated */
    .page-layout {
        /* No flex properties needed since sidebar is removed */
    }

    /* Sidebar is hidden globally */

    .form-grid-2,
    .form-grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding-top: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    .hero-section {
        height: 300px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .carousel-container {
        height: 400px; /* Adjusted for mobile - increased from 350px */
    }
    
    .room-carousel {
        height: 350px; /* Adjusted for mobile */
    }
    
    .carousel-content h2 {
        font-size: 1.5rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
}

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

    .header-content {
        padding: 0.625rem 0;
        gap: 0.375rem;
    }

    .logo-img {
        width: min(54vw, 10.25rem);
    }

    .reservation-btn {
        min-height: 42px;
        padding: 0.5rem 0.7rem;
        font-size: 0.75rem;
        border-radius: 0.45rem;
        gap: 0.25rem;
    }

    .reservation-btn .icon {
        display: none;
    }

    .logo-text h1 {
        font-size: 1.125rem;
    }

    .logo-text p {
        font-size: 0.75rem;
    }

    .welcome-section {
        padding: 2.5rem 0;
    }

    .welcome-grid {
        gap: 2.5rem;
    }

    .welcome-text h2 {
        font-size: 1.75rem;
    }

    .welcome-text h2::after {
        width: 50px;
    }

    .welcome-right {
        padding: 1.5rem;
    }

    .rooms-section h3,
    .welcome-right h3 {
        font-size: 1.375rem;
    }

    .welcome-right h3::after {
        width: 45px;
    }

    .facility-item {
        padding: 0.625rem 0.875rem;
    }

    .check-icon {
        width: 1.25rem;
        height: 1.25rem;
    }

    .carousel-nav {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .hero-cta {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .hero-dots {
        bottom: 1rem;
    }
}

@media (max-width: 360px) {
    .logo-img {
        width: min(50vw, 9rem);
    }

    .reservation-btn {
        padding: 0.45rem 0.55rem;
        font-size: 0.6875rem;
    }
}
