@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,500;1,500&display=swap');

:root {
    --c-brand: #fac562;
    --c-dark: #333;
    --c-pink: #FFC0CB;
    --c-blue: #0000FF;
    --c-body: #666;
    --c-light: #f8f8f8;
    --c-yellow: #ffff00;
    --f-base: "Plus Jakarta Sans", sans-serif;
    --n-height: 100px;
}

*,*::after, *::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;

}

body {
    color: var(--c-pink);
    font-family: var(--f-base);
    line-height: 1.8;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f0f0f0;
}

h1,h2,h3,h4,h5,h6 {
    color: var(--c-yellow);
    line-height: 1.2;
    font-weight: 400;
}

.heading_1 {
    font-size: clamp(44px, 10vw, 100px);
    font-weight: 400;
    text-transform: uppercase;
}

.heading-1 {
    font-size: clamp(32px, 6vw, 54px);
}

.heading-2 {
    font-size: clamp(28px, 4vw, 36px);
}

.heading-3 {
    font-size: 20px
}

a {
    color: cadetblue;
    text-decoration: underline;
    transition: all 0.4s ease-in-out;
}

a:hover {
    color: var(--c-brand);
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
}


ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background-color: transparent;
    border: 1px solid;
    font-family: var(--f-base);
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    font-size: 14px;
    border-radius: 5px;
}

.btn:hover {
    background-color: var(--c-brand);
    color: #fff;
}


.contact-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.contact-background {
    width: 100%;
    height: 200px;
    background: linear-gradient(rgba(0, 0, 0, 0.945), rgba(0, 0, 0, 0.2)), url(images/3-min.jpg);
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.contact-background h1 {
    font-size: 2.5rem;
    margin: 0;
    padding: 20px;
    border-radius: 10px;
}

.contact-info, .contact-form {
    padding: 20px;
    margin: 20px;
    flex: 1;
    min-width: 300px;
}

.contact-info {
    background: #f7f7f7;
}

.contact-info h2 {
    margin-bottom: 30px;
    color: cadetblue;
}

.contact-info p {
    margin-bottom: 30px;
    color: #555;
}

.whatsapp-icon {
    color: var(--c-brand);
    font-size: 24px;
}

.contact-form h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: cadetblue;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    color: #333;
    font-size: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
}

.contact-form button {
    padding: 15px;
    background-color: cadetblue;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: var(--c-brand);
}

.contact-form .message {
    color: var(--c-body);
}

#status-message {
    margin-top: 10px;
    font-size: 14px;
}

button {
    padding: 10px 20px;
    border: none;
    background: cadetblue;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: var(--c-brand);
}

#status-message {
    margin-top: 10px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-background {
        height: 150px;
    }

    .contact-background h1 {
        font-size: 1.5rem;
        margin: 0;
        padding: 10px;
        border-radius: 5px;
    }
    
}


.whatsapp_container {
    position: relative;
}

.whatsapp_float {
    position: fixed;
    width: 45px; 
    height: 45px; 
    bottom: 20px; 
    right: 20px; 
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px; 
    z-index: 1000;
}

.whatsapp-icon {
    font-size: 20px; 
    color: #fff;
}

.whatsapp_float:hover {
    background-color: #128c7e;
    color: #FFF;
    text-decoration: none;
}

