/* Waiting List Page Styles */

/* Beta Banner */
.beta-banner {
    background-color: #ef4444;
    color: white;
    text-align: center;
    padding: 5px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.beta-text {
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 0.875rem;
}

/* Form Elements */
.form-input {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background-color: #f8f8f8;
    border: 1px solid #d1d5db;
    color:black;
    margin-top: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.dark .form-input {
    background-color: #1e293b;
    border-color: #475569;
    color: white;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #6b7280;
    font-size: 0.9375rem;
}

.dark .form-label {
    color: #e5e7eb;
}

/* Button Styles */
.btn-animated {
    background-color: #ef4444;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-animated:hover {
    background-color: #dc2626;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-animated:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3);
}

.btn-animated:active {
    transform: translateY(-1px);
}

.btn-animated:disabled {
    background-color: #f87171;
    transform: none;
    cursor: not-allowed;
}

.btn-animated:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.btn-animated:hover:after {
    transform: scaleX(1);
}

/* Waitlist Container & Card */
.waitlist-container {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../img/hero-header-img.jpeg');
    background-size: cover;
    background-position: center;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.dark .waitlist-container {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('../img/hero-header-img.jpeg');
    background-size: cover;
    background-position: center;
}

.waitlist-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    height: 100%;
}

.dark .waitlist-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Alert Messages */
.success-message {
    display: none;
    background-color: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    text-align: center;
}

.error-message {
    display: none;
    background-color: #ef4444;
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    text-align: center;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.pulse-animation {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.logo-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* SVG Fill */
.svg-fill path {
    fill: #ef4444;
}

/* Benefits List */
.benefits-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
}

.benefits-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ef4444'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Progress Indicator */
.progress-step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background-color: #ef4444;
    color: white;
    font-weight: bold;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.progress-line {
    height: 2px;
    flex-grow: 1;
    background-color: #ef4444;
    margin: 0 0.5rem;
}

/* Counter Animation */
.counter-container {
    text-align: center;
    margin: 1.5rem 0;
}

.counter {
    font-size: 2rem;
    font-weight: bold;
    color: #ef4444;
    display: inline-block;
}

/* Timer */
.timer-container {
    margin: 1.5rem 0;
}

.timer-block {
    padding: 0.25rem;
}

.timer-number {
    font-weight: bold;
    color: #ef4444;
    background-color: rgba(239, 68, 68, 0.1);
    border-radius: 0.5rem;
    padding: 0.5rem;
    text-align: center;
    display: block;
    margin: 0 auto;
}

.timer-label {
    color: #6b7280;
    margin-top: 0.25rem;
    text-align: center;
}

.dark .timer-label {
    color: #e5e7eb;
}
/* Text Color Fixes for Dark Mode */

.dark .text-gray-600,
.dark .text-gray-700,
.dark .text-gray-800,
.dark .testimonial-name,
.dark p,
.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6 {
    color: #e5e7eb !important; /* Light gray color that's visible on dark backgrounds */
}

.dark .testimonial-quote {
    color: #d1d5db !important;
}

/* Make sure links are visible in dark mode */
.dark a:not(.menu-item) {
    color: #f87171 !important; /* Light red to match theme */
}

/* Fix the beta banner text in dark mode */
.beta-banner {
    color: white !important;
}

/* Fix for benefits list in dark mode */
.dark .benefits-list li strong {
    color: #f87171 !important;
}

/* Ensure timer numbers remain visible */
.dark .timer-number {
    color: #f87171 !important;
}

/* Fix counter color in dark mode */
.dark .counter {
    color: #f87171 !important;
}

/* Testimonials */
.testimonial-card {
    border-radius: 0.5rem;
    background-color: #f9fafb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-bottom: 1rem;
}

.dark .testimonial-card {
    background-color: #1e293b;
}

.testimonial-avatar {
    border-radius: 9999px;
    object-fit: cover;
}

.testimonial-name {
    font-weight: bold;
    color: #111827;
    line-height: 1.2;
}

.dark .testimonial-name {
    color: grey;
}

.testimonial-role {
    color: #6b7280;
    line-height: 1.2;
}

.dark .testimonial-role {
    color: #e5e7eb;
}

.testimonial-quote {
    font-style: italic;
    color: #4b5563;
    line-height: 1.5;
}

.dark .testimonial-quote {
    color: #d1d5db;
}

.testimonial-rating {
    display: flex;
}

.star {
    color: #f59e0b;
    margin-right: 0.25rem;
}

/* Navigation adjustments */
.menu-item {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.dark .menu-item {
    color: #e5e7eb;
}

.menu-item:hover {
    color: #ef4444;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .waitlist-container {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .counter {
        font-size: 1.75rem;
    }
    
    .timer-number {
        font-size: 1.25rem;
        padding: 0.375rem;
    }
    
    .timer-label {
        font-size: 0.75rem;
    }
    
    .testimonial-card {
        margin-top: 1rem;
    }
}

@media (max-width: 640px) {
    .counter {
        font-size: 1.5rem;
    }
    
    .timer-number {
        font-size: 1rem;
        padding: 0.25rem;
    }
    
    .progress-step {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.875rem;
    }
}

/* Fix for the header spacing */
#header {
    padding: 0.5rem 1rem;
}

#header .logo {
    display: flex;
    align-items: center;
}

/* Footer adjustments */
.footer {
    border-top: 1px solid #e5e7eb;
}

.dark .footer {
    border-top: 1px solid #1f2937;
}