/* PROPP.app default homepage — brand identity pulled directly from PROPP's
   own mark (public/favicon.png / favicon_150.png), sampled: deep navy
   #32324e and gold #ffc800. Deliberately distinct from Vista's MARA-red
   gradient: this page serves the general (non-MARA) audience.

   Do not reuse the shared .hero-section / index-new.css classes here —
   those are also used by the site's error pages (404, 500, etc.) and must
   stay untouched. */

:root {
    --propp-ink: #0E0E18;
    --propp-navy-deep: #14141F;
    --propp-navy-mid: #1D1D33;
    --propp-navy: #262642;
    --propp-navy-light: #32324E;
    --propp-gold: #FFC800;
    --propp-gold-bright: #FFD84D;
    --propp-gold-dim: #E6B400;
}

.propp-hero {
    background: linear-gradient(135deg, var(--propp-navy-deep) 0%, var(--propp-navy-mid) 35%, var(--propp-navy) 65%, var(--propp-navy-light) 100%);
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.propp-hero-content {
    padding-top: 120px !important;
    /* Account for fixed navbar */
    padding-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.propp-hero-text-col {
    max-width: 600px;
}

.propp-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.propp-hero-eyebrow-bar {
    width: 28px;
    height: 2px;
    background: var(--propp-gold);
    flex-shrink: 0;
}

.propp-hero-eyebrow-text {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* Wave-split hero image (same technique as /felcra, recolored to navy/gold).
   SVG viewBox scaling keeps the curve proportionate at any desktop width;
   hidden below 992px in favor of a plain-background stacked layout. */
.propp-hero-split-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.propp-hero-title {
    font-weight: 900;
    font-size: 4rem;
    line-height: 1.1;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.propp-hero-title strong {
    color: var(--propp-gold);
}

.propp-hero-description {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 3rem;
    line-height: 1.6;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 3px solid rgba(255, 200, 0, 0.4);
    max-width: 560px;
    font-weight: 400;
}

.propp-hero-buttons {
    margin: 2rem 0;
}

.btn-propp-primary,
.btn-propp-secondary {
    font-weight: 700;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-right: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-propp-primary {
    background-color: #fff;
    color: var(--propp-ink);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-propp-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 10px 25px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    color: var(--propp-ink);
}

.btn-propp-primary:focus-visible,
.btn-propp-secondary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 200, 0, 0.4);
}

.btn-propp-secondary {
    background-color: var(--propp-gold);
    color: var(--propp-ink);
    border: none;
    box-shadow: 0 4px 20px rgba(255, 200, 0, 0.35), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-propp-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 200, 0, 0.5), 0 10px 25px rgba(0, 0, 0, 0.3);
    background-color: var(--propp-gold-bright);
    color: var(--propp-ink);
}

/* Tablet/Mobile: the wave-split image assumes a wide desktop canvas, so it
   steps aside below 992px in favor of a plain-background stacked layout. */
@media (max-width: 991px) {
    .propp-hero-split-svg {
        display: none;
    }

    .propp-hero-text-col {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .propp-hero-title {
        font-size: 2.8rem;
    }

    .propp-hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .btn-propp-primary,
    .btn-propp-secondary {
        display: block;
        width: 100%;
        margin: 0.8rem 0;
        text-align: center;
        padding: 16px 30px;
    }

    .propp-hero-content {
        padding-top: 120px;
    }
}

@media (max-width: 576px) {
    .propp-hero-title {
        font-size: 2.2rem;
    }

    .propp-hero-description {
        font-size: 1rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

/* Entrance animation */
.propp-hero-text-col>* {
    opacity: 0;
    transform: translateY(30px);
    animation: proppSlideInUp 0.8s ease forwards;
}

.propp-hero-eyebrow {
    animation-delay: 0.1s;
}

.propp-hero-title {
    animation-delay: 0.25s;
}

.propp-hero-description {
    animation-delay: 0.45s;
}

.propp-hero-buttons {
    animation-delay: 0.6s;
}

@keyframes proppSlideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .propp-hero-text-col>* {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .btn-propp-primary,
    .btn-propp-secondary,
    .propp-home-header .navbar {
        transition: none;
    }

    .btn-propp-primary:hover,
    .btn-propp-secondary:hover {
        transform: none;
    }
}

/* Homepage-only navbar (see header-home.blade.php) */
.propp-home-brand {
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    color: #fff !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.propp-home-brand img {
    height: 34px;
    width: auto;
    display: block;
}

.propp-navbar-scrolled {
    background: linear-gradient(135deg, var(--propp-navy-deep) 0%, var(--propp-navy-mid) 35%, var(--propp-navy) 65%, var(--propp-navy-light) 100%) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.propp-home-header .navbar {
    transition: all 0.3s ease;
}

.propp-home-header .nav-hover:hover {
    background-color: rgba(255, 200, 0, 0.15) !important;
    transform: translateY(-1px);
}

.propp-home-header .navbar-toggler:focus {
    box-shadow: none;
}

.propp-home-header .navbar-brand:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

@media (max-width: 991.98px) {
    .propp-home-header .navbar-nav {
        padding-top: 1rem;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 10px;
        margin-top: 1rem;
        backdrop-filter: blur(10px);
    }

    .propp-home-header .nav-link {
        margin-bottom: 0.5rem;
        text-align: center;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
