/* Общие стили */
:root {
    --primary: #1a2a6c;
    --secondary: #b21f1f;
    --accent: #fdbb2d;
    --white: #ffffff;
    --dark: #222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Навигация */
.navbar {
    background: var(--white);
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.logo span { color: var(--secondary); }

.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu ul li { margin-left: 30px; }

.nav-menu ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu ul li a:hover { color: var(--secondary); }

.btn-reg {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 42, 108, 0.7), rgba(178, 31, 31, 0.6)), 
                url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero h1 span { color: var(--accent); }

.location {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    margin: 10px;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary { background: var(--accent); color: var(--dark); }
.btn-secondary { border: 2px solid white; color: white; }
.btn-primary:hover { transform: translateY(-3px); }

/* Dates Section */
.dates-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.date-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary);
}

.date-item.highlight { border-left-color: var(--secondary); }

.date {
    display: block;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

footer {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 40px 0;
}

/* Мобильное меню */
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hero h1 { font-size: 2.2rem; }
}