/* Extracted critical CSS from index.html - Above the Fold */
:root {
    --primary-blue: #1e3a8a;
    --primary-navy: #1e3a8a;
    --dark-blue: #1e3a8a;
    --light-blue: #dbeafe;
    --background-gray: #f8fafc;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --border-gray: #e5e7eb;
    --transition-normal: 0.3s ease;
    --radius-md: 12px;
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mobile Menu Button - Critical for Navigation */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--primary-blue);
    font-weight: 700;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Header - Critical for Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: background 0.3s ease;
    padding: 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 48px;
    max-width: 160px;
    object-fit: contain;
}

/* Hero Section - Critical Above-the-Fold */
.hero {
    position: relative;
    color: var(--dark-blue);
    padding: 80px 1rem 2rem;
    overflow: hidden;
    margin-top: 80px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark-blue);
}

.hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-hero-booking,
.btn-hero-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), #2563eb);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 48px;
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.3);
}

.btn-hero-booking:hover,
.btn-hero-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    .hero { padding: 60px 1rem 2rem; min-height: 40vh; }
    .hero h1 { font-size: 1.6rem; }
    .hero p { font-size: 0.9rem; }
    .btn-hero-booking, .btn-hero-call { padding: 0.9rem 1.5rem; font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .hero { padding: 50px 1rem 2rem; min-height: 35vh; }
    .hero h1 { font-size: 1.4rem; }
    .hero p { font-size: 0.85rem; }
    .hero-buttons { gap: 0.8rem; }
}

/* Loading States */
.loading { opacity: 0.7; pointer-events: none; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn-hero-booking, .btn-hero-call {
        min-height: 48px;
        padding: 1.2rem 2rem;
    }
}

/* Responsive hide rules extracted */
@media (max-width: 1023px) {
  .weather-widget-always,
  .faq-widget,
  .sticky-call-btn {
    display: none !important;
  }
}
