/* Landing page styles */

/* Base styles */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

p {
    margin: 0;
}

/* Header styles */
header {
    background-color: #1a1a1a;
    padding: 1rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand img {
    max-height: 50px;
}

.navbar-nav {
    display: flex;
    gap: 1rem;
}

/* Hero section styles */
.hero {
    background-color: #1a1a1a;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-register {
    background-color: #7e3af2;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-register:hover {
    background-color: #6d28d9;
}

/* Interest categories styles */
.interest-categories {
    background-color: #f8f9fa;
}

.interest-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    background-color: #7e3af2;
    color: white;
    border-radius: 2rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

.interest-badge:hover {
    background-color: #6d28d9;
}

/* Features section styles */
.features {
    padding: 4rem 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.feature-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.feature-card h3 {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-card h3 svg {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}

/* Video section styles */
.video-section {
    background-color: #f8f9fa;
    text-align: center;
}

.video-section h2 {
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    height: 0;
    overflow: hidden;
    border-radius: 0.5rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Waitlist section styles */
.waitlist {
    padding: 4rem 0;
    background-color: #1a1a1a;
    color: white;
    text-align: center;
}

.waitlist-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
}

.waitlist-form h2 {
    margin-bottom: 1.5rem;
}

.waitlist-form input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    border-radius: 0.25rem;
}

.waitlist-form input[type="submit"] {
    width: 100%;
    padding: 0.75rem;
    background-color: #7e3af2;
    border: none;
    color: #fff;
    font-weight: bold;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.waitlist-form input[type="submit"]:hover {
    background-color: #6d28d9;
}

/* Footer styles */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 2rem 0;
}

footer img {
    max-height: 50px;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Responsive styles */
@media (max-width: 991px) {
    .video-container {
        width: 90%;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .feature-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 479px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .navbar-brand img {
        max-height: 40px;
    }

    .interest-badge {
        padding: 0.4rem 0.8rem;
        margin: 0.3rem;
    }
}
