body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #132005, #0b300dd3, #2c3608, #0b300dd3, #132005);
    background-attachment: fixed;
    background-size: cover;
    color: #eaec71;
    text-align: center;
    padding-top: 80px; 
    padding-bottom: 60px; 
}

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

header {
    background-color: #0b300d;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    box-sizing: border-box;
}

nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 60px;
}

.logo img {
    height: 100%;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.falling-item {
    position: fixed;
    top: -50px;
    opacity: 0.7;
    pointer-events: none;
    animation: fall 30s linear infinite;
    z-index: 9999;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.3;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px #88c057, 0 0 20px #88c057;
    }
    50% {
        box-shadow: 0 0 20px #f4a32f, 0 0 40px #f4a32f;
    }
    100% {
        box-shadow: 0 0 10px #88c057, 0 0 20px #88c057;
    }
}

h1, h2 {
    font-size: 2.5em;
    margin: 20px 0;
    color: #397200;
    text-shadow: 0 0 5px #88c057, 0 0 10px #88c057, 0 0 20px #88c057;
}

.menu {
    display: flex;
    list-style-type: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.menu li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.menu a {
    color: #88c057;
    text-decoration: none;
    text-shadow: 0 0 5px #88c057;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    padding: 0.5rem;
    white-space: nowrap;
}

.menu a:hover {
    color: #f4a32f;
    text-shadow: 0 0 10px #f4a32f, 0 0 20px #f4a32f;
}

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

.graphic {
    margin: 20px auto;
    width: 200px;
    border-radius: 50%;
    overflow: hidden;
}

.graphic img {
    width: 100%;
    height: auto;
}

#home, #about, #contact {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    text-align: center; 
    margin: 60px auto;
}

#wave-text {
    font-family: 'Caveat', cursive;
    font-size: 2.5em;
    color: #eaec71;
    display: inline-block;
}

#contact {
    background-color: #886c053f; 
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px #88c057, 0 0 30px #88c057; 
}

#about {
    background-color: #886c053f; 
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px #88c057, 0 0 30px #88c057; 
}

#about ul {
    list-style-type: none;
    padding: 0;
    color: #eaec71;
}

#about li {
    margin: 10px 0;
    color: #eaec71;
}

form {
    margin: 20px 0;
    display: inline-block;
    text-align: left;
    width: 100%;
    max-width: 500px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input, textarea, select {
    background-color: #f8f3e3;
    border: 1px solid #88c057;
    color: #333;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

.phone-input {
    display: flex;
    gap: 10px;
}

.phone-input select {
    width: 30%;
}

.phone-input input {
    width: 70%;
}

input:focus, textarea:focus, select:focus {
    border-color: #f4a32f;
    box-shadow: 0 0 10px #f4a32f;
}

input[type="submit"] {
    background: #f4a32f;
    color: #fff;
    border: 2px solid #f4a32f;
    box-shadow: 0 0 10px #f4a32f, 0 0 20px #f4a32f;
    transition: 0.3s;
    cursor: pointer;
}

input[type="submit"]:hover:not(:disabled) {
    background: #88c057;
    border-color: #88c057;
    box-shadow: 0 0 10px #88c057, 0 0 20px #88c057;
}

input[type="submit"]:disabled {
    background-color: #aaa;
    cursor: not-allowed;
}

.error {
    color: #d9534f;
    font-size: 0.8em;
    margin-top: 5px;
    display: block;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    border: 2px solid #88c057;
    border-radius: 5px;
    background: transparent;
    box-shadow: 0 0 10px #88c057, 0 0 20px #88c057;
    transition: all 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #88c057; 
    color: #fff; 
    transform: scale(1.1); 
    box-shadow: 0 0 15px #88c057, 0 0 30px #88c057;
}

iframe {
    width: 100%;
    max-width: 900px;
    height: 900px;
    border: none;
  }

footer {
    background-color: #0b300d;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0; 
    z-index: 1000;
    color: #fff;
    text-align: center;
    font-size: calc(8px + 1vw); 
    text-shadow: 0 0 5px #88c057, 0 0 10px #88c057, 0 0 20px #88c057; 
}

footer a {
    color: #88c057;
    text-decoration: none;
}

@media (max-width: 600px) {
    .phone-input {
        flex-direction: column;
    }

    .phone-input select, 
    .phone-input input {
        width: 100%;
        margin-bottom: 10px;
    }

    footer {
        font-size: calc(6px + 1.5vw); 
    }
}

html {
    scroll-behavior: smooth;
}