:root {
    --primary-color: #333;
    --secondary-color: #FFCC00;
    --background-color: #0F0E12;
    --font-family: 'Lato', sans-serif;
}

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

body {
    background: linear-gradient(135deg, #0F0E12, #222);
    color: #fff;
    font-family: var(--font-family);
    scroll-behavior: smooth;
}

header {
    background-color: rgba(0, 0, 0, 0.7);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav a {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

nav a:hover,
nav a.active {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

main {
    padding: 2rem;
}

section {
    padding: 2rem 0;
    min-height: calc(100vh - 60px);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #FFCC00, #FF9900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    margin-bottom: 10px;
}

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

.hero-section {
    display: grid;
    place-items: center;
    height: 100vh;
    background: none; /* Убираем фон */
    position: relative;
}

.circle-background {
    display: none; /* Убираем круговой фон */
}

.hero-title {
    text-align: center;
    color: #fafafa;
    font-size: 4rem;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    font-family: 'Pacifico', cursive;
    position: relative;
}

.menu-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-block {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-block:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.menu-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.content-block {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.content-block p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
}

.social-icons {
    display: inline-flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    font-size: 1.5rem;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--secondary-color);
}

footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 1rem 0;
    text-align: center;
    color: #ccc;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

form label {
    font-weight: bold;
}

form input,
form textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
    border-color: var(--secondary-color);
}

form button {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #ffb300;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav a {
        padding: 0.5rem 0;
    }

    .hero-section {
        height: auto;
        padding: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .content-block {
        padding: 1.5rem;
    }

    .social-icons {
        justify-content: center;
    }

    .menu-blocks {
        flex-direction: column;
        gap: 1rem;
    }

    .menu-block {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    nav a {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    .menu-block h2 {
        font-size: 1.2rem;
    }

    form input,
    form textarea {
        font-size: 1rem;
    }

    form button {
        font-size: 1rem;
    }
}
