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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0A0A0A;
    color: #FFFFFF;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
}

.logo  {
    display: flex;
    height: 100%;
    width: 128px;
}

.logo img {
    height: 100%;
    width: 100%;
    transform: scale(2); /* Increase this value to make logo bigger */
}

.nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #00C8C8;
    color: #0A0A0A;
}

.btn-primary:hover {
    background-color: #36F1FF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 200, 200, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-outline:hover {
    background-color: #FFFFFF;
    color: #0A0A0A;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    margin-top: 2rem;
}

/* Main Section */
.main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin-top: 80px; /* Account for fixed header */
    position: relative;
}

/* Add desktop-only margin-top */
@media (min-width: 769px) {
    .main {
        /* margin-top: 20vh; */
    }
}

.hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFFFFF 0%, #00C8C8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheading {
    font-size: 1.3rem;
    font-weight: 400;
    color: #CCCCCC;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    display: none; /* Hidden by default, shown via media query */
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid #00C8C8;
    border-bottom: 2px solid #00C8C8;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* Show scroll indicator only on screens taller than 600px */
@media (min-height: 600px) {
    .scroll-indicator {
        display: block;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 2rem;
    background-color: #0A0A0A;
}

.how-it-works-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #CCCCCC;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 200, 200, 0.15);
    border-color: rgba(0, 200, 200, 0.3);
}

.step-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.step-icon svg {
    width: 48px;
    height: 48px;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1rem;
    font-weight: 400;
    color: #CCCCCC;
    line-height: 1.6;
}

/* Why WizBiz Section */
.why-wizbiz {
    padding: 4rem 2rem;
    background-color: #0A0A0A;
}

.why-wizbiz-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 200, 200, 0.15);
    border-color: rgba(0, 200, 200, 0.3);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    font-weight: 400;
    color: #CCCCCC;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 2rem;
    background-color: #0A0A0A;
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 200, 200, 0.15);
    border-color: rgba(0, 200, 200, 0.3);
}

.quote-icon {
    font-size: 3rem;
    font-weight: 700;
    color: #32CD32;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.9rem;
    font-weight: 400;
    color: #32CD32;
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00C8C8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 1rem 1.5rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .nav {
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .main {
        padding: 1.5rem;
        margin-top: 70px;
        min-height: 100vh;
    }
    
    .headline {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .subheading {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .btn-large {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        margin-top: 2.5rem;
    }
    
    .how-it-works,
    .why-wizbiz {
        padding: 3rem 1.5rem;
    }
    
    .section-headline {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .steps-container,
    .features-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card,
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .footer {
        padding: 1.5rem;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.75rem 1rem;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .nav {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .main {
        padding: 1rem;
        margin-top: 60px;
        min-height: 100vh;
    }
    
    .headline {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .subheading {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-large {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
        margin-top: 2rem;
    }
    
    .how-it-works,
    .why-wizbiz,
    .testimonials {
        padding: 2rem 1rem;
    }
    
    .section-headline {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .step-card,
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .step-title,
    .feature-title {
        font-size: 1.2rem;
    }
    
    .step-description,
    .feature-description {
        font-size: 0.9rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-role {
        font-size: 0.85rem;
    }
    
    .footer {
        padding: 1rem;
    }
    
    .footer-links {
        gap: 1rem;
        flex-direction: column;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.footer-link:focus {
    outline: 2px solid #00C8C8;
    outline-offset: 2px;
} 