/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
    color: #ffffff;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
    overflow-y: auto;
}


/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: px 30px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(30px);
    z-index: 1000;
    transition: top 0.3s ease-in-out;

}

.navbar .logo {
    font-size: 5px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin-right: 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;

}

.nav-links li {
    display: inline-block;
}

.nav-links li a {
    font-family: "Ubuntu", serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.navbar-hidden {
    transform: translateY(-100%);
}

.implant-text {
    font-family: "Ysabeau SC", serif;
    font-size: 24px;  /* Adjust the font size */
    font-weight: bold;  /* Make the text bold, if needed */
    color: #fff;  /* Change the text color if necessary */
    animation: fadeIn 2s ease-in-out 0.5s;
}

.nav-links li a:hover {
    background: #37a2b7;
    color: #000;
    border-radius: 50px;
}


/* Fullscreen Video Background */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    filter: brightness(0.3) contrast(.9);

}

/* Quote Hero Section */
.quote-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    color: #fff;
}

.quote-hero h1 {
    font-family: 'Ysabeau SC', serif;
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.7);
    margin-bottom: 10px;
    margin-top: 350px;
    animation: fadeIn 2s ease-in-out;
}

.intro-text {
    font-size: 1.2rem;
    max-width: 600px;
    text-align: center;
    margin: 10px auto 30px;
    color: #fff;
    line-height: 1.5;
    animation: fadeIn 2s ease-in-out;

}

/* Form Container */
.form-container {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
    height: 90%;

}

.form-container h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;

}

.form-group label {
    font-family: 'Ubuntu', sans-serif;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
    text-align: left;
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%; /* Make all fields full width within the form-group */
    max-width: 600px; /* Keep the fields from being too wide */
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

textarea {
    height: 120px;
    resize: none;
}


/* Submit Button */
.submit-btn {
    padding: 15px 30px;
    font-size: 1.2rem;
    background: #37a2b7;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Ubuntu", serif;


}

.submit-btn:hover {
   background: #37a2b7;
   color: #000;
   transform: scale(1.05);
   font-family: "Ubuntu", serif;


}

.footer {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 1rem;
    font-family: 'Ubuntu', sans-serif;
    margin-top: 30px;
}
/* Animations */
@media screen and (max-width: 768px) {
    /* Styles for mobile screens */
    body {
        font-size: 14px;
    }
    .container {
        padding: 10px;
    }
    /* Adjustments to other elements */
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
