/* Page-specific styles for karta.cfm. Shared chrome in /assets/app.css. */

:root {
            --deep: #ffffff; --navy: #f4f5f7; --slate: #e5e7eb;
            --gold: #f2ea25; --gold-light: #f5ef5a; --gold-dark: #c4bd00;
            --gold-glow: rgba(242, 234, 37, 0.12);
            --green: #234d35; --green-mid: #3a7d55;
            --green-glow: rgba(35, 77, 53, 0.08);
            --cream: #1a1a2e; --text-muted: #6b7280; --text-body: #374151;
            --glass: rgba(255, 255, 255, 0.92); --glass-border: rgba(0, 0, 0, 0.08);
            --radius: 16px; --radius-sm: 10px;
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Outfit', system-ui, sans-serif;
        }




/* ─── PAGE HERO ─── */
        .page-hero { padding: 10rem 3rem 4rem; text-align: center; background: var(--navy); }
        .page-hero .section-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 1rem; }
        .page-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: var(--cream); margin-bottom: 1rem; }
        .page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 560px; margin: 0 auto; line-height: 1.7; font-weight: 300; }

        section { padding: 5rem 3rem; }

        .section-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 1rem; }
        .section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--cream); margin-bottom: 1rem; line-height: 1.15; }

        /* ─── MAP ─── */
        .map-section { padding: 0 3rem 5rem; margin-top: -2rem; }

        .map-container {
            max-width: 1200px; margin: 0 auto;
            border-radius: var(--radius); overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }

        .map-container #map { width: 100%; height: 500px; display: block; }

        /* ─── PARKING LOCATIONS ─── */
        .locations-grid {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem; max-width: 1200px; margin: 0 auto;
        }

        .location-card {
            background: #fff; border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: var(--radius); padding: 2rem;
            transition: all 0.3s; position: relative;
        }

        .location-card:hover {
            border-color: rgba(35, 77, 53, 0.2); transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
        }

        .location-card-icon {
            width: 48px; height: 48px; border-radius: 12px;
            background: var(--green-glow); border: 1px solid rgba(35, 77, 53, 0.12);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.25rem; margin-bottom: 1.25rem;
        }

        .location-card h3 {
            font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
            color: var(--cream); margin-bottom: 0.5rem;
        }

        .location-card p {
            font-size: 0.9rem; color: var(--text-muted); line-height: 1.6;
        }

        /* ─── CONTENT ─── */
        .content-section { padding: 5rem 3rem 3rem; }
        .content-inner { max-width: 800px; margin: 0 auto; }
        .content-inner > h2.section-title { margin-bottom: 1.5rem; }
        .content-inner p {
            color: var(--text-body); font-size: 1.02rem;
            line-height: 1.75; margin-bottom: 1.25rem; font-weight: 300;
        }
        .content-inner h3 {
            font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
            color: var(--cream); margin-top: 2.5rem; margin-bottom: 1rem;
        }

        /* ─── IMAGE GALLERY ─── */
        .gallery-section { background: var(--navy); }

        .gallery-header { text-align: center; margin-bottom: 3rem; }

        .gallery-grid {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem; max-width: 1200px; margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 4/3; background: var(--slate);
            border-radius: var(--radius); border: 1px solid rgba(0, 0, 0, 0.06);
            overflow: hidden; transition: all 0.3s;
        }

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

        .gallery-item:hover {
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

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

        .gallery-caption {
            position: absolute; left: 0; right: 0; bottom: 0;
            padding: 1.5rem 1.25rem 1rem;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
            color: #fff; font-size: 0.85rem; font-weight: 500;
            letter-spacing: 0.04em;
        }

        /* ─── VIDEO SECTION ─── */
        .video-section { background: var(--navy); }

        .video-header { text-align: center; margin-bottom: 3rem; }

        .video-container {
            max-width: 900px; margin: 0 auto;
            aspect-ratio: 16/9; background: var(--slate);
            border-radius: var(--radius); border: 1px solid rgba(0, 0, 0, 0.06);
            overflow: hidden; display: flex; align-items: center; justify-content: center;
            position: relative; cursor: pointer;
        }

        .video-placeholder {
            position: absolute; inset: 0;
            text-align: center; color: #fff;
            background-image: url('https://img.youtube.com/vi/piscOKwFWpM/maxresdefault.jpg');
            background-size: cover; background-position: center;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
        }

        .video-placeholder::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 100%);
            transition: background 0.3s;
        }

        .video-container:hover .video-placeholder::before {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.35) 100%);
        }

        .video-placeholder > * { position: relative; z-index: 1; }

        .video-placeholder p {
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            font-weight: 500; transform: translateY(25px);
        }

        .video-placeholder .play-icon {
            width: 88px; height: 88px; border-radius: 50%;
            background: #fff; border: 2px solid #fff;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1rem; font-size: 2rem; color: #000;
            cursor: pointer; transition: all 0.3s;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            padding-left: 6px; transform: translateY(25px);
        }

        .video-container:hover .play-icon {
            background: #000; border-color: #000; color: var(--gold);
            transform: translateY(25px) scale(1.1);
        }

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

        /* ─── CONTACT INFO ─── */
        .contact-grid {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 3rem; max-width: 1000px; margin: 0 auto; align-items: start;
        }

        .contact-card {
            background: var(--navy); border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: var(--radius); padding: 2.5rem;
        }

        .contact-card h3 {
            font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
            color: var(--cream); margin-bottom: 1.5rem;
        }

        .contact-item-row {
            display: flex; align-items: flex-start; gap: 1rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }

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

        .contact-icon {
            width: 36px; height: 36px; border-radius: 50%;
            background: var(--green-glow); border: 1px solid rgba(35, 77, 53, 0.12);
            display: flex; align-items: center; justify-content: center;
            font-size: 0.9rem; flex-shrink: 0;
        }

        .contact-item-text { font-size: 0.9rem; }
        .contact-item-text .label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem; }
        .contact-item-text .value { color: var(--cream); font-weight: 500; }

        .coords-display {
            background: #fff; border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: var(--radius-sm); padding: 1.25rem;
            margin-top: 1rem;
        }

        .coords-display .label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
        .coords-display .value { font-family: monospace; font-size: 0.9rem; color: var(--green); font-weight: 600; }

        .btn-directions {
            display: inline-block; margin-top: 1.5rem;
            background: linear-gradient(135deg, var(--green), var(--green-mid));
            color: var(--gold); text-decoration: none;
            padding: 0.85rem 2rem; border-radius: var(--radius-sm);
            font-weight: 700; font-size: 0.85rem;
            letter-spacing: 0.08em; text-transform: uppercase; transition: all 0.3s;
        }

        .btn-directions:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(35, 77, 53, 0.3); }

@media (max-width: 768px) {
            .nav { padding: 0.6rem 1.5rem; }
            .nav-logo img { height: 90px; margin: 5px 0 -38px 0; }
            .nav-links { display: none; }
            .nav-hamburger { display: flex; }
            .page-hero { padding: 8rem 1.5rem 3rem; }
            section { padding: 3rem 1.5rem; }
            .map-section { padding: 0 1.5rem 3rem; }
            .map-container iframe { height: 300px; }
            .content-section { padding: 3rem 1.5rem 2rem; }
            .content-inner h3 { font-size: 1.3rem; }
            .locations-grid { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: 1fr 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
        }
