* {
    margin: 0;
    padding: 0;
  
}

body {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
background-image: url(assets/20230715_092918\ 1.webp);}

/* Contact page specific styles */
.contact-page {
    position: relative;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
    margin-top: 130px; /* Push content down below navigation */
}

.left-circle {
    position: absolute;
    width: 60%;
    height: 130%;
    border-radius: 50%;
    display: flex;
    background-color: #0e170d58;
    border: solid 2px #A8C657;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
    margin-right: 50%;
    margin-top: 20%;
}

.contact-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: KronaOne;
    padding: 0;
    margin-left: -5%;

}

.contact-info {
    text-align: center;
    padding-left: 0;
    width: 100%;
    z-index: 10;
}

.contact-info p {
    text-align: center;
}

.contact-info h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    width: auto;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;

}

.contact-info .info-row {
    justify-content: center;
    text-align: center;
}

.contact-info .info-row span {
    font-weight: bold;
    min-width: 80px;
    display: inline-block;
}

.contact-info .address-continuation {
    margin-left: 0;
    text-align: center;
}

.right-circle {
    position: relative;
    width: 60%;
    height: 60vh;
    border-radius: 50%;
    background-color: #0E170D; /* Bright yellow-green to match the image */
    border: solid 2px #A8C657;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    margin-right: 15%;
    margin-top: 5%;
}

.contact-form {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 2rem;
}


.form-row {
    display: flex;
    gap: 10px;
    width: 100%;
}

.contact-form input, 
.contact-form textarea {
    padding: 15px 15px;
    border: none;
    border-radius: 30px;
    background-color: #D9D9D9;
    width: 100%;
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-form textarea {
    height: 120px;
    resize: none;
    margin-bottom: 15px;
}
::placeholder{
    font-family: KottaOna;
}
.contact-form button {
    padding: 20px 50px;
    border: 1px solid #333;
    border-radius: 30px;
    background-color: #e1e1e1;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    align-self: center;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #d0d0d0;
}



/* Footer styles will be in footer.css */

/* Responsive styles */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        gap: 50px;
    }
    .left-circle {
        width: 100%;    /* Nastaveno na 100% šířky */
        height: 100%;   /* Nastaveno na 100% výšky */
        position: absolute;
        top: 0;         /* Umístění na horní okraj */
        left: 0;        /* Umístění na levý okraj */
        margin: 0;    
          /* Odstranění všech okrajů */
        border-radius: 30px; /* Odstranění zaoblení pro plné pokrytí */
        opacity: 0.5;   /* Mírné zprůhlednění pro lepší vzhled */
    }
    .contact-info {
        width: 80%;
        text-align: center;
        padding-left: 0;
        padding-top: 2rem;
    }
    
    .contact-info .address-continuation {
        margin-left: 0;
    }
    
    .right-circle {
        width: 400px;
        height: 400px;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .right-circle {
        width: 320px;
        height: 320px;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    .contact-page{
        height: 110vh;
    }
    .contact-info h1 {
        font-size: 28px;
    }

    @media (max-width: 375px) {
        .contact-page{
            height: 130vh;
        }
    }
}