/* ============================================
   BASE STYLES & COMPONENTS
   ============================================ */

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Header & Navigation */
.site-header {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

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

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

.nav-links a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #1a1a1a;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.nav-dropdown-item:hover {
    background-color: #f5f5f5;
    opacity: 1;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Footer */
.site-footer {
    padding: 3rem 2rem;
    background: #f5f5f5;
    text-align: center;
    margin-top: 4rem;
}

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

.footer-text {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Hero Component */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Calendar Component */
.calendar-component {
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.calendar-header h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.calendar-container {
    margin-bottom: 1.5rem;
}

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

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    padding: 0.5rem;
    font-size: 0.9rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.calendar-day:hover:not(.past):not(.unavailable) {
    transform: scale(1.05);
}

.calendar-day.past {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-day.unavailable {
    background: #ffcccc;
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-day.selected {
    font-weight: 700;
}

.calendar-day.in-range {
    opacity: 0.7;
}

.calendar-day.empty {
    border: none;
    cursor: default;
}

.selected-dates {
    margin-top: 1.5rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.date-display {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.date-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.date-value {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Booking Form */
.booking-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: currentColor;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-textarea {
    resize: vertical;
}

.btn-primary {
    width: 100%;
    padding: 1rem;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.error-message {
    background: #fee;
    color: #c33;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.error-message ul {
    list-style: none;
}

.success-message {
    background: #efe;
    color: #3c3;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

/* Section Styles */
.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.2;
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Glassmorphism Effect */
.glass-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   THEME 1: SERENITY IGLOO - Nordic Spa Romance
   ============================================ */

.theme-igloo-romantic {
    background: linear-gradient(135deg, #F8F8FA 0%, #E8ECF1 100%);
    color: #1F2E2E;
    font-family: 'Inter', sans-serif;
}

.theme-igloo-romantic .site-header {
    background: rgba(248, 248, 250, 0.95);
    border-bottom-color: rgba(201, 212, 223, 0.3);
}

.theme-igloo-romantic .hero-section {
    background: linear-gradient(135deg, rgba(248, 248, 250, 0.9) 0%, rgba(201, 212, 223, 0.9) 100%);
    position: relative;
}

.theme-igloo-romantic .hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.6"/><circle cx="80" cy="40" r="1.5" fill="white" opacity="0.5"/><circle cx="40" cy="70" r="2" fill="white" opacity="0.4"/><circle cx="70" cy="80" r="1" fill="white" opacity="0.6"/></svg>');
    animation: float 20s infinite ease-in-out;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.theme-igloo-romantic .hero-overlay {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

.theme-igloo-romantic .hero-title {
    font-family: 'Playfair Display', serif;
    color: #1F2E2E;
    text-shadow: none;
}

.theme-igloo-romantic .hero-subtitle {
    color: #1F2E2E;
    text-shadow: none;
}

.theme-igloo-romantic .hero-cta {
    background: linear-gradient(135deg, #F6C178 0%, #E5A35B 100%);
    color: #1F2E2E;
}

.theme-igloo-romantic .calendar-component {
    background: rgba(248, 248, 250, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 212, 223, 0.3);
    box-shadow: 0 8px 32px rgba(31, 46, 46, 0.1);
}

.theme-igloo-romantic .calendar-day.selected {
    background: linear-gradient(135deg, #F6C178 0%, #E5A35B 100%);
    color: #1F2E2E;
}

.theme-igloo-romantic .btn-primary {
    background: linear-gradient(135deg, #F6C178 0%, #E5A35B 100%);
    color: #1F2E2E;
}

.theme-igloo-romantic .section {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    margin: 2rem auto;
    box-shadow: 0 4px 20px rgba(31, 46, 46, 0.05);
}

/* ============================================
   THEME 2: PRIMITIVE CAMPSITES - Rugged Earthy
   ============================================ */

.theme-camp-earthy {
    background: #D7C8A9;
    color: #5A4630;
    font-family: 'Source Sans Pro', sans-serif;
}

.theme-camp-earthy .site-header {
    background: rgba(215, 200, 169, 0.95);
    border-bottom-color: rgba(90, 70, 48, 0.2);
}

.theme-camp-earthy .hero-section {
    background: linear-gradient(135deg, #5A4630 0%, #6B7B47 100%);
}

.theme-camp-earthy .hero-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.theme-camp-earthy .hero-cta {
    background: #E08747;
    color: white;
    border: 2px solid #5A4630;
}

.theme-camp-earthy .calendar-component {
    background: #D7C8A9;
    border: 2px solid #5A4630;
    box-shadow: 4px 4px 0 #5A4630;
}

.theme-camp-earthy .calendar-day {
    border-color: #5A4630;
    border-width: 2px;
}

.theme-camp-earthy .calendar-day.selected {
    background: #E08747;
    color: white;
}

.theme-camp-earthy .btn-primary {
    background: #E08747;
    color: white;
    border: 2px solid #5A4630;
}

.theme-camp-earthy .section {
    background: rgba(215, 200, 169, 0.8);
    border: 2px solid #5A4630;
    border-radius: 0;
}

/* Topo line animation */
.theme-camp-earthy .topo-line {
    stroke: #5A4630;
    stroke-width: 1;
    fill: none;
    animation: drawLine 2s ease-in-out;
}

@keyframes drawLine {
    from { stroke-dasharray: 1000; stroke-dashoffset: 1000; }
    to { stroke-dasharray: 1000; stroke-dashoffset: 0; }
}

/* ============================================
   THEME 3: RV PARKING - Modern Tech
   ============================================ */

.theme-rv-tech {
    background: #404B55;
    color: #C9CED3;
    font-family: 'Roboto', sans-serif;
}

.theme-rv-tech .site-header {
    background: rgba(64, 75, 85, 0.95);
    border-bottom-color: rgba(59, 167, 245, 0.3);
}

.theme-rv-tech .hero-section {
    background: linear-gradient(135deg, #3BA7F5 0%, #2A4735 100%);
}

.theme-rv-tech .hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.theme-rv-tech .hero-cta {
    background: #3BA7F5;
    color: white;
    border: 2px solid #C9CED3;
}

.theme-rv-tech .calendar-component {
    background: #2A4735;
    border: 2px solid #3BA7F5;
    box-shadow: 0 0 20px rgba(59, 167, 245, 0.3);
}

.theme-rv-tech .calendar-day {
    border-color: #3BA7F5;
    color: #C9CED3;
}

.theme-rv-tech .calendar-day.selected {
    background: #3BA7F5;
    color: white;
    box-shadow: 0 0 10px rgba(59, 167, 245, 0.5);
}

.theme-rv-tech .calendar-day:hover:not(.past):not(.unavailable) {
    box-shadow: 0 0 8px rgba(59, 167, 245, 0.4);
}

.theme-rv-tech .btn-primary {
    background: #3BA7F5;
    color: white;
}

.theme-rv-tech .section {
    background: rgba(42, 71, 53, 0.6);
    border: 1px solid #3BA7F5;
}

/* Grid lines animation */
.theme-rv-tech .grid-line {
    stroke: #3BA7F5;
    stroke-width: 1;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* ============================================
   THEME 4: THE CABIN - Luxury Rustic
   ============================================ */

.theme-cabin-luxury {
    background: #0D0C0B;
    color: #E5A35B;
    font-family: 'Inter', sans-serif;
}

.theme-cabin-luxury .site-header {
    background: rgba(13, 12, 11, 0.95);
    border-bottom-color: rgba(229, 163, 91, 0.2);
}

.theme-cabin-luxury .hero-section {
    background: linear-gradient(135deg, #0D0C0B 0%, #3A2E22 100%);
}

.theme-cabin-luxury .hero-title {
    font-family: 'Lora', serif;
    color: #E5A35B;
    text-shadow: 0 0 20px rgba(229, 163, 91, 0.5);
}

.theme-cabin-luxury .hero-subtitle {
    color: #F2EEEA;
}

.theme-cabin-luxury .hero-cta {
    background: #E5A35B;
    color: #0D0C0B;
    box-shadow: 0 0 20px rgba(229, 163, 91, 0.4);
}

.theme-cabin-luxury .calendar-component {
    background: #3A2E22;
    border: 1px solid #E5A35B;
    box-shadow: 0 0 30px rgba(229, 163, 91, 0.2);
}

.theme-cabin-luxury .calendar-day {
    border-color: #E5A35B;
    color: #F2EEEA;
}

.theme-cabin-luxury .calendar-day.selected {
    background: #E5A35B;
    color: #0D0C0B;
}

.theme-cabin-luxury .btn-primary {
    background: #E5A35B;
    color: #0D0C0B;
}

.theme-cabin-luxury .section {
    background: rgba(58, 46, 34, 0.8);
    border: 1px solid rgba(229, 163, 91, 0.3);
}

/* Mode Toggle */
.mode-toggle {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
}

.mode-toggle button {
    padding: 0.75rem 2rem;
    border: 2px solid #E5A35B;
    background: transparent;
    color: #E5A35B;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.mode-toggle button.active {
    background: #E5A35B;
    color: #0D0C0B;
}

/* ============================================
   THEME 5: MICRO PLOTS - Blueprint
   ============================================ */

.theme-blueprint {
    background: #FFFFFF;
    color: #1C4E8C;
    font-family: 'Roboto Condensed', sans-serif;
}

.theme-blueprint .site-header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: #1C4E8C;
}

.theme-blueprint .hero-section {
    background: linear-gradient(135deg, #1C4E8C 0%, #ADB5BD 100%);
    position: relative;
}

.theme-blueprint .hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.1) 2px, rgba(255,255,255,0.1) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.1) 2px, rgba(255,255,255,0.1) 4px);
    opacity: 0.3;
}

.theme-blueprint .hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: white;
}

.theme-blueprint .hero-cta {
    background: #F9C74F;
    color: #1C4E8C;
    border: 2px solid #1C4E8C;
}

.theme-blueprint .calendar-component {
    background: #FFFFFF;
    border: 2px solid #1C4E8C;
    box-shadow: 0 4px 0 #1C4E8C;
}

.theme-blueprint .calendar-day {
    border-color: #1C4E8C;
    color: #1C4E8C;
}

.theme-blueprint .calendar-day.selected {
    background: #1C4E8C;
    color: white;
}

.theme-blueprint .btn-primary {
    background: #1C4E8C;
    color: white;
}

.theme-blueprint .section {
    background: #FFFFFF;
    border: 2px solid #1C4E8C;
    position: relative;
}

.theme-blueprint .section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px dashed #1C4E8C;
    pointer-events: none;
}

/* Blueprint line animation */
.theme-blueprint .blueprint-line {
    stroke: #1C4E8C;
    stroke-width: 1;
    fill: none;
    stroke-dasharray: 5,5;
    animation: dash 1s linear infinite;
}

@keyframes dash {
    to { stroke-dashoffset: -10; }
}

/* ============================================
   THEME 6: LAND TOURS - Clean Nature
   ============================================ */

.theme-tours {
    background: #F7F9FB;
    color: #2D3E2F;
    font-family: 'Open Sans', sans-serif;
}

.theme-tours .site-header {
    background: rgba(247, 249, 251, 0.95);
    border-bottom-color: rgba(141, 170, 133, 0.3);
}

.theme-tours .hero-section {
    background: linear-gradient(135deg, #8DAA85 0%, #2D3E2F 100%);
}

.theme-tours .hero-title {
    font-family: 'Avenir Next', sans-serif;
    font-weight: 600;
    color: white;
}

.theme-tours .hero-cta {
    background: #8DAA85;
    color: white;
}

.theme-tours .calendar-component {
    background: #F7F9FB;
    border: 1px solid #8DAA85;
    box-shadow: 0 2px 10px rgba(141, 170, 133, 0.1);
}

.theme-tours .calendar-day {
    border-color: #8DAA85;
    color: #2D3E2F;
}

.theme-tours .calendar-day.selected {
    background: #8DAA85;
    color: white;
}

.theme-tours .btn-primary {
    background: #8DAA85;
    color: white;
}

.theme-tours .section {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(141, 170, 133, 0.1);
}

/* Trail path animation */
.theme-tours .trail-path {
    stroke: #8DAA85;
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawTrail 3s ease-in-out forwards;
}

@keyframes drawTrail {
    to { stroke-dashoffset: 0; }
}

/* ============================================
   THEME 7: IGLOO VILLAGE - Winter Resort
   ============================================ */

.theme-resort {
    background: #F9F9FA;
    color: #2C5240;
    font-family: 'Inter', sans-serif;
}

.theme-resort .site-header {
    background: rgba(249, 249, 250, 0.95);
    border-bottom-color: rgba(44, 82, 64, 0.2);
}

.theme-resort .hero-section {
    background: linear-gradient(135deg, #2C5240 0%, #3D454D 100%);
}

.theme-resort .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #CBAA5A;
    text-shadow: 0 0 20px rgba(203, 170, 90, 0.3);
}

.theme-resort .hero-subtitle {
    color: #F9F9FA;
}

.theme-resort .hero-cta {
    background: #CBAA5A;
    color: #2C5240;
    box-shadow: 0 0 20px rgba(203, 170, 90, 0.4);
}

.theme-resort .calendar-component {
    background: rgba(249, 249, 250, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(44, 82, 64, 0.2);
    box-shadow: 0 8px 32px rgba(44, 82, 64, 0.1);
}

.theme-resort .calendar-day {
    border-color: #2C5240;
    color: #2C5240;
}

.theme-resort .calendar-day.selected {
    background: #CBAA5A;
    color: #2C5240;
}

.theme-resort .btn-primary {
    background: #CBAA5A;
    color: #2C5240;
}

.theme-resort .section {
    background: rgba(249, 249, 250, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(44, 82, 64, 0.1);
    border-radius: 20px;
}

/* Igloo glow animation */
.theme-resort .igloo-glow {
    filter: drop-shadow(0 0 10px rgba(203, 170, 90, 0.5));
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(203, 170, 90, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(203, 170, 90, 0.8)); }
}

/* ============================================
   THEME 8: PHOTO STUDIO - Editorial
   ============================================ */

.theme-editorial {
    background: #FFFFFF;
    color: #0B0B0B;
    font-family: 'Helvetica Neue', sans-serif;
}

.theme-editorial .site-header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #0B0B0B;
}

.theme-editorial .hero-section {
    background: linear-gradient(135deg, #0B0B0B 0%, #CCCCCC 100%);
    min-height: 80vh;
}

.theme-editorial .hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 4rem;
    color: white;
    letter-spacing: -2px;
}

.theme-editorial .hero-subtitle {
    color: #D9CABA;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.theme-editorial .hero-cta {
    background: #0B0B0B;
    color: white;
    border: 1px solid white;
    border-radius: 0;
    padding: 1.2rem 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.theme-editorial .calendar-component {
    background: #FFFFFF;
    border: 1px solid #0B0B0B;
    border-radius: 0;
}

.theme-editorial .calendar-day {
    border-color: #0B0B0B;
    border-radius: 0;
    color: #0B0B0B;
}

.theme-editorial .calendar-day.selected {
    background: #0B0B0B;
    color: white;
}

.theme-editorial .btn-primary {
    background: #0B0B0B;
    color: white;
    border-radius: 0;
    border: 1px solid #0B0B0B;
}

.theme-editorial .section {
    background: #FFFFFF;
    border-top: 1px solid #0B0B0B;
    border-bottom: 1px solid #0B0B0B;
    border-radius: 0;
}

/* Golden hour highlight */
.theme-editorial .golden-hour {
    background: linear-gradient(90deg, #F9C74F 0%, #E5A35B 100%);
    padding: 0.5rem 1rem;
    color: #0B0B0B;
    font-weight: 600;
}

/* ============================================
   THEME 9: AIRSTREAM - Retro Modern
   ============================================ */

.theme-retro {
    background: #C7C7C7;
    color: #2E2E2E;
    font-family: 'Roboto', sans-serif;
}

.theme-retro .site-header {
    background: rgba(199, 199, 199, 0.95);
    border-bottom-color: rgba(46, 46, 46, 0.2);
}

.theme-retro .hero-section {
    background: linear-gradient(135deg, #84B7DF 0%, #D1B38D 100%);
    position: relative;
}

.theme-retro .hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.theme-retro .hero-title {
    font-family: 'Futura', sans-serif;
    font-weight: 700;
    color: #2E2E2E;
    text-shadow: 2px 2px 0 rgba(255,255,255,0.5);
}

.theme-retro .hero-cta {
    background: #2E2E2E;
    color: white;
    border-radius: 50px;
    border: 3px solid #84B7DF;
}

.theme-retro .calendar-component {
    background: #D1B38D;
    border: 3px solid #2E2E2E;
    border-radius: 20px;
    box-shadow: 8px 8px 0 #2E2E2E;
}

.theme-retro .calendar-day {
    border-color: #2E2E2E;
    border-width: 2px;
    color: #2E2E2E;
    border-radius: 8px;
}

.theme-retro .calendar-day.selected {
    background: #84B7DF;
    color: white;
}

.theme-retro .btn-primary {
    background: #2E2E2E;
    color: white;
    border-radius: 50px;
}

.theme-retro .section {
    background: rgba(209, 179, 141, 0.6);
    border: 3px solid #2E2E2E;
    border-radius: 20px;
}

/* ============================================
   THEME 10: CO-WORKING - Minimal Apple-like
   ============================================ */

.theme-minimal {
    background: #FAFAFA;
    color: #3A3A3A;
    font-family: 'Inter', sans-serif;
}

.theme-minimal .site-header {
    background: rgba(250, 250, 250, 0.95);
    border-bottom: 1px solid rgba(58, 58, 58, 0.1);
}

.theme-minimal .hero-section {
    background: linear-gradient(135deg, #FAFAFA 0%, #A4C2E8 100%);
}

.theme-minimal .hero-overlay {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
}

.theme-minimal .hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #3A3A3A;
    text-shadow: none;
    font-size: 3rem;
    letter-spacing: -1px;
}

.theme-minimal .hero-subtitle {
    color: #3A3A3A;
    text-shadow: none;
    font-weight: 400;
}

.theme-minimal .hero-cta {
    background: #3A3A3A;
    color: white;
    border-radius: 50px;
    font-weight: 500;
}

.theme-minimal .calendar-component {
    background: #FFFFFF;
    border: 1px solid rgba(58, 58, 58, 0.1);
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.theme-minimal .calendar-day {
    border-color: rgba(58, 58, 58, 0.1);
    color: #3A3A3A;
    border-radius: 8px;
}

.theme-minimal .calendar-day.selected {
    background: #3A3A3A;
    color: white;
}

.theme-minimal .btn-primary {
    background: #3A3A3A;
    color: white;
    border-radius: 50px;
}

.theme-minimal .section {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

/* Focus mode animation */
.theme-minimal .focus-mode {
    background: #B48A64;
    color: white;
    padding: 2rem;
    border-radius: 16px;
    animation: fadeIn 0.5s ease-in;
}

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   THEME 11: HYBRID WEEKEND - Premium Curation
   ============================================ */

.theme-premium {
    background: linear-gradient(135deg, #F8F8F8 0%, #758E75 100%);
    color: #1A1A1A;
    font-family: 'Inter', sans-serif;
}

.theme-premium .site-header {
    background: rgba(248, 248, 248, 0.95);
    border-bottom-color: rgba(198, 162, 94, 0.3);
}

.theme-premium .hero-section {
    background: linear-gradient(135deg, #1A1A1A 0%, #758E75 100%);
    min-height: 80vh;
    position: relative;
}

.theme-premium .hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(198, 162, 94, 0.1) 33%, transparent 66%),
        linear-gradient(0deg, transparent 0%, rgba(198, 162, 94, 0.1) 33%, transparent 66%);
    pointer-events: none;
}

.theme-premium .hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #C6A25E;
    text-shadow: 0 0 30px rgba(198, 162, 94, 0.5);
    font-size: 4rem;
}

.theme-premium .hero-subtitle {
    color: #F8F8F8;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.theme-premium .hero-cta {
    background: #C6A25E;
    color: #1A1A1A;
    padding: 1.2rem 3rem;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(198, 162, 94, 0.4);
}

.theme-premium .calendar-component {
    background: rgba(248, 248, 248, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid #C6A25E;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(198, 162, 94, 0.2);
}

.theme-premium .calendar-day {
    border-color: #C6A25E;
    color: #1A1A1A;
    border-radius: 8px;
}

.theme-premium .calendar-day.selected {
    background: #C6A25E;
    color: #1A1A1A;
    box-shadow: 0 0 15px rgba(198, 162, 94, 0.5);
}

.theme-premium .btn-primary {
    background: #C6A25E;
    color: #1A1A1A;
    border-radius: 12px;
    padding: 1.2rem 2rem;
}

.theme-premium .section {
    background: rgba(248, 248, 248, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(198, 162, 94, 0.2);
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(198, 162, 94, 0.1);
}

/* Experience timeline */
.theme-premium .experience-timeline {
    position: relative;
    padding: 2rem 0;
}

.theme-premium .experience-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #C6A25E;
    transform: translateX(-50%);
}

.theme-premium .timeline-item {
    position: relative;
    padding: 2rem;
    margin: 2rem 0;
    background: rgba(248, 248, 248, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(198, 162, 94, 0.3);
}

/* ============================================
   BOOKING BUTTONS (for service pages)
   ============================================ */

.booking-buttons-section {
    margin: 2rem 0;
    padding: 2rem 0;
}

.booking-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

.booking-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.booking-text {
    white-space: nowrap;
}

.booking-buttons-small {
    gap: 0.5rem;
}

.booking-btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    gap: 0.5rem;
}

.booking-icon-small {
    width: 16px;
    height: 16px;
}

.booking-text-small {
    font-size: 0.85rem;
}

.booking-buttons-default {
    gap: 1rem;
}

.booking-btn-default {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.booking-icon-default {
    width: 20px;
    height: 20px;
}

.booking-text-default {
    font-size: 1rem;
}

.booking-fallback {
    text-align: center;
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
    padding: 1rem;
}

.service-card-booking {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-booking .booking-buttons-container {
    justify-content: flex-start;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .section {
        padding: 2rem 1rem;
    }
    
    .calendar-grid {
        gap: 0.25rem;
    }
    
    .calendar-day {
        font-size: 0.8rem;
    }
    
    /* Booking buttons mobile */
    .booking-buttons-container {
        flex-direction: column;
        width: 100%;
    }
    
    .booking-btn {
        width: 100%;
        justify-content: center;
    }
}
