html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
}

.hero-section {
    background-image: url('https://breilly.com/wp-content/uploads/2025/06/tytl-image-30.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 100vh; /* Ensure it covers at least the full viewport height */
    padding-top: 80px; /* Adjust for fixed navbar */
    display: flex; /* Use flexbox to push content down */
    flex-direction: column;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3); /* Dark overlay */
}

.hero-section .container {
    position: relative;
    z-index: 1; /* Ensure content is above overlay */
    flex-grow: 1; /* Allow container to take up available space */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center;
    padding-bottom: 80px; /* Add padding at the bottom of the content container */
}

.navbar {
    z-index: 1020; /* Above the hero section */
}

.navbar-brand img {
    filter: brightness(0) invert(1); /* Make logo white */
}

.launching-soon {
    color: #E5A853;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 10px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.get-up-to {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.form-instruction {
    font-size: 1rem;
    margin-bottom: 15px;
}

.form-section-container {
    max-width: 1331.2px; /* Increased max-width for the form container by 30% */
    margin: 20px auto; /* Center the container and add vertical space */
}

.form-section-container form {
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    max-width: 900px; /* Increased max-width for the form itself */
}

.form-section-container form > * {
    flex-grow: 1; /* Allow direct children (inputs, button) to grow */
    margin: 5px; /* Add some space between elements */
}

.form-control-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.0rem;
}

.btn-warning {
    background-color: #FFA500; /* Approximate orange from image */
    border-color: #FFA500;
    font-weight: bold;
}

.btn-warning:hover {
    background-color: #cc8400;
    border-color: #cc8400;
}

.feature-section-container {
    max-width: 960px; /* Set a max-width */
    margin-top: 50px; /* Add space above features */
    width: 100%; /* Ensure it takes full width within container */
}

.feature-list div {
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-align: center !important; /* Center text within feature columns */
}

.footer-section {
    background-color: rgba(0, 0, 0, 0.7); /* Dark footer background */
    font-size: 0.8rem;
    width: 100%;
    padding: 20px;
    margin-top: auto; /* Push footer to the bottom of the flex container */
}

.footer-section .container {
    flex-direction: row; /* Override flex-direction for footer content */
    justify-content: space-between; /* Distribute space between items */
    align-items: center;
    text-align: center; /* Center text within footer container */
}

.footer-section .col-md-6:first-child {
    text-align: left !important; /* Align first column (copyright) to the left */
}

.footer-section .col-md-6:last-child {
    text-align: right !important; /* Align last column (links) to the right */
}

.footer-section a {
    color: white;
}

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

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .get-up-to {
        font-size: 1.2rem;
    }
    .form-control-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    .feature-list div {
        text-align: center !important;
    }
    .footer-section .text-md-start, 
    .footer-section .text-md-end {
        text-align: center !important;
    }
    .footer-section .container {
        flex-direction: column; /* Stack footer content on small screens */
    }
} 