/* Basic reset and global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    overflow-x: hidden;
}

/* Regular main content (for support.html etc) */
main {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px; /* Reduced top padding since no header */
}

/* Hero section styles */
.hero {
    min-height: 100vh;
    width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 100px;
}

.container {
    width: 100%;
    max-width: 1200px; /* Increased to accommodate side-by-side layout */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px; /* Space between text and image */
    width: 100%;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-title {
    font-size: 4rem; /* Large, bold title */
    font-weight: 900;
    color: #0a7ea4; /* Using your brand color */
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
}

.waitlist-btn {
    background-color: #0a7ea4;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 126, 164, 0.3);
    position: relative;
    overflow: hidden;
    animation: shimmer 3s ease-in-out infinite;
}

.waitlist-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
    animation: sweep 2s ease-in-out infinite;
}

@keyframes sweep {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.waitlist-btn:hover::before {
    left: 100%;
}

@keyframes shimmer {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(10, 126, 164, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(10, 126, 164, 0.5), 0 0 20px rgba(10, 126, 164, 0.2);
    }
}

.waitlist-btn:hover {
    background-color: #085a7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 126, 164, 0.4);
}

.waitlist-btn:active {
    transform: translateY(0);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    /* Mobile footer styles */
    .footer-left, .footer-center, .footer-right {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .footer-container {
        justify-content: center;
        padding: 0.5rem;
    }
}

/* Header styles */
/* header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.logo img {
    height: 40px;
} */

h1 {
    color: #0a7ea4;
    margin-bottom: 10px;
}

/* Section styles */
section {
    margin-bottom: 40px;
}

h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

/* Contact section */
.contact-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-info h2 {
    color: #0a7ea4;
}

.email {
    color: #0a7ea4;
    text-decoration: none;
    font-weight: 500;
}

.email:hover {
    text-decoration: underline;
}

/* Footer styles */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left, .footer-center, .footer-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.store-btn, footer a {
    text-decoration: none;
    color: #333;
}

.store-btn:hover, footer a:hover {
    color: #666;
}

/* Adjust social icons size if needed */
.fab {
    font-size: 1rem;
}

/* About page styles */
.about-section {
    max-width: 800px;
    margin: 100px auto 40px;
    padding: 0 20px;
    text-align: center;
}

.mission-statement, .purpose {
    margin: 40px 0;
    text-align: left;
}

.about-section h1 {
    color: #0a7ea4;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.about-section h2 {
    color: #2c3e50;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.about-section p {
    line-height: 1.8;
    color: #333;
    font-size: 1.1em;
}

.support-link {
    display: inline-block;
    color: #0a7ea4;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid #0a7ea4;
    border-radius: 5px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.support-link:hover {
    background-color: #0a7ea4;
    color: white;
    text-decoration: none;
}

/* Features page styles */
.features-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.features-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-word {
    font-size: 5rem;
    font-weight: 900;
    color: #0a7ea4;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive design for features */
@media (max-width: 768px) {
    .feature-word {
        font-size: 3.5rem;
    }
    
    .features-content {
        gap: 30px;
    }
}

/* Mobile menu styles */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #0a7ea4;
    background: rgba(10, 126, 164, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    border: 2px solid #0a7ea4;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: #0a7ea4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 126, 164, 0.3);
}

.mobile-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: none;
    align-items: flex-end;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    display: flex !important;
    transform: translateY(0);
}

.mobile-menu-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    width: 100%;
    max-height: 100%;
    border-radius: 20px 20px 0 0;
    padding: 15px;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 15px;
}

.mobile-menu-header span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a7ea4;
}

.mobile-menu-close {
    cursor: pointer;
    font-size: 1.5rem;
    color: #6c757d;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: #0a7ea4;
}

.mobile-menu-section {
    margin-bottom: 15px;
}

.mobile-menu-section h3 {
    color: #0a7ea4;
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-menu-section a {
    display: block;
    padding: 8px 0;
    color: #495057;
    text-decoration: none;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.mobile-menu-section a:hover {
    color: #0a7ea4;
    background-color: rgba(10, 126, 164, 0.05);
    padding-left: 10px;
    border-radius: 8px;
}

.mobile-store-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.mobile-store-btn i {
    font-size: 1.1rem;
    color: #0a7ea4;
}