/* --- Глобальные стили PRO --- */
:root {
    --bg-dark: #050f1a;
    --bg-card: #0b1d2a;
    --accent: #00a8ff; /* Ярко-голубой для акцентов */
    --text-main: #e6f2ff;
    --text-muted: #8899a6;
    --white: #ffffff;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

/* --- Навигация PRO --- */
nav {
    background-color: rgba(5, 15, 26, 0.95);
    padding: 20px 0;
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px); /* Эффект матового стекла */
    background: #011f4b !important; /* Твой фирменный темно-синий */
    border-bottom: 2px solid #005b96;
}
}

.nav-content { display: flex; justify-content: center; gap: 30px; }

.nav-link {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--text-muted);
    position: relative;
}

.nav-link:hover, .nav-link.active { color: var(--accent); }

.nav-link::after {
    content: ''; display: block; width: 0; height: 2px;
    background: var(--accent);
    position: absolute; bottom: -5px; left: 0;
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* --- Hero Section (Первый экран) --- */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before { /* Затемнение фона */
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(5,15,26,0.3), var(--bg-dark));
}

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

.hero h1 {
    font-size: 64px; font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p { font-size: 20px; color: var(--text-muted); margin-bottom: 40px; font-weight: 300; }

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent);
    color: var(--bg-dark);
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    font-size: 16px;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0,168,255,0.3);
}

.btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,168,255,0.5); }

/* --- Основные секции --- */
main { padding-top: 80px; padding-bottom: 100px; }

section { margin-bottom: 120px; }

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    left: 50%; transform: translateX(-50%);
}

.section-title::after {
    content: ''; display: block; width: 60px; height: 4px;
    background: var(--accent);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* --- Сетка карточек --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* --- Карточки Feature --- */
.feature-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: var(--transition);
}

.feature-card:hover { border-color: var(--accent); transform: translateY(-5px); }

.feature-icon { font-size: 40px; color: var(--accent); margin-bottom: 20px; }

.feature-card h3 { font-size: 24px; margin-bottom: 15px; font-weight: 700; }

.feature-card p { color: var(--text-muted); font-size: 16px; font-weight: 300; }

/* --- Карточки Ссылка (Места/Галерея) --- */
.link-card {
    background-color: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 350px;
    border: 1px solid rgba(255,255,255,0.03);
}

.link-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(0.7);
}

.link-card:hover img { transform: scale(1.05); filter: brightness(1); }

.link-card-content {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(5,15,26,0.9), transparent);
}

.link-card h3 { font-size: 28px; font-weight: 800; text-transform: uppercase; margin-bottom: 5px; }

.link-card p { color: var(--accent); font-weight: 700; font-size: 14px; text-transform: uppercase; }

/* --- Footer PRO --- */
footer {
    background-color: var(--bg-card);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.03);
}

footer p { color: var(--text-muted); font-size: 14px; margin-top: 20px; }

/* --- Анимации при скролле (fade-in) --- */
.fade-in { opacity: 0; transform: translateY(30px); transition: 0.8s all ease; }
.fade-in.show { opacity: 1; transform: translateY(0); }

/* --- Адаптивность под мобилки --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 40px; }
    .hero p { font-size: 16px; }
    .section-title { font-size: 32px; }
}
/* --- Специфичные стили для Главной PRO --- */
.home-gallery {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.home-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.home-gallery-item img {
    width: 100%;
    height: 250px; /* Увеличил, чтобы улов было лучше видно */
    object-fit: cover;
    cursor: pointer;
    display: block;
    transition: transform 0.3s ease;
}

.home-gallery-item img:hover {
    transform: scale(1.05);
}
/* --- Стили для раздела Снастей PRO --- */
.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gear-card {
    background: #102a3a; /* Темный фон карточек */
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.gear-card:hover {
    transform: translateY(-5px);
    border-color: #00a8ff;
}

.gear-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gear-content {
    padding: 20px;
}

.gear-tag {
    display: inline-block;
    background: #00a8ff;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: bold;
}
/* Контейнер для полноэкранного просмотра */
.lightbox {
    display: none; 
    position: fixed;
    z-index: 99999; /* Чтобы было поверх всего */
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,168,255,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px; right: 30px;
    color: white; font-size: 50px;
    cursor: pointer;
}
.home-gallery {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* Жестко 3 колонки */
    gap: 15px !important;
    max-width: 1200px;
    margin: 0 auto !important;
}

.home-gallery-item img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    cursor: pointer !important;
}

@media (max-width: 768px) {
    .home-gallery { grid-template-columns: repeat(2, 1fr) !important; }
}
.review-text {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #00a8ff;
    margin: 20px 0;
}

#review-specs li {
    margin-bottom: 10px;
    font-weight: bold;
    color: #00a8ff;
}
