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

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    /* overflow: hidden; */
    font-size: .95em;
    background: #222;
}

h3 {
    font-weight: normal;
    font-size: 1.1em;
}
.landing-container {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    /* height: 100%; */
    /* background: linear-gradient(135deg, #001a4e, #0052aa, #0091da); */
    background-size: 400% 400%;
    position: relative;
    text-align: center;
    color: white;
    animation: gradientShift 8s infinite alternate ease-in-out;
    padding: 20px;
}

.main-container {
    display: flex;
    flex-direction: column;
    /*height: 100vh; !* Full height of the viewport *!*/
}


.top-section {
    background-color: #d57800;
    padding: 50px;
    text-align: center;
    color: white;
}


.bottom-section {
    background-color: #000;
    color: #fff;
    /*height: 50vh; !* Takes up the remaining half *!*/
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.site-footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: #f8b400;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffd700;
}

.site-footer a {
    color: #f8b400;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}



/* 🌊 Animated waves */
.waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 10%, transparent 60%);
    mix-blend-mode: overlay;
    animation: waveMotion 4s infinite alternate ease-in-out;
}

/* 🌊 Wave Motion */
@keyframes waveMotion {
    0% { transform: translateY(-40px) rotate(0deg); }
    100% { transform: translateY(40px) rotate(10deg); }
}

/* 🎨 Animated Gradient */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* 🌟 Headline & Text */
.headline {
    font-size: 4em;
    font-family: "Big Shoulders", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Upright:wght@600&display=swap');
.coming-soon {
    font-size: 1.1em;
    font-family: 'Cormorant Upright', serif;
    font-weight: bolder;
    font-style: italic;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
    color: #000;
}



/* 🆕 Forms Container */
.forms-container {
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 30px;  /* Space between forms */
    flex-wrap: wrap;
    width: 100%;
    max-width: 800px;
    margin-top: 50px;
}

/* Email Form & Feedback Form */
.email-form, .feedback-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 300px;  /* Ensures forms don’t get too small */
}

.email-form input, .feedback-form textarea {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    font-size: 1em
}

.feedback-form textarea {
    height: 80px;
    resize: none;
}

#try-out {
    background-color: #fff;
    color: #000;
}

#try-out:hover {
    background: #000;
    color: #fff;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #d57800;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow on hover */
}

button:hover {
    background-color: #fff;
    color: #000;
}

#email-response-message, #feedback-response-message {
    margin-top: 15px;
    font-size: 1.1em;
    color: #000;
    padding: 5px 10px;
}



