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

:root {
    --stone: #2C2C2C;
    --sand: #F5F3EF;
    --driftwood: #8B7355;
    --ocean: #4A6572;
    --fog: #9CA3AF;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--sand);
    color: var(--stone);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(245, 243, 239, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav.scrolled .logo {
    color: var(--stone);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.938rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.nav.scrolled .nav-links a {
    color: var(--stone);
}

.nav-links a:hover {
    color: var(--driftwood);
}

.nav-cta {
    padding: 0.875rem 1.75rem;
    background: var(--white);
    color: var(--stone);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--driftwood);
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.938rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--driftwood);
    color: var(--white);
}

.btn-primary:hover {
    background: #705d45;
}

.btn-secondary {
    background: transparent;
    color: var(--stone);
    border: 1px solid var(--stone);
}

.btn-secondary:hover {
    background: var(--stone);
    color: var(--white);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

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

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

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

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: fadeUp 1s ease 0.3s backwards;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 400;
    opacity: 0.9;
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: fadeUp 1s ease 0.5s backwards;
}

.hero .btn {
    animation: fadeUp 1s ease 0.7s backwards;
}

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

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--white), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.7; }
    50% { transform: scaleY(0.6); opacity: 0.4; }
}

/* Section Labels */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--driftwood);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Intro Section */
.intro {
    padding: 8rem 0;
    background: var(--white);
}

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

.intro-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--fog);
}

/* Rooms Section */
.rooms {
    padding: 6rem 0 8rem;
    background: var(--sand);
}

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

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.room-card {
    background: var(--white);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.room-card.featured {
    box-shadow: 0 15px 40px rgba(139, 115, 85, 0.15);
}

.room-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    background: var(--driftwood);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

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

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

.room-content {
    padding: 2rem;
}

.room-name {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.room-vibe {
    color: var(--fog);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.room-price {
    margin-bottom: 1.5rem;
}

.price-from {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fog);
    display: block;
    margin-bottom: 0.25rem;
}

.price-amount {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--stone);
}

.price-unit {
    font-size: 1rem;
    color: var(--fog);
}

.room-card .btn {
    width: 100%;
    text-align: center;
}

/* Image Break */
.image-break {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

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

.image-break-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.image-break-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.image-break blockquote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    color: var(--white);
    max-width: 800px;
    text-align: center;
    line-height: 1.5;
}

/* Amenities Section */
.amenities {
    padding: 8rem 0;
    background: var(--white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.amenities-text {
    font-size: 1.125rem;
    color: var(--fog);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.amenities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.amenity-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.amenity-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--driftwood);
    flex-shrink: 0;
}

.amenity-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.amenity-text p {
    font-size: 0.938rem;
    color: var(--fog);
    line-height: 1.5;
}

.amenities-image {
    position: relative;
}

.amenities-image img {
    width: 100%;
    height: auto;
}

/* Location Section */
.location {
    padding: 8rem 0;
    background: var(--sand);
}

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

.location-image img {
    width: 100%;
    height: auto;
}

.location-text {
    font-size: 1.125rem;
    color: var(--fog);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.location-details {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.location-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fog);
}

.detail-value {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
}

/* CTA Section */
.cta {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.cta-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.form-group input,
.form-group select {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    min-width: 180px;
    font-family: inherit;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    color: var(--stone);
}

.cta-note {
    font-size: 0.938rem;
    opacity: 0.8;
}

.cta-note a {
    color: var(--white);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--stone);
    color: var(--white);
    padding: 5rem 0 2rem;
}

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

.footer-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-brand address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.938rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .amenities-image {
        order: -1;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        padding: 0.75rem 1.25rem;
        font-size: 0.813rem;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .amenities-list {
        grid-template-columns: 1fr;
    }
    
    .cta-form {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .form-group input,
    .form-group select {
        min-width: auto;
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .location-details {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .intro,
    .amenities,
    .location {
        padding: 5rem 0;
    }
    
    .rooms {
        padding: 4rem 0 5rem;
    }
}

/* ==========================================
   NEW FEATURES - Loading Screen, Banners, etc.
   ========================================== */

/* Loading Screen */
.loader {
    position: fixed;
    inset: 0;
    background: var(--sand);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--stone);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.loader-line {
    width: 100px;
    height: 2px;
    background: rgba(139, 115, 85, 0.2);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loader-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 40%;
    background: var(--driftwood);
    animation: loading 1.2s ease infinite;
}

@keyframes loading {
    0% { left: -40%; }
    100% { left: 100%; }
}

/* Skip Link (Accessibility) */
.skip-link {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--stone);
    color: var(--white);
    padding: 1rem 2rem;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 1rem;
}

/* Seasonal Banner */
.seasonal-banner {
    background: linear-gradient(90deg, #2c3e50 0%, #3d5a73 50%, #2c3e50 100%);
    background-size: 200% 100%;
    animation: bannerGradient 8s ease infinite;
    color: var(--white);
    padding: 0.625rem 0;
    text-align: center;
    position: relative;
    z-index: 999;
    overflow: hidden;
}

@keyframes bannerGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.banner-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.seasonal-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.seasonal-banner p {
    font-size: 0.813rem;
    margin: 0;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seasonal-banner strong {
    font-weight: 600;
}

.banner-icon {
    display: inline-block;
    animation: snowfall 2s ease-in-out infinite;
}

@keyframes snowfall {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-2px) rotate(10deg); }
}

.banner-divider {
    opacity: 0.4;
}

.banner-close {
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    line-height: 1;
    border-radius: 2px;
}

.banner-close:hover {
    opacity: 1;
    background: rgba(255,255,255,0.2);
}

.seasonal-banner.hidden {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav.scrolled .mobile-menu-toggle span {
    background: var(--stone);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--sand);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-menu-content a {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    color: var(--stone);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu-content a:hover {
    color: var(--driftwood);
}

.mobile-menu-content .btn {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

/* Room Gallery Hint */
.room-gallery-hint {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-gallery-hint span {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--white);
}

.room-image {
    position: relative;
    cursor: pointer;
}

.room-image:hover .room-gallery-hint,
.room-image:focus .room-gallery-hint {
    opacity: 1;
}

/* Room Comparison Table */
.room-comparison {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-table {
    background: var(--white);
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: var(--stone);
    color: var(--white);
}

.comparison-header .comparison-cell {
    font-weight: 600;
    font-size: 0.875rem;
}

.comparison-cell {
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: 0.938rem;
}

.comparison-cell.label {
    text-align: left;
    font-weight: 500;
    color: var(--stone);
}

.comparison-cell:not(.label) {
    color: var(--fog);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
    background: var(--sand);
    transition: transform 0.3s ease;
}

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

.testimonial-stars {
    color: var(--driftwood);
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.testimonial-card blockquote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--stone);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 600;
    font-size: 0.938rem;
}

.author-date {
    font-size: 0.813rem;
    color: var(--fog);
}

/* Weather Widget */
.weather-widget {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(74, 101, 114, 0.1);
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.weather-icon {
    font-size: 2rem;
}

.weather-info {
    display: flex;
    flex-direction: column;
}

.weather-temp {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
}

.weather-desc {
    font-size: 0.813rem;
    color: var(--fog);
}

/* Itineraries Section */
.itineraries {
    padding: 6rem 0;
    background: var(--sand);
}

.itineraries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.itinerary-card {
    background: var(--white);
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.itinerary-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.itinerary-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.itinerary-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.itinerary-duration {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--driftwood);
    margin-bottom: 1rem;
}

.itinerary-card p {
    font-size: 0.938rem;
    color: var(--fog);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.itinerary-price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--stone);
}

/* Instagram Feed */
.instagram-feed {
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.instagram-feed h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

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

.instagram-item:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Footer Newsletter */
.footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
}

.footer-newsletter h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: inherit;
    font-size: 0.875rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.813rem;
}

.gift-card-link {
    color: var(--driftwood) !important;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

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

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Sticky Booking Bar */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    z-index: 990;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sticky-bar.visible {
    transform: translateY(0);
}

.sticky-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.sticky-bar-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.125rem;
    color: var(--white);
}

.sticky-bar-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sticky-bar-form input {
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: inherit;
    font-size: 0.875rem;
}

.sticky-bar-form .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.813rem;
}

/* Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 115, 85, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor-glow.visible {
    opacity: 1;
}

/* Focus States (Accessibility) */
a:focus,
button:focus,
input:focus,
select:focus {
    outline: 2px solid var(--driftwood);
    outline-offset: 2px;
}

.btn:focus {
    outline-offset: 4px;
}

/* Additional Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .seasonal-banner .container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .seasonal-banner p {
        font-size: 0.813rem;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-row {
        min-width: 500px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .itineraries-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-bar-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .sticky-bar-form {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .sticky-bar-form input {
        flex: 1;
        min-width: 120px;
    }
    
    .cursor-glow {
        display: none;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
    }
    
    .lightbox-prev {
        left: 0.5rem;
    }
    
    .lightbox-next {
        right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .room-comparison {
        display: none;
    }
    
    .weather-widget {
        width: 100%;
        justify-content: center;
    }
}
