:root {
    --cmdcast-black: #000000; /* Solid black for a stronger contrast */
    --cmdcast-white: #ffffff;
    --cmdcast-blue: #0d6efd;
    --cmdcast-gray: #7a8289;
}

body {    
    font-family: 'Roboto', sans-serif;
    background: var(--cmdcast-black);
    color: var(--cmdcast-white);
    margin: 0;
    padding-top: 70px; /* Adjust this if your navbar height changes */
    overflow-x: hidden; /* Prevents horizontal scrolling */
}
.brand-name {
    font-weight: bold;
}

.navbar-custom {
    background-color: var(--cmdcast-black);
    border-bottom: 1px solid var(--cmdcast-gray);
}

.navbar-custom .navbar-brand,
.navbar-custom .navbar-nav .nav-link {
    color: var(--cmdcast-white);
}

.header.hero {
    height: 100vh; /* Ensures the section takes the full height of the viewport */
    display: flex;
    align-items: center;
    font-family: 'Roboto Mono', monospace;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 5vh 10vw; /* Responsive padding based on the viewport size */
    box-sizing: border-box; /* Ensures padding is included in the height calculation */
}

.hero-heading {
    font-size: calc(2.5rem + 1vw); /* Responsive font size */
    font-weight: bold;
    text-align: center;
    color: var(--cmdcast-white);
    margin-bottom: 8vh; /* Responsive vertical spacing */
}

.hero-signup-line {
    font-size: calc(0.5rem + 1vw); /* Responsive font size */
    font-weight: bold;
    text-align: center;
    color: var(--cmdcast-white);
}

.hero-tagline {
    font-size: calc(1rem + 1vw); /* Responsive font size */
    font-weight: 500;
    text-align: center;
    margin-bottom: 8vh; /* More space below tagline */
    color: var(--cmdcast-gray);
    line-height: 1.4;
}

.section {
    background-color: var(--cmdcast-black);
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.btn-custom {
    background-color: var(--cmdcast-blue);
    color: var(--cmdcast-white);
    padding: 4px 4px;
    border-radius: 5px;
    font-size: calc(0.5rem + 1vw); /* Responsive font size */
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: #0056b3;
}

.email-signup {
    background: var(--cmdcast-gray);
    padding: 2vh 2vw; /* Responsive padding */
    border-radius: 8px;
    text-align: center;
    width: 50%; /* Adjusts the width of the signup form */
    margin: 0 auto; /* Centers the form horizontally */
}

.email-signup input[type=email] {
    width: 70%;
    padding: 12px;
    margin-right: 10px;
    border-radius: 5px;
    border: 4px solid var(--cmdcast-white); /* Defines a border for input */
}

.email-signup button {
    padding: 12px 25px;
    border-radius: 5px;
    border: none;
    background-color: var(--cmdcast-white);
    color: var(--cmdcast-black);
    transition: background-color 0.3s ease;
}

.email-signup button:hover {
    background-color: var(--cmdcast-blue);
    color: var(--cmdcast-white);
}

footer {
    background-color: var(--cmdcast-black);
    color: var(--cmdcast-gray);
    text-align: center;
    padding: 20px 0;
}


#features {
    color: #fff; /* White text */
    padding: 40px 0;
    font-family: 'Roboto', monospace; /* Monospaced font */
}

#features h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #ccc; /* Light gray for headings */
}

#about {
background-color: #252a33;
}
.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    font-size: 16px;
    padding: 10px 0;
    margin-bottom: 10px;
    border-left: 3px solid #007BFF; /* Accent color, consider changing if needed */
    padding-left: 50px; /* Space for the icon */
    position: relative;
}

.features-list i {
    position: absolute;
    left: 15px; /* Icon position from the left */
    color: #007BFF; /* Matching the border color */
    font-size: 20px;
}

.features-list li:hover {
    background-color: #222; /* Slightly lighter black for hover */
    transition: background-color 0.3s;
}

