@import url('css2.css');

* {
    font-family: "Open Sans", serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #d9fdd3;
    color: #000;
}

/* Header */
.site-header {
    height: 75px;
    background-color: #6a0dad;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.site-header .branding {
    display: flex;
    align-items: center;
}

.site-header img {
    width: 45px;
    border-radius: 10px;
    margin-right: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.site-header h1 {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Main Wrapper */
.page-wrapper {
    margin: 100px auto 0 auto;
    width: 60vw;
    border-radius: 8px;
    background-color: #6a0dad;
    color: #fff;
    padding-bottom: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Video */
.video-promo {
    display: flex;
    justify-content: center;
    height: 350px;
    padding: 20px 0;
}

.video-promo iframe {
    width: 70%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* Sections */
.intro-section {
    margin-top: 20px;
    margin-bottom: 100px;
    font-weight: 600;
    font-size: 24px;
    padding: 0 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.intro-section ul {
    margin-top: 5px;
    padding: 0 50px;
    font-weight: 500;
    font-size: 19px;
}

/* Info Blocks */
.info-panels {
    padding: 0 40px;
}

.info-block {
    margin-bottom: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.info-block h2 {
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-bar img {
    width: 55px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.footer-bar a:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* Map */
.location-map {
    margin-top: 150px;
}

.location-map iframe {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* Privacy and Terms */
.page-wrapper .privacy,
.page-wrapper .terms {
    padding: 20px;
    margin-bottom: 20px;
}

.page-wrapper .privacy h2,
.page-wrapper .terms h2 {
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-wrapper .privacy h3,
.page-wrapper .terms h3 {
    margin-top: 40px;
    font-weight: 600;
    margin-bottom: 5px;
}

.page-wrapper .privacy p,
.page-wrapper .terms p {
    font-size: 17px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1200px) {
    .page-wrapper {
        width: 80vw;
    }
}

@media (max-width: 800px) {
    .page-wrapper {
        width: 90vw;
    }
}

@media (max-width: 600px) {
    .page-wrapper {
        width: 100vw;
    }

    .video-promo iframe {
        width: 95%;
    }

    .info-panels,
    .intro-section {
        padding: 0 15px;
    }
}

@media (max-width: 500px) {
    .site-header {
        display: block;
        height: auto;
        padding: 15px 25px;
    }

    .site-header .branding {
        justify-content: center;
        margin-bottom: 20px;
    }

    .nav-links {
        justify-content: center;
    }
}

.navbar {
    height: 75px;
    background-color: #800080; /* фиолетовый */
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.navbar img {
    width: 45px;
    border-radius: 10px;
    margin-right: 10px;
}

.nav-left {
    display: flex;
    align-items: center;
}

.navbar h1 {
    color: #fff;
}

.nav-right {
    display: flex;
    gap: 20px;
}

.nav-right a {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    transition: 0.2s ease;
}

.nav-right a:hover {
    opacity: 0.8;
}

