:root {
    --dark: #1a1a1a;
    --accent: #e63946; /* Акцентний колір */
    --light: #f4f4f4;
    --text: #333;
    --white: #ffffff;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

.navbar {
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar__brand {
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-phone-main {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/header-bg.jpg') no-repeat center;
    background-size: cover;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 { font-size: 3rem; margin-bottom: 10px; text-transform: uppercase; }
.hero h1 span { color: var(--accent); }

.section { padding: 40px 20px; }
.section__inner { max-width: 800px; margin: 0 auto; text-align: center; }

.bg-light { background: var(--light); }

.info-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 1px solid #ddd;
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn--primary {
    background: var(--accent);
    color: white;
}

.btn--primary:hover {
    background: #bd2a36;
}

/* Hero Content */
.hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.hero__cta {
    margin-top: 30px;
}

/* Address Block */
.address-block {
    margin-top: 30px;
    padding: 20px;
    border: 1px dashed var(--dark);
    font-weight: 700;
}

/* Дополнительно: Кнопка Viber, чтобы была в одном стиле */
.btn-viber {
    display: inline-block;
    background: #7360F2;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
}

.price-highlight {
    margin-top: 30px;
    padding: 20px;
    background: var(--dark);
    color: white;
    display: inline-block;
    border-radius: 4px;
}

.price-highlight strong { display: block; font-size: 1.5rem; color: var(--accent); }

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-top: 30px;
    border-radius: 12px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-grid {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

.contact-item {
    background: var(--light);
    padding: 20px;
    border-radius: 4px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    transition: 0.3s;
}

.contact-item:hover { background: var(--accent); color: white; }

.contact-item.main {
    grid-column: 1 / -1;
    background: var(--dark);
    color: white;
    font-size: 1.5rem;
}

.contact-item.main span { display: block; font-size: 0.9rem; font-weight: 400; opacity: 0.8; }

.footer { background: var(--dark); color: white; text-align: center; padding: 20px; font-size: 0.8rem; }

@media (max-width: 900px) {
    .navbar { padding: 10px 15px; }
    .navbar__inner { flex-direction: column; gap: 10px; } /* Складываем в столбик, если места совсем мало */
    .hero { padding: 60px 20px; } /* Делаем hero компактнее */
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
    /* Уменьшаем телефон в шапке, чтобы не переносился */
    .nav-phone-main { font-size: 0.9rem; }

    /* Делаем блок с ценой компактнее */
    .price-highlight {
        padding: 15px;
        width: 90%;
    }
    .price-highlight strong { font-size: 1.2rem; }

    /* Уменьшаем главный заголовок */
    .hero h1 { font-size: 1.8rem; }
}