* {
font-family:Verdana, Geneva, Tahoma, sans-serif;
color: white;

}

:root {
    --primary-100:#8B0000;
    --primary-200:#c2402a;
    --primary-300:#e9b244;
    --accent-100:#cd9402;
    --accent-200:#e9b244;
    --text-100:#000000;
    --text-200:#565656;
    --bg-100:#E9E9E9;
    --bg-200:#dfdfdf;
    --bg-300:#b7b7b7;
}

body {
    background-color: var(--bg-100);
    color: var(--text-100);
    margin: 0;
    padding-top: 60px;
}

.navbar {
    background-color: var(--primary-100);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.navbar-logo {
    color: var(--primary-300);
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bold;
    margin-right: 2rem;
}

.navbar-menu {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    margin-right: 1rem;
}

.navbar-menu a {
    color: var(--text-100);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.navbar-menu a:hover {
    color: var(--primary-300);
}

.navbar-buttons {
    display: flex;
    align-items: center;
}

.navbar-button {
    padding: 0.5rem 1rem;
    margin-left: 1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.login-button {
    color: var(--primary-300);
    border: 1px solid var(--primary-300);
}

.login-button:hover {
    background-color: var(--primary-300);
    color: var(--primary-100);
}

.signup-button {
    background-color: var(--primary-200);
    color: var(--text-100);
}

.signup-button:hover {
    background-color: var(--primary-300);
    color: var(--primary-100);
}

.hero {
    background-image: url('Pictures/Picture of Minutebook.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    margin: 0;
    box-sizing: border-box;
    background-color: var(--bg-300);
}

.hero-content {
    max-width: 600px;
    color: var(--text-100);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-100);
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-button {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.primary-button {
    background-color: var(--primary-200);
    color: var(--text-100);
}

.primary-button:hover {
    background-color: var(--primary-300);
    color: var(--primary-100);
}

.secondary-button {
    background-color: transparent;
    color: var(--primary-300);
    border: 2px solid var(--primary-300);
}

.secondary-button:hover {
    background-color: var(--primary-300);
    color: var(--primary-100);
}

.split-section {
    display: flex;
    height: 100vh;
    background-color: var(--bg-200);
}

.split-image {
    flex: 1;
    background-image: url('Pictures/Minutebook words 2.svg');
    background-size: cover;
    background-position: center;
}

.split-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-200);
}

.split-content h1 {
    color: var(--primary-300);
}

.split-content h2, .split-content h3 {
    color: var(--primary-200);
}

.split-content p {
    color: var(--text-200);
}

.feature {
    margin-bottom: 2rem;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-100);
}

.feature p {
    color: var(--text-200);
}

.split-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.split-button {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.login-button {
    background-color: transparent;
    color: var(--text-100);
    border: 2px solid var(--text-100);
}

.login-button:hover {
    background-color: var(--text-100);
    color: var(--bg-300);
}

.signup-button {
    background-color: var(--accent-100);
    color: var(--bg-100);
    border: none;
}

.signup-button:hover {
    background-color: var(--accent-200);
}

.features-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--primary-100);
}

.features-section h1 {
    color: var(--text-200);
}

.features-section h2 {
    color: var(--accent-100);
}

.feature-modules {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature-module {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 1.5rem;
    background-color: var(--bg-200);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--primary-200);
}

.feature-module:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-module h3 {
    font-size: 1.5rem;
    color: var(--primary-300);
    margin-bottom: 0.5rem;
}

.feature-module p {
    color: var(--text-200);
}

.split-cta {
    display: flex;
    align-items: center;
    background-color: var(--primary-200);
    padding: 4rem 2rem;
}

.split-cta-left, .split-cta-right {
    flex: 1;
    padding: 2rem;
}

.split-cta-left {
    text-align: right;
    border-right: 2px solid var(--primary-300);
}

.split-cta-right {
    text-align: left;
}

.split-cta h1 {
    color: var(--bg-100);
}

.split-cta h2 {
    color: var(--text-100);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.cta-button {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

@media (max-width: 768px) {
    .feature-modules {
        flex-direction: column;
        align-items: center;
    }

    .feature-module {
        width: 100%;
        max-width: none;
    }
    .split-cta {
        flex-direction: column;
        text-align: center;
    }

    .split-cta-left, .split-cta-right {
        width: 100%;
        text-align: center;
        border-right: none;
    }

    .split-cta-left {
        border-bottom: 2px solid var(--primary-300);
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        justify-content: center;
    }
}

/* Below is the form CSS*/

.question-form {
    height: 3000px;
    width: 1000px;
    padding: 50px;
    margin: 10px;
    background-color: black;
}
.question-box {
    height: auto;
    width: 50%;
    padding: 25px;
    margin-top: 5px;
    margin-left: 1000px;
    margin-bottom: 50px;
    border: 0px solid black;
    border-radius: 10px;
    background: linear-gradient(#1fe4f5, #3fbafe);
    /*background-color: white;*/
    align-self: center;
    box-shadow: 8px 6px 1px 7px rgba(0, 195, 255, 0.40);
    /*transition: transform 1s cubic-bezier(0.58, 0.25, 0, 1.43) 1s;
    transform: translateX(-185%);*/
    animation: right-to-left 1s cubic-bezier(0.58, 0.25, 0, 1.43) forwards;
    overflow: hidden;
    opacity: 0%;
}

.short-text-box {
    height: auto;
    width: 100%;
    margin: 5px 15px;

}

.short-text-box-field {
    width: 90%;
    height: 15px;
    border: 0px solid black;
    /*background: radial-gradient(#1fe4f5, #3fbafe);*/
    border-radius: 3px;
    color: black;
}

.short-text-box-field:focus {
    color: black;
    background: none;
    outline: none;
    background-color: red;
    border: 0 none;
    background: linear-gradient(#ffc003, #f0fc01);
    margin: none;
    padding: 0px;
    box-shadow: none;
}

.submit-btn {
    background: linear-gradient(#1fe4f5, #3fbafe);
    border: 0px solid black;
    border-radius: 5px;
    height: 50px;
    width: 100px;
}

.form-nav-btn {
    text-align: center;
    display: inline-block;
    background: linear-gradient(#1fe4f5, #3fbafe);
    border: 0px solid black;
    border-radius: 5px;
    padding: 15px 31px;
    margin-bottom: 10px;
}

/* .question-box .short-text-box-field:focus {
    
} */


@keyframes right-to-left {
    0% {
        opacity: 0%;
    }

    15% {
        opacity: 0%;
    }

    100% {
        opacity: 100%;
        transform: translateX(-185%);
    }
}

.qb1 {

}
.qb2 {
    animation-delay: 0.2s;
}

.qb3 {
    animation-delay: 0.4s;
}
.qb4 {
    animation-delay: 0.6s;
}
.qb5 {
    animation-delay: 0.8s;
}
.qb6 {
    animation-delay: 1s;
}
.qb7 {
    animation-delay: 1.2s;
}
.qb8 {
    animation-delay: 1.4s;
}
.qb9 {
    animation-delay: 1.6s;
}
.qb10 {
    animation-delay: 1.8s;
}
.qb11 {
    animation-delay: 2s;
}
.qb12 {
    animation-delay: 2.2s;
}
.qb13 {
    animation-delay: 2.4s;
}
.qb14 {
    animation-delay: 2.6s;
}
.qb15 {
    animation-delay: 2.8s;
}
.qb16 {
    animation-delay: 3s;
}
.qb17 {
    animation-delay: 3.2s;
}
.qb18 {
    animation-delay: 3.4s;
}
.qb19 {
    animation-delay: 3.6s;
}
.qb20 {
    animation-delay: 3.8s;
}

.hide {
    display: none;
}
