/* Hero Section */
.hero {
    padding: 80px 0;
    background: #EFE7E5;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #3d3953;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.launch-date {
    font-size: 1.125rem;
    font-weight: 600;
    color: #3d3953;
    margin-bottom: 1rem;
}

.patent-notice {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0;
}

.patent-inline {
    font-size: 1.1rem;
    color: var(--light-text);
    font-style: italic;
    font-weight: 400;
    margin-left: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hero .btn-primary {
    background-color: #3d3953;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease;
    width: auto;
    min-width: 200px;
}

.hero .btn-secondary {
    background-color: white;
    color: #3d3953;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    width: auto;
    min-width: 200px;
    border: 2px solid #3d3953;
}

.hero .btn-primary:hover {
    background-color: #fff;
    color: #3d3953;
    border: 2px solid #3d3953; /* Optional: add a border for better contrast */
}

.hero .btn-secondary:hover {
    background-color: #3d3953;
    color: white;
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        padding: 20px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero .btn-primary,
    .hero .btn-secondary {
        margin-bottom: 0;
        min-width: 180px;
    }
    
    .patent-notice {
        font-size: 0.875rem;
        margin-top: 1rem;
    }

    .launch-date {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
} 