/* =============================================================
   RESERVATION / NAVIGATION PAGE — reservation.php
   ============================================================= */

/* ── Hero CTA row ── */
.hero-nav-cta-row {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-top: var(--space-4);
}

/* ── Quick info bar (below hero) ── */
.nav-info-bar {
    background: rgba(15, 23, 42, 0.85);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-info-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 14px 0;
}

.nav-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 4px 20px;
}

.nav-info-item svg {
    stroke: var(--accent-light);
    flex-shrink: 0;
}

.nav-info-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.nav-info-item a:hover {
    color: var(--accent-light);
}

.nav-info-sep {
    width: 1px;
    height: 20px;
    background: var(--glass-border);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .nav-info-items {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
        gap: 8px;
    }
    .nav-info-sep { display: none; }
    .nav-info-item { padding: 0 4px; }
}

/* ── Contacts grid ── */
.nav-contacts-section {
    background: rgba(30, 41, 59, 0.35);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.nav-contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.nav-contact-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
    transition: border-color var(--transition-normal), transform var(--transition-normal);
}

.nav-contact-card:hover {
    border-color: var(--accent-muted);
    transform: translateY(-3px);
}

.nav-contact-icon {
    width: 46px;
    height: 46px;
    background: var(--accent-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-light);
    fill: none;
    stroke-width: 1.8;
}

.nav-contact-body { flex: 1; min-width: 0; }

.nav-contact-body h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 6px;
}

.nav-contact-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 12px;
    line-height: 1.4;
}

.nav-phone-link {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: 6px;
    transition: color var(--transition-fast);
}

.nav-phone-link:hover { color: var(--accent-light); }

.nav-call-btn {
    font-size: 14px;
    padding: 10px 20px;
}







/* --- ДОБАВЬТЕ ЭТОТ БЛОК --- */
.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff; /* Цвет текста — белый */
    font-weight: 500;
    transition: opacity 0.2s;
}

/* Цвет для Яндекса */
.map-btn.yandex {
    background-color: #6890a8; /* Ярко-красный */
}

/* Цвет для Google */
.map-btn.google {
    background-color: #587898; /* Синий */
}

/* Эффект при наведении (кнопка станет чуть прозрачнее) */
.map-btn:hover {
    opacity: 0.9;
}
/* -------------------------- */

/* Ваш существующий код (оставляем как есть) */
.nav-map-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .nav-contacts-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .nav-contacts-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    .nav-contact-card { padding: var(--space-3); }
    .hero-nav-cta-row { flex-direction: column; }
    .hero-nav-cta-row .btn-premium { text-align: center; justify-content: center; }
}

@media (max-width: 768px) {
    .nav-map-btns { flex-direction: column; }
    .map-btn { justify-content: center; text-align: center; }
}
