@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Nunito:wght@400;600;800&display=swap");

:root {
    --primary-blue: #0056b3;
    --dark-blue: #003366;
    --accent-red: #e63946;
    --bright-red: #ff4d5a;
    --light-bg: #f8fbff;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

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

.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 60px;
    transition: var(--transition);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.nav-list a:hover {
    color: var(--accent-red);
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--accent-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    background: var(--bright-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.hero-section {
    padding: 160px 0;
    background: linear-gradient(
        135deg,
        var(--dark-blue) 0%,
        var(--primary-blue) 100%
    );
    color: var(--white);
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.btn-large {
    background: var(--white);
    color: var(--accent-red);
    font-size: 1.2rem;
    padding: 20px 50px;
}

.services-section,
.about-section,
.events-section,
.pricing-section,
.general-info-section {
    padding: 120px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-blue);
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background: var(--accent-red);
    margin: 20px auto 0;
    border-radius: 10px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 5px solid var(--primary-blue);
}

.service-card:hover {
    transform: translateY(-15px);
    border-bottom: 5px solid var(--accent-red);
}

.service-card h3 {
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--shadow);
    margin: 40px 0;
}

.flex-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.promo-section {
    background: var(--dark-blue);
    color: var(--white);
    padding: 100px 0;
}

.promo-box {
    background: linear-gradient(45deg, var(--accent-red), var(--bright-red));
    padding: 60px;
    border-radius: 40px;
    text-align: center;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.promo-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.event-card {
    background: var(--white);
    margin-bottom: 20px;
    padding: 30px;
    border-left: 10px solid var(--primary-blue);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.event-card h4 {
    color: var(--accent-red);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    border: 3px solid var(--accent-red);
    transform: scale(1.05);
}

.price-card h3 {
    margin-bottom: 15px;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.price-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.price-card li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.price-card li::before {
    content: "✓";
    color: var(--accent-red);
    margin-right: 10px;
    font-weight: bold;
}

.site-footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-info h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--bright-red);
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    padding: 8px 0;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--white);
    padding-left: 10px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .flex-container {
        flex-direction: column;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
    }
    .hero-section {
        padding: 100px 0;
        clip-path: none;
    }
    .promo-grid {
        grid-template-columns: 1fr;
    }
    .price-card.featured {
        transform: scale(1);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.image-wrapper {
    overflow: hidden;
    border-radius: 30px;
}

.image-wrapper img {
    transition: var(--transition);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}
