/* TeaseTap Landing Page Styles */

:root {
    --brand-blue: #4682B4; /* Steel Blue */
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--white);
    min-height: 100vh;
    color: var(--brand-blue);
    line-height: 1.6;
}

.site-header {
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 60px; /* Ensure space for logo */
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--brand-blue);
    text-decoration: none;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-blue);
    line-height: 1.2;
    margin: 0;
    margin-bottom: 1rem; /* Spacing after title */
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--brand-blue);
    font-weight: 300;
    margin-bottom: 2.5rem; /* Spacing after subtitle */
}

.main-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Two Column Layout */
.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 1rem 0; /* Adjusted margin */
}

/* Left Column - Selling Points */
.selling-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.selling-point {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: transparent;
    border: 2px solid var(--brand-blue);
    border-radius: 15px;
}

.selling-point-icon {
    font-size: 2rem;
    color: var(--brand-blue);
}

.selling-point-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--brand-blue);
}

.selling-point-content p {
    color: var(--brand-blue);
    margin: 0;
}

/* Right Column - GIF */
.gif-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-gif {
    max-width: 100%;
    border-radius: 15px;
    border: 2px solid var(--brand-blue);
}

/* Sign-up Form */
.signup-section {
    background: transparent;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 4rem 0;
    border: 2px solid var(--brand-blue);
}

.signup-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--brand-blue);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 1rem;
}

.user-type-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.user-type-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--brand-blue);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: transparent;
    color: var(--brand-blue);
}

.user-type-btn.active {
    background-color: var(--brand-blue);
    color: var(--white);
}

.notify-btn {
    background-color: var(--brand-blue);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.notify-btn:hover {
    background-color: #3a6a9a; /* Darker Steel Blue */
}

/* How It Works & FAQ */
.how-it-works,
.faq-section {
    margin: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--brand-blue);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.step {
    text-align: center;
}

.step-icon {
    font-size: 3rem;
    color: var(--brand-blue);
    margin-bottom: 1rem;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--brand-blue);
}

.step-content p {
    color: var(--brand-blue);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: transparent;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 2px solid var(--brand-blue);
}

.faq-question {
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: block;
    position: relative;
    color: var(--brand-blue);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    transition: transform 0.2s ease-in-out;
    color: var(--brand-blue);
}

.faq-item[open] > .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--brand-blue);
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    color: var(--brand-blue);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        padding: 1rem;
    }

    .logo {
        position: static;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .two-column-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Stack GIF first, then selling points */
    .gif-container {
        order: -1;
    }

    .selling-points {
        gap: 1.5rem;
    }

    .selling-point {
        padding: 1rem;
        gap: 1rem;
    }

    .selling-point-icon {
        font-size: 1.5rem;
    }

    .signup-section {
        padding: 2rem;
        margin: 2rem 0;
    }

    .user-type-options {
        flex-direction: column;
        gap: 0.5rem;
    }

    .steps-container {
        flex-direction: column;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .selling-point {
        flex-direction: column;
        text-align: center;
    }

    .signup-section {
        padding: 1.5rem;
    }
}