/* ===== TURMOT - Мото-сумки и кофры ===== */
:root {
    --dark-bg: #0A0A0A;
    --darker-bg: #050505;
    --accent-orange: #FF6B35;
    --accent-hover: #e55a2b;
    --text-light: #FFFFFF;
    --text-gray: #CCCCCC;
    --card-bg: #1A1A1A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-light);
    background-color: var(--dark-bg);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* ===== Навигация ===== */
.custom-navbar {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.custom-navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-light) !important;
    letter-spacing: 1px;
}

.navbar-brand span {
    color: var(--accent-orange);
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-orange) !important;
}

/* ===== Hero секция ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Кнопки ===== */
.btn-primary {
    background: var(--accent-orange);
    border: none;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

.btn-outline-light {
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-width: 2px;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.1);
}

/* ===== Секции ===== */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 3rem;
}

/* ===== Карточки товаров ===== */
.product-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: var(--accent-orange);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.product-specs {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-specs i {
    color: var(--accent-orange);
    margin-right: 0.5rem;
}

.btn-details {
    background: transparent;
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 0.5rem 1rem;
    width: 100%;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-details:hover {
    background: var(--accent-orange);
    color: var(--text-light);
}

/* ===== Особенности ===== */
.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-text {
    color: var(--text-gray);
}

/* ===== Форма обратной связи ===== */
.contact-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-light);
    padding: 0.8rem;
}

.form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--accent-orange);
    box-shadow: none;
    color: var(--text-light);
}

.form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

/* ===== Социальные ссылки ===== */
.social-links a {
    color: var(--text-gray);
    font-size: 1.8rem;
    margin: 0 0.8rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-orange);
}

/* ===== Футер ===== */
footer {
    background: var(--darker-bg);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-gray);
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--accent-orange);
}

/* ===== Адаптивность ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .product-image {
        height: 200px;
    }
}

/* ===== Утилиты ===== */
.bg-dark {
    background-color: var(--dark-bg) !important;
}

.bg-opacity-50 {
    opacity: 0.95;
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}
