/* style.css */
:root {
    --primary: #0A192F;
    --accent: #FF8C00;
    --light: #F4F7F6;
    --text: #333;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Шапка */
.navbar {
    background-color: var(--primary);
    padding: 15px 0;
}
.navbar-brand {
    display: flex;
    align-items: center;
}
.navbar-brand img {
    height: 60px; /* Логотип побольше */
    margin-right: 15px;
}
.brand-text {
    font-size: 3rem; /* Увеличили текст ELBRUS LTD в 2 раза */
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: 1px;
}
.nav-link {
    color: white !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.nav-link:hover {
    color: var(--accent) !important;
}

/* Телефоны */
.header-phones {
    color: white;
    font-size: 0.9rem;
    text-align: right;
}
.phone-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 8px;
}
.phone-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}
.social-icon {
    color: var(--accent);
    font-size: 1.3rem;
    transition: 0.3s;
}
.social-icon:hover {
    color: white;
}

/* Герой */
.hero {
    /* Замените на ссылку на ваше главное фото */
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.7)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

/* Карточки */
.service-card, .cat-card {
    background: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}
.service-card:hover, .cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Галерея */
.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
    border: 1px solid #ddd;
}
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    cursor: pointer;
}
.gallery-item:hover .gallery-img {
    opacity: 0.8;
    transform: scale(1.05);
}
video.gallery-img {
    object-fit: contain; /* Видео вписывается полностью */
    background: black;
}

/* Футер */
footer {
    background-color: var(--primary);
    color: rgba(255,255,255,0.7);
    margin-top: auto;
    padding: 40px 0;
}