/* ===== HootBooks Landing Page ===== */

/* Reset for landing page */
.landing-page {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #3a3b45;
    overflow-x: hidden;
    background: #fff;
}

.landing-page * {
    box-sizing: border-box;
}

.landing-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Navbar ===== */

.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.landing-nav .landing-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.landing-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.landing-nav-owl {
    height: 36px;
    width: auto;
}

.landing-nav-logo {
    height: 28px;
    width: auto;
}

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===== Buttons ===== */

.btn-landing-primary {
    display: inline-block;
    background: linear-gradient(135deg, #4e73df 0%, #3a5bc7 100%);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-landing-primary:hover {
    background: linear-gradient(135deg, #3a5bc7 0%, #2e4aad 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(78, 115, 223, 0.4);
    color: #fff !important;
    text-decoration: none;
}

.btn-landing-outline {
    display: inline-block;
    background: transparent;
    color: #4e73df !important;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: 2px solid #4e73df;
    text-align: center;
}

.btn-landing-outline:hover {
    background: #4e73df;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-landing-lg {
    padding: 14px 36px;
    font-size: 1.1rem;
}

/* ===== Hero ===== */

.landing-hero {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.landing-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.landing-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.landing-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(20, 24, 45, 0.82) 0%,
        rgba(40, 55, 120, 0.7) 50%,
        rgba(78, 115, 223, 0.55) 100%
    );
}

.landing-hero-content {
    position: relative;
    z-index: 1;
    padding: 160px 0 80px;
    max-width: 720px;
}

.landing-hero-text {
    min-width: 0;
}

.landing-hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.text-accent {
    color: #7eb8ff;
    position: relative;
}

.landing-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 36px;
    max-width: 560px;
}

.landing-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.landing-hero-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Light outline button for dark hero backgrounds */
.btn-landing-outline-light {
    display: inline-block;
    background: transparent;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: 2px solid rgba(255, 255, 255, 0.7);
    text-align: center;
}

.btn-landing-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-1px);
}

/* ===== Trust Bar ===== */

.landing-trust-bar {
    background: #4e73df;
    padding: 18px 0;
    text-align: center;
}

.landing-trust-bar p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

/* ===== Section Headers ===== */

.landing-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.landing-section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1e2e;
    margin: 0 0 12px;
}

.landing-section-header p {
    font-size: 1.1rem;
    color: #5a5c69;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Features ===== */

.landing-features {
    padding: 80px 0;
    background: #fff;
}

.landing-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.landing-feature-card {
    background: #fff;
    border: 1px solid #e3e6f0;
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.landing-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(78, 115, 223, 0.12);
    border-color: #c5cde8;
}

.landing-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e3eafc 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #4e73df;
}

.landing-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1e2e;
    margin: 0 0 10px;
}

.landing-feature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5a5c69;
    margin: 0;
}

/* ===== How It Works ===== */

.landing-how-it-works {
    padding: 80px 0;
    background: #f8f9fc;
}

.landing-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.landing-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 32px 24px;
}

.landing-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4e73df 0%, #3a5bc7 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(78, 115, 223, 0.3);
}

.landing-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1e2e;
    margin: 0 0 8px;
}

.landing-step p {
    font-size: 0.95rem;
    color: #5a5c69;
    margin: 0;
    line-height: 1.6;
}

.landing-step-arrow {
    color: #c5cde8;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ===== Value Prop ===== */

.landing-value-prop {
    padding: 80px 0;
    background: #fff;
}

.landing-value-prop-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.landing-value-prop-image {
    flex: 0 0 300px;
}

.landing-value-prop-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.08));
}

.landing-value-prop-text {
    flex: 1;
}

.landing-value-prop-text h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1e2e;
    margin: 0 0 24px;
    line-height: 1.3;
}

.landing-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-check-list li {
    padding: 10px 0;
    font-size: 1rem;
    color: #3a3b45;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.landing-check-list li i {
    color: #1cc88a;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ===== Final CTA ===== */

.landing-final-cta {
    padding: 80px 0;
    background: linear-gradient(160deg, #f0f4ff 0%, #e8eeff 100%);
    text-align: center;
}

.landing-cta-owl {
    width: 120px;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

.landing-final-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1e2e;
    margin: 0 0 12px;
}

.landing-final-cta p {
    font-size: 1.1rem;
    color: #5a5c69;
    margin: 0 0 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}

/* ===== Footer ===== */

.landing-footer {
    background: #1a1e2e;
    padding: 40px 0;
}

.landing-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.landing-footer-brand img {
    height: 28px;
    width: auto;
    margin-bottom: 8px;
    opacity: 0.9;
}

.landing-footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.landing-footer-links {
    display: flex;
    gap: 24px;
}

.landing-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.landing-footer-links a:hover {
    color: #fff;
}

.landing-footer-social {
    display: flex;
    gap: 16px;
}

.landing-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.landing-footer-social a:hover {
    background: #4e73df;
    color: #fff;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {
    .landing-hero-text h1 {
        font-size: 2.4rem;
    }

    .landing-hero-subtitle {
        max-width: 100%;
    }

    .landing-hero-cta {
        justify-content: flex-start;
    }

    .landing-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-value-prop-content {
        flex-direction: column;
        text-align: center;
    }

    .landing-value-prop-image {
        flex: 0 0 auto;
    }

    .landing-check-list li {
        justify-content: center;
    }

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

@media (max-width: 576px) {
    .landing-hero {
        min-height: 80vh;
    }

    .landing-hero-content {
        padding: 120px 0 60px;
    }

    .landing-hero-text h1 {
        font-size: 1.9rem;
    }

    .landing-hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .landing-features-grid {
        grid-template-columns: 1fr;
    }

    .landing-features,
    .landing-how-it-works,
    .landing-value-prop,
    .landing-final-cta {
        padding: 60px 0;
    }

    .landing-nav-logo {
        display: none;
    }

    .btn-landing-lg {
        padding: 12px 28px;
        font-size: 1rem;
    }

    .landing-footer-content {
        flex-direction: column;
        text-align: center;
    }
}
