﻿/* General Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
    font-family: Arial, sans-serif;
    color: white;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: black;
    flex-wrap: wrap;
    background-color: #0D0D0D;
}

    .navbar h2 {
        color: white;
        font-size: 2rem;
    }

nav ul {
    list-style: none;
    display: flex;
    gap: 100px;
    position:relative;
    left:-6rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.25rem;
}

    nav a:hover {
        text-decoration: underline;
    }

.logo-container {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 60px; /* Adjust size as needed */
    width: auto;
    margin-left: 30px;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem;
    gap: 40px;
}

    /* Text */
    .hero .text {
        flex: 1 1 400px;
    }

    .hero h1 {
        font-size: 4.5rem;
        margin-bottom: 10rem;
        margin-top: -10rem;
        color: #E5E5E5
    }

    .hero p {
        font-size: 2rem;
        line-height: 1.6;
        padding-bottom: 3rem;
        max-width: 900px;
        color:white;
    }

    /* Image */
    .hero .image {
        flex: 1 1 300px;
        max-width: 800px;
        max-height: 1000px;
        display: flex;
        justify-content: center;
    }

        .hero .image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }

    .hero button {
        background-color: #FF6B00; /* your accent color */
        color: #FFFFFF; /* text color */
        border: none; /* remove default border */
        border-radius: 9999px; /* full round edges */
        padding: 1rem 2rem; /* space inside button */
        font-size: 1.25rem;
        
        cursor: pointer;
        transition: background-color 0.3s ease;
        outline: none;
        position:relative;
        left:25rem;
    }
        .hero button:hover {
            background-color: #FFA347; /* lighter orange on hover */
            transform: translateY(-5px);    
        }

    .hero button:focus {
        outline: none;
        box-shadow: 0 0 0 2px #FF6B00AA; /* custom subtle glow if needed */
    }

/* Responsive Text Centering */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }
}


.extra {
    display: flex;
    flex-wrap: nowrap; /* prevent wrapping */
    justify-content: space-between;
    max-width: 1200px;
    margin: 2rem 4rem;
    gap: 10rem;
    padding: 0 2rem;
}

    .extra > div {
        flex: 0 0 40%; /* fixed 30% width */
        background-color: #1a1a1a;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        color: #eee;
        transition: transform 0.2s ease;
        font-size: 1.15rem;
        line-height: 1.8;

    }

        .extra > div:hover {
            transform: translateY(-5px);
        }

    .extra h2 {
        color: #FF6B00;
        margin-bottom: 1.5rem;
        font-size: 4rem;
    }

    .extra p {
        font-size: 1.5rem;
    }



    /*Submit Page*/
.submit-form {
    max-width: 700px;
    margin: 3rem auto;
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    color: #f0f0f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

    .submit-form h1 {
        text-align: center;
        margin-bottom: 2rem;
        color: #FF6B00; /* changed color */
    }

    .submit-form label {
        display: block;
        margin: 1rem 0 0.5rem;
        font-weight: bold;
    }

    .submit-form input[type="text"],
    .submit-form input[type="email"],
    .submit-form input[type="date"],
    .submit-form input[type="url"],
    .submit-form select,
    .submit-form textarea {
        width: 100%;
        padding: 0.75rem;
        border-radius: 6px;
        border: 1px solid #444;
        background-color: #111;
        color: #f0f0f0;
        font-size: 1rem;
    }

    .submit-form textarea {
        resize: vertical;
    }

.checkbox-group {
    margin-top: 1.5rem;
}

    .checkbox-group label {
        display: block;
        margin: 0.75rem 0;
        font-weight: normal;
        line-height: 1.5;
    }

.submit-form button {
    margin-top: 2rem;
    width: 100%;
    padding: 1rem;
    background-color: #FF6B00; /* orange */
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .submit-form button:hover {
        background-color: #e95d00; /* darker orange on hover */
    }

.submit-form span {
    color: #FF6B00; /* orange for required asterisk */
    margin-left: 4px;
}



/*Thankyou Page*/
.thankyou {
    position:relative;
    left:36rem;
    top:8rem;
    background: #1a1a1a;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    width: 100%;
}

.thankyou h1 {
    padding-top: 2rem;
    color: #FF6B00;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 2rem;
}

.thankyou p {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* Footer */
.footer {
    background-color: #111;
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 4rem;
    border-top: 1px solid #333;
}

.footer-content {
    color: #f0f0f0;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}

.footer h3 {
    color: #FF6B00;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer a {
    color: #FFA347;
    text-decoration: none;
    font-weight: bold;
}

    .footer a:hover {
        text-decoration: underline;
    }
