/* Landing Page Styles */

/* CSS Variables */
:root {
    --primary-color: #1a237e;
    --primary-light: #534bae;
    --primary-dark: #000051;
    --accent-color: #ff6f00;
    --text-dark: #212121;
    --text-light: #757575;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Reset for landing page */
.landing-header,
.hero-banner,
.features-section,
.grow-venue-section,
.showcase-section,
.faq-section,
.landing-footer {
    box-sizing: border-box;
}

/* Header */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0 24px;
}

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

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

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.cta-btn-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
}

.cta-btn-header:hover {
    background: var(--primary-light);
}

/* Landing Navigation Menu */
.landing-nav-menu .mud-menu-activator {
    color: var(--text-dark);
}

.landing-nav-menu .mud-menu-activator:hover {
    color: var(--primary-color);
}

.banner-username {
    color: var(--text-dark);
    font-weight: 500;
    margin-right: 8px;
}

/* Hero Banner */
.hero-banner {
    padding-top: 70px; /* Account for fixed header */
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-banner-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 500px;
}

.cta-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
}

.cta-btn:hover {
    background: var(--primary-light);
}

.cta-btn-light {
    background: var(--white);
    color: var(--primary-color);
}

.cta-btn-light:hover {
    background: #f5f5f5;
    color: var(--primary-dark);
}

/* Hero Collage Image */
.hero-images {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-collage-img {
    max-width: 100%;
    height: auto;
    max-height: 690px;
    object-fit: contain;
}

/* Section Containers */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* Features Section */
.features-section {
    background: var(--bg-light);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Grow Your Venue Section */
.grow-venue-section {
    background: var(--white);
}

.grow-venue-section .section-container {
    text-align: center;
}

.highlight-title {
    background: linear-gradient(to top, #5CE1E6 40%, transparent 40%);
    padding: 0 8px;
}

.venue-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 40px auto;
}

.venue-card {
    background: #e8e6c3;
    padding: 32px 24px;
    border-radius: 8px;
    text-align: center;
}

.venue-card-icon {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.venue-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.venue-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.venue-cta-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 800px;
    margin: 40px auto 24px;
}

.cta-btn-cyan {
    background: #5CE1E6;
    color: var(--text-dark);
}

.cta-btn-cyan:hover {
    background: #4dd4d9;
    color: var(--text-dark);
}

/* Showcase Section */
.showcase-section {
    background: var(--gradient-primary);
    color: var(--white);
}

.showcase-section .section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.showcase-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
}

.showcase-image {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
}

.app-preview {
    padding: 20px;
}

.preview-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 16px;
    margin: -20px -20px 20px;
    font-weight: 600;
    text-align: center;
}

.preview-card {
    background: var(--bg-light);
    height: 120px;
    border-radius: 12px;
    margin-bottom: 16px;
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

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

.faq-panels .mud-expand-panel {
    margin-bottom: 12px;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

.faq-panels .mud-expand-panel-header {
    padding: 20px 24px;
    font-weight: 500;
}

.faq-panels .mud-expand-panel-content {
    padding: 0 24px 20px;
}

.faq-panels p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer */
.landing-footer {
    background: var(--bg-light);
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-light);
    max-width: 300px;
    line-height: 1.6;
}

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

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background: #e8e8e8;
    padding: 20px 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-images {
        display: none;
    }

    .feature-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .venue-cards {
        grid-template-columns: 1fr 1fr;
    }

    .showcase-section .section-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .showcase-image {
        order: -1;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .showcase-content h2 {
        font-size: 2rem;
    }

    .venue-cards {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 16px;
    }

    .header-nav {
        gap: 12px;
    }

    .nav-link {
        display: none;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .cta-btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }

    .section-container {
        padding: 60px 16px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .feature-card {
        padding: 32px 24px;
    }
}

/* Auth Pages (Login, Register, etc.) */
.auth-section {
    padding-top: 70px;
    min-height: 100vh;
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    width: 100%;
    max-width: 450px;
    padding: 40px 24px;
}

.auth-card {
    padding: 40px !important;
    border-radius: 16px !important;
}

.auth-card h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
}

.auth-card .auth-subtitle {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 32px;
}

/* Auth Pages Responsive */
@media (max-width: 480px) {
    .auth-container {
        padding: 24px 16px;
    }
    .auth-card {
        padding: 24px !important;
    }
}

/* MudBlazor Button Overrides */
.mud-button-filled.mud-button-filled-primary:hover {
    background-color: var(--primary-light) !important;
}

.mud-button-filled.mud-button-filled-primary {
    background-color: var(--primary-color) !important;
}

.mud-button-outlined.mud-button-outlined-primary:hover {
    background-color: rgba(26, 35, 126, 0.1) !important;
    border-color: var(--primary-light) !important;
}

.mud-button-text.mud-button-text-primary:hover {
    background-color: rgba(26, 35, 126, 0.1) !important;
}
