/* ====================================
   IGASTATUS - Modern & Cool CSS
   Istanbul Airport Flight Tracker
   ==================================== */

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

:root {
    /* Colors - Istanbul Theme */
    --primary-color: #e74c3c;      /* Turkish Airlines Red */
    --secondary-color: #2c3e50;    /* Dark Blue-Gray */
    --accent-color: #f39c12;       /* Golden Accent */
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #6b7280;
    --bg-light: #f8f9fa;
    --bg-dark: #0f172a;
    --bg-glass: rgba(255, 255, 255, 0.95);
    --bg-glass-dark: rgba(15, 23, 42, 0.95);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);

    /* Border Radius */
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

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

/* ====================================
   Navigation - Enhanced
   ==================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-logo img {
    height: 48px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.nav-logo img:hover {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transform: scale(1.05);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--text-light);
    border-radius: 24px;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.status-icon {
    font-size: 18px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.nav-stats {
    display: flex;
    gap: 32px;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 4px;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-background img,
.hero-background picture {
    width: 100%;
    height: 100%;
}

.hero-background img {
    object-fit: cover;
    object-position: center;
    transform: translateZ(0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.75), rgba(231, 76, 60, 0.55));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    padding: 0 24px;
}

.hero-logo {
    margin-bottom: 32px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
    animation: fadeInScale 1.2s ease-out;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 40px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-info {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    font-weight: 600;
}

.info-value {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-light);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.5; }
}

/* ====================================
   Main Content & Sections
   ==================================== */
.main-content {
    position: relative;
    z-index: 10;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto 16px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ====================================
   Quick Info Cards
   ==================================== */
.quick-info {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 60px 0;
}

.quick-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.quick-card {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.quick-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.15);
}

.quick-card:active {
    transform: translateY(-4px);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.quick-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.quick-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* ====================================
   Map Container
   ==================================== */
.map-container {
    width: 100%;
    height: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-glass);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ====================================
   Weather Section
   ==================================== */
.weather-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.weather-card {
    background: var(--text-light);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.weather-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.weather-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.weather-decode-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.weather-decode-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.checkwx-container {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-size: 14px;
    min-height: 80px;
    overflow-x: auto;
}

.weather-info {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.weather-info small {
    color: var(--text-muted);
    font-size: 13px;
}

.weather-tools {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.tool-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--text-light);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tool-link:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    background: var(--primary-color);
    color: var(--text-light);
}

.weather-map {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.weather-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ====================================
   Flights Section
   ==================================== */
.flights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 32px;
}

.flight-card {
    background: var(--text-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.flight-card:hover {
    box-shadow: var(--shadow-lg);
}

.flight-header {
    margin-bottom: 24px;
}

.flight-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.flight-widget {
    min-height: 400px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

/* ====================================
   Charts Section
   ==================================== */
.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.chart-card {
    position: relative;
    background: var(--text-light);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

.chart-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.chart-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.chart-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.chart-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.chart-card p {
    color: var(--text-muted);
    font-size: 14px;
}

.chart-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 12px;
    background: var(--accent-color);
    color: var(--text-light);
    font-size: 12px;
    font-weight: 700;
    border-radius: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ====================================
   ATC Section
   ==================================== */
.atc-container {
    max-width: 800px;
    margin: 0 auto;
}

.atc-card {
    background: var(--text-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}

.atc-info {
    margin-bottom: 24px;
}

.atc-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.atc-info p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.frequency-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.freq-label {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
}

.freq-value {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
}

.atc-card embed {
    width: 100%;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

/* ====================================
   Search Section
   ==================================== */
.search-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--text-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}

/* ====================================
   Loading States
   ==================================== */
.lazy-load-container,
.lazy-load-widget {
    position: relative;
    min-height: 400px;
}

.loading-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e5e7eb;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-placeholder p {
    margin-top: 16px;
    color: var(--text-muted);
    font-weight: 600;
}

/* ====================================
   Footer
   ==================================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 30px;
    margin-top: 80px;
}

/* Tribute Section */
.tribute-footer {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 40px 0;
    margin-bottom: 32px;
    border-bottom: 2px solid rgba(231, 76, 60, 0.3);
}

.tribute-image-small {
    flex-shrink: 0;
}

.tribute-image-small img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.3);
}

.tribute-text-small {
    flex: 1;
}

.tribute-text-small p {
    font-size: 15px;
    line-height: 1.8;
    margin: 12px 0;
    opacity: 0.95;
}

.tribute-text-small strong {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
}

.tribute-quote {
    font-style: italic;
    font-size: 16px !important;
    color: var(--accent-color);
    font-weight: 600 !important;
    margin: 16px 0 !important;
    padding: 12px 0;
    border-left: 3px solid var(--primary-color);
    padding-left: 16px;
}

.tribute-heart {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--primary-color);
    margin-top: 16px !important;
}

/* Footer Content */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.7;
}

.footer-love {
    font-size: 16px;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-links a:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
}

.footer-bottom {
    margin-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
    margin: 8px 0;
}

.footer-disclaimer {
    font-size: 12px !important;
    opacity: 0.6 !important;
}

.footer-disclaimer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-disclaimer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* ====================================
   Enhanced Polish & Elegance
   ==================================== */
body {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Enhanced scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Selection color */
::selection {
    background: var(--primary-color);
    color: var(--text-light);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--text-light);
}

/* ====================================
   Mobile Performance Optimizations
   ==================================== */

/* iOS Safari specific optimizations */
@supports (-webkit-touch-callout: none) {
    /* Disable heavy effects on iOS */
    .navbar,
    .quick-card,
    .info-card {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(255, 255, 255, 0.98) !important;
    }

    .quick-card {
        background: rgba(255, 255, 255, 0.2) !important;
    }

    /* Simplify animations on iOS */
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    /* Remove expensive shadows on iOS */
    .hero-logo,
    .hero-title,
    .hero-subtitle {
        text-shadow: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (hover: none) and (pointer: coarse) {
    .quick-card:hover,
    .weather-card:hover,
    .flight-card:hover,
    .chart-card:hover {
        transform: none;
    }

    .quick-card:active,
    .weather-card:active,
    .flight-card:active,
    .chart-card:active {
        transform: scale(0.98);
    }
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 1024px) {
    .nav-stats {
        gap: 16px;
    }

    .stat-value {
        font-size: 18px;
    }

    .weather-grid,
    .flights-grid {
        grid-template-columns: 1fr;
    }

    .map-container,
    .weather-map {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .navbar {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .nav-container {
        padding: 10px 16px;
        gap: 10px;
    }

    .nav-logo {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .nav-logo img {
        height: 36px;
        flex-shrink: 0;
    }

    .status-badge {
        font-size: 11px;
        padding: 6px 10px;
        margin-left: auto;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .nav-stats {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
    }

    .stat-item {
        flex: 1;
        min-width: 0;
    }

    .stat-label {
        font-size: 9px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.3;
    }

    .stat-value {
        font-size: 15px;
        line-height: 1.2;
    }

    .hero {
        min-height: 500px;
        height: 70vh;
    }

    .hero-background img {
        object-position: 60% center;
    }

    .hero-title {
        font-size: clamp(32px, 10vw, 48px);
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: clamp(14px, 3.5vw, 18px);
        margin-bottom: 24px;
    }

    .hero-info {
        gap: 12px;
        margin-bottom: 32px;
    }

    .info-card {
        padding: 12px 20px;
    }

    .hero-scroll {
        display: none;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: clamp(24px, 6vw, 32px);
    }

    .quick-info {
        padding: 40px 0;
    }

    .quick-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .quick-card {
        padding: 20px 16px;
    }

    .map-container,
    .weather-map {
        height: 350px;
    }

    .weather-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .weather-card {
        padding: 20px;
    }

    .flights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .flight-card {
        padding: 20px;
    }

    .charts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer {
        padding: 40px 0 20px;
        margin-top: 40px;
    }

    .tribute-footer {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 32px 0;
    }

    .tribute-image-small img {
        width: 100px;
        height: 100px;
    }

    .tribute-text-small p {
        font-size: 14px;
    }

    .tribute-quote {
        font-size: 15px !important;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

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

    .nav-container {
        padding: 10px 12px;
    }

    .nav-logo img {
        height: 32px;
    }

    .status-badge {
        font-size: 10px;
        padding: 5px 8px;
    }

    .stat-label {
        font-size: 8px;
    }

    .stat-value {
        font-size: 14px;
    }

    .hero {
        min-height: 400px;
        height: 60vh;
    }

    .hero-title {
        font-size: clamp(28px, 9vw, 40px);
    }

    .section {
        padding: 32px 0;
    }

    .quick-cards {
        grid-template-columns: 1fr;
    }

    .map-container,
    .weather-map {
        height: 300px;
    }

    .tribute-footer {
        padding: 24px 0;
    }

    .tribute-image-small img {
        width: 80px;
        height: 80px;
    }

    .tribute-text-small p {
        font-size: 13px;
        line-height: 1.6;
    }

    .tribute-quote {
        font-size: 14px !important;
        padding-left: 12px;
    }
}

/* ====================================
   Print Styles
   ==================================== */
@media print {
    .navbar,
    .hero,
    .footer,
    .search-container {
        display: none;
    }

    .section {
        page-break-inside: avoid;
    }
}
