/* motorcoach.travel placeholder site
   Brand tokens mirror the product SASS variables. Swap these to rebrand. */

:root {
    --bg: #ffffff;
    --bg-soft: #f9f8fc;
    --ink: #1a1726;
    --ink-soft: #524b6a;
    --muted: #8a8793;
    --line: #eae8f0;
    --primary: #7360f2;
    --primary-strong: #5b49d6;
    --secondary: #352f4a;
    --dark: #100e1b;
    --accent: #ffd751;
    --font-sans: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --maxw: 1140px;
    --radius: 0.725rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: var(--bg);
    background-image: radial-gradient(52% 48% at 100% 0%, rgba(115, 96, 242, 0.09), transparent 70%);
    color: var(--ink-soft);
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary-strong);
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
        text-underline-offset: 3px;
    }

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--primary);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 0 0 var(--radius) 0;
    z-index: 10;
}

    .skip-link:focus {
        left: 0;
    }

/* Eyebrow label (yellow dash + muted text), mirrors product sections */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0 0 1.1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
}

    .eyebrow::before {
        content: "";
        width: 28px;
        height: 3px;
        border-radius: 2px;
        background: var(--accent);
    }

/* Header */

.site-header {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 1.6rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

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

    .logo img {
        height: 34px;
        width: auto;
        display: block;
    }

.header-tag {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ink-soft);
    border: 1px solid var(--line);
    border-radius: 50rem;
    padding: 0.4rem 0.95rem;
    background: var(--bg-soft);
}

/* Hero */

.hero {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 4rem 1.5rem 4.5rem;
}

.hero-inner {
    max-width: 760px;
}

h1 {
    margin: 0 0 1.3rem;
    font-weight: 700;
    font-size: clamp(2.3rem, 5.5vw, 3.9rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--ink);
}

.lede {
    margin: 0 0 2.1rem;
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    color: var(--ink-soft);
    max-width: 60ch;
}

.hero-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 1.6rem;
    border-radius: 0.55rem;
    text-decoration: none;
    transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

    .btn:hover {
        text-decoration: none;
        transform: translateY(-1px);
    }

.btn-primary {
    background: var(--primary);
    color: #fff;
}

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

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}

    .btn-ghost:hover {
        border-color: var(--primary);
        color: var(--primary-strong);
    }

/* Segments */

.segments {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 2.5rem 1.5rem 3.5rem;
}

h2 {
    font-weight: 700;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin: 0 0 0.9rem;
    color: var(--ink);
}

.section-lede {
    margin: 0 0 2rem;
    color: var(--ink-soft);
    max-width: 64ch;
}

.tag-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

    .tag-grid li {
        background: var(--bg-soft);
        border: 1px solid var(--line);
        border-radius: 50rem;
        padding: 0.55rem 1.15rem;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--ink);
    }

/* Audiences */

.audiences {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 1rem 1.5rem 4.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.audience-card {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2.2rem 2rem;
}

    .audience-card h2 {
        font-size: 1.45rem;
        margin-bottom: 0.7rem;
    }

    .audience-card p {
        margin: 0;
        color: var(--ink-soft);
    }

/* Footer (dark, uses the dark-background logo) */

.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 3rem 1.5rem 1.4rem;
}

.footer-logo {
    height: 36px;
    width: auto;
    display: block;
    margin-bottom: 1.1rem;
}

.footer-meta,
.footer-contact {
    margin: 0 0 0.45rem;
    font-size: 0.95rem;
}

.site-footer a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 255, 255, 0.4);
}

    .site-footer a:hover {
        text-decoration-color: var(--accent);
    }

.footer-copyright {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 1rem 1.5rem 2.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
}

/* Hero load animation */

@media (prefers-reduced-motion: no-preference) {
    .eyebrow,
    h1,
    .lede,
    .hero-actions {
        opacity: 0;
        transform: translateY(12px);
        animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
    }

    h1 {
        animation-delay: 0.08s;
    }

    .lede {
        animation-delay: 0.16s;
    }

    .hero-actions {
        animation-delay: 0.24s;
    }
}

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

/* Responsive */

@media (max-width: 720px) {
    body {
        font-size: 17px;
    }

    .audiences {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 2.5rem;
    }
}
