/* Глобальні стилі */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #2b3a4c;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Сніжинки */
.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
}

.snowflake {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    opacity: 0.8;
    animation: snowfall linear infinite;
}

@keyframes snowfall {
    0% {
        transform: translateY(-100px) translateX(0);
    }

    100% {
        transform: translateY(100vh) translateX(100px);
    }
}

/* Створення різних сніжинок з різними розмірами та швидкостями */
.snowflake-1 {
    width: 10px;
    height: 10px;
    animation-duration: 10s;
    animation-delay: 0s;
}

.snowflake-2 {
    width: 15px;
    height: 15px;
    animation-duration: 15s;
    animation-delay: 2s;
}

.snowflake-3 {
    width: 20px;
    height: 20px;
    animation-duration: 20s;
    animation-delay: 4s;
}

/* Дерева */
.trees {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    z-index: -1;
}

.tree {
    width: 60px;
    height: 120px;
    background: #0b3325;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border: 3px solid #fff;
    box-shadow: 0 0 15px #fff;
}

.tree-1 {
    position: absolute;
    left: 10%;
    bottom: 5%;
}

.tree-2 {
    position: absolute;
    right: 10%;
    bottom: 5%;
}

/* Стилі заголовків */
header {
    text-align: center;
    padding: 20px 0;
}

header .btn {
    background: #1e3932;
    color: #fff;
    border: 2px solid #f9eb25;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

header .btn:hover {
    background: #f9eb25;
    color: #1e3932;
}

header .btn.active {
    background: #f9eb25;
    color: #1e3932;
    font-weight: bold;
    box-shadow: 0px 0px 10px #f9eb25;
}

/* Секції */
.section {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: justify;
    position: relative;
    z-index: 1;
}

.section h2 {
    margin-bottom: 10px;
    color: #f9eb25;
    text-align: center;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.section p,
.section ul {
    color: #fff;
    font-size: 1rem;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.section ul li {
    margin: 10px 0;
}

/* Комплімент */
.compliment h1 {
    text-align: center;
    font-size: 2rem;
    color: #f9eb25;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.8);
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    box-shadow: 0 0 20px #fff;
    margin: 30px auto;
    max-width: 900px;
}

/* Фідбек секція */
.feedback-container {
    margin: 20px 0;
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
}

#feedback-text {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#send-feedback {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#send-feedback:hover {
    background-color: #45a049;
}

#feedback-response {
    margin-top: 10px;
    font-size: 14px;
    color: #4CAF50;
}

/* Кнопка відправлення фідбеку */
.feedback-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px auto;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
}

.feedback-form textarea {
    height: 100px;
}

.feedback-form button {
    padding: 10px 20px;
    background: #f9eb25;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.feedback-form button:hover {
    background: #1e3932;
    color: #fff;
}