﻿body {
    padding-top: 76px;
    background: #222;
}

/* Герой-секция с видеофоном */
.hero-section {
    position: relative;
    background: #000;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: -76px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    opacity: 0.35;
    filter: brightness(0.7);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

    .hero-content h1 {
        font-size: 4rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        display: inline-block;
        padding-right: 20px;
    }

    .hero-content .lead {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        color: #f0f0f0;
    }

.section-title {
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
    border-bottom: 4px solid #00bc8c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: #2c3e50;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

    .card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 35px rgba(0,188,140,0.2);
        border-bottom: 3px solid #00bc8c;
    }

.card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.filter-btn-group {
    margin-bottom: 2.5rem;
}

.btn-filter {
    margin: 0.25rem;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.modal-content {
    background: #2c3e50;
    border-radius: 16px;
}

.modal-body img {
    max-height: 450px;
    object-fit: contain;
    width: 100%;
    background: #1a1a1a;
    border-radius: 8px;
}

.carousel-item img {
    max-height: 450px;
    object-fit: contain;
    background: #1a1a1a;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    color: #00bc8c;
    text-shadow: 0 0 10px rgba(0,188,140,0.3);
}

footer {
    margin-top: 5rem;
    padding: 3rem 0;
    background: #1a1a1a;
    border-top: 1px solid #00bc8c;
}

.badge-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #00bc8c;
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.navbar {
    background: #1a1a1a !important;
    border-bottom: 2px solid #00bc8c;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00bc8c !important;
}

.dropdown-menu {
    background: #2c3e50;
    border: 1px solid #00bc8c;
}

.dropdown-item {
    color: white;
}

    .dropdown-item:hover {
        background: #00bc8c;
        color: white;
    }

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .lead {
        font-size: 1.2rem;
    }
}

