/* Basic styling for the entire app */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: white;
    line-height: 1.6;
}

/* Reset and base styles */
* {
    box-sizing: border-box;
}

h1, h2, p, div {
    margin: 0;
    padding: 0;
}

/* Main container */
.app-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Section */
.header-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    background-color: #000000;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    gap: 8px;
}

.brand-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes the logo white to match the text */
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-button {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    letter-spacing: 0.5px;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.nav-button:hover {
    color: #666666;
}

.tagline {
    font-size: 14px;
    color: #666666;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: right;
    margin-top: 4px;
}

.main-content {
    min-height: 500px;
    padding: 20px 0;
}

/* Navigation styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.navbar-brand {
    font-weight: bold;
    font-size: 24px;
}

.navbar-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    cursor: pointer;
    padding: 5px 10px;
}

.nav-link:hover {
    background-color: #f5f5f5;
    border-radius: 4px;
}

.nav-link.active {
    font-weight: bold;
}

/* Footer section */
.footer-section {
    background-color: #f5f5f5;
    padding: 60px 0 40px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
}

.footer-column h2 {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.footer-column p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 0px;
    line-height: 1.6;
    cursor: default;
}

.footer-column p:hover {
    color: #333333;
}

.footer-link {
    cursor: pointer;
    color: #666666;
    text-decoration: none;
}

.footer-link:hover {
    color: #000000;
}

/* Footer version */
.footer-version {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 12px;
    color: #999999;
    font-weight: 400;
}

/* About Page Styles */
.about-page {
    flex: 1;
    padding: 0 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.about-title {
    font-size: 48px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.about-subtitle {
    font-size: 20px;
    color: #666666;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.section-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
    max-width: 800px;
    text-align: justify;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
    max-width: 800px;
}

.feature-item {
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
}

.feature-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

/* Responsive design for About page */
@media (max-width: 768px) {
    .about-page {
        padding: 0 20px 40px;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .about-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px;
    }
}

.about-text {
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

/* Home page styles */
.hero-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0 120px;
    background-color: white;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    width: 100%;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: #000000;
    line-height: 0.9;
    letter-spacing: -2px;
    margin: 0;
}

.hero-title:first-of-type {
    margin-bottom: 0;
}

.hero-title:last-of-type {
    margin-bottom: 40px;
}

.hero-description {
    font-size: 18px;
    color: #000000;
    font-weight: 600;
    max-width: 600px;
    line-height: 1.4;
    letter-spacing: 0.5px;
    margin: 0 0 40px 0;
}

/* Hero Call-to-Action */
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.waitlist-button {
    background-color: #000000;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.waitlist-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.waitlist-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-cta-subtitle {
    font-size: 14px;
    color: #666666;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Contact page styles */
.contact-page-container {
    flex: 1;
    padding: 0 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.contact-title {
    font-size: 48px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.contact-form {
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.submit-button {
    background-color: #000000;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
}

.submit-button:hover {
    background-color: #333333;
}

.thank-you-message {
    text-align: center;
    padding: 40px 0;
}

.back-button {
    background-color: #2196F3;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.info-item {
    flex: 1;
    text-align: center;
}

.info-item h1 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* reCAPTCHA styling */
.recaptcha-group {
    display: flex;
    justify-content: center;
    margin: 25px 0;
}

#recaptcha-container {
    display: flex;
    justify-content: center;
}

/* Error message styling */
.error-message {
    background-color: #ffebee;
    color: #c62828;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    border-left: 4px solid #c62828;
    font-size: 14px;
}

/* Disabled button styling */
.submit-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.submit-button:disabled:hover {
    background-color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-section {
        padding: 20px 20px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .nav-container {
        align-items: flex-start;
        width: 100%;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .tagline {
        text-align: left;
        margin-top: 8px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
        margin-bottom: 24px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .waitlist-button {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .hero-cta-subtitle {
        font-size: 13px;
    }
    
    .footer-content {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-section {
        padding: 40px 0 24px;
    }
    
    .contact-page-container {
        padding: 0 20px 40px;
    }
    
    .contact-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .brand-badge {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .nav-button {
        font-size: 12px;
    }
    
    .tagline {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 15vw, 3rem);
        letter-spacing: -1px;
    }
    
    .hero-description {
        font-size: 14px;
    }
}