/* ==========================================================
   NewEuro Booking — Shared Stylesheet
   Design system: zine / paper / hip-hop editorial
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Permanent+Marker&family=Bebas+Neue&family=DM+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --paper: #f0e9d8;
    --paper-dark: #e8e0cd;
    --ink: #0a0a0a;
    --ink-soft: #1a1a1a;
    --yellow: #ffd000;
    --yellow-bright: #ffe040;
    --red: #d8262a;
    --red-dark: #a8181c;
    --muted: #6b6457;
    --display: 'Anton', Impact, sans-serif;
    --hand: 'Permanent Marker', cursive;
    --headline: 'Bebas Neue', Impact, sans-serif;
    --body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

/* Paper texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}

/* Subtle warm vignette */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: radial-gradient(ellipse at center, transparent 0%, transparent 60%, rgba(120, 90, 40, 0.12) 100%);
}

/* ==========================================================
   NAVIGATION (sticky, all pages)
   ========================================================== */

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    padding: 12px 20px;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
    flex-shrink: 0;
}

.nav-logo img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.nav-logo:hover img {
    transform: rotate(-3deg);
}

.nav-logo-text {
    font-family: var(--display);
    font-size: clamp(13px, 1.4vw, 16px);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .nav-logo-text { display: none; }
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-family: var(--headline);
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    padding: 6px 4px;
    border-bottom: 2px solid transparent;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    border-bottom-color: var(--red);
    color: var(--red);
}

.nav-toggle {
    display: none;
    background: none;
    border: 2px solid var(--ink);
    padding: 8px 12px;
    cursor: pointer;
    font-family: var(--headline);
    font-size: 18px;
    color: var(--ink);
    line-height: 1;
}

.nav-toggle:hover { background: var(--yellow); }

@media (max-width: 800px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--paper);
        border-bottom: 2px solid var(--ink);
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    .nav-links.open { display: flex; }
    .nav-links li {
        width: 100%;
        border-top: 1px dashed rgba(10, 10, 10, 0.2);
    }
    .nav-links a {
        display: block;
        padding: 18px 24px;
        font-size: 18px;
        border-bottom: none;
    }
    .nav-links a:hover,
    .nav-links a.active {
        background: var(--yellow);
        border-bottom: none;
        color: var(--ink);
    }
}

/* ==========================================================
   PAGE WRAPPER + HEADER (subpage hero)
   ========================================================== */

.wrapper {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 20px 80px;
}

.page-header {
    padding: 56px 0 48px;
    border-bottom: 3px solid var(--ink);
    margin-bottom: 56px;
    text-align: left;
}

.page-eyebrow {
    font-family: var(--body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

.page-title {
    font-family: var(--display);
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    line-height: 0.92;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: var(--ink);
}

.page-title .highlight {
    position: relative;
    display: inline-block;
}

.page-title .highlight::before {
    content: '';
    position: absolute;
    inset: 4px -10px 6px;
    background: var(--yellow);
    z-index: -1;
    transform: rotate(-1deg);
}

.page-subhead {
    font-family: var(--headline);
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.3;
    color: var(--ink);
    margin-top: 18px;
    letter-spacing: 0.02em;
}

/* ==========================================================
   PROSE / TYPOGRAPHY
   ========================================================== */

.prose {
    max-width: 760px;
    margin: 0 auto 48px;
}

.prose-narrow {
    max-width: 640px;
}

.prose p {
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 20px;
}

.prose p strong {
    background: var(--yellow);
    padding: 1px 5px;
    font-weight: 700;
}

.prose p.lead {
    font-family: var(--headline);
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--ink);
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px dashed rgba(10, 10, 10, 0.3);
}

.prose p.lead strong {
    background: transparent;
    color: var(--red);
    font-weight: 400;
    padding: 0;
}

.prose a {
    color: var(--red);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    font-weight: 700;
}

.prose a:hover {
    background: var(--yellow);
    text-decoration: none;
    color: var(--ink);
}

h2.section-heading {
    font-family: var(--display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--ink);
    margin: 56px 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--ink);
}

h3.sub-heading {
    font-family: var(--headline);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
    margin: 32px 0 12px;
}

/* ==========================================================
   MANIFESTO BLOCK
   ========================================================== */

.manifesto {
    max-width: 760px;
    margin: 0 auto 64px;
    padding: 48px 32px;
    border-top: 4px solid var(--ink);
    border-bottom: 4px solid var(--ink);
    text-align: center;
    position: relative;
}

.manifesto p {
    font-family: var(--display);
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--ink);
    letter-spacing: 0.005em;
    margin-bottom: 24px;
}

.manifesto p:last-child {
    margin-bottom: 0;
}

.manifesto p strong {
    color: var(--red);
    background: transparent;
    padding: 0;
    font-weight: inherit;
}

/* ==========================================================
   SERVICE / FEATURE BLOCKS
   ========================================================== */

.service-blocks {
    max-width: 800px;
    margin: 0 auto 48px;
    display: grid;
    gap: 24px;
}

.service-block {
    padding: 28px 32px;
    background: var(--paper-dark);
    border: 2px solid var(--ink);
    transition: all 0.2s ease;
}

.service-block:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 var(--red);
}

.service-block h3 {
    font-family: var(--display);
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.05;
}

.service-block p {
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
}

/* ==========================================================
   STEPS (How it works)
   ========================================================== */

.steps {
    max-width: 800px;
    margin: 0 auto 48px;
    display: grid;
    gap: 28px;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
    padding: 24px 0;
    border-bottom: 1px dashed rgba(10, 10, 10, 0.3);
}

.step:last-child { border-bottom: none; }

.step-number {
    font-family: var(--display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 0.9;
    color: var(--red);
    min-width: 60px;
}

.step-content h3 {
    font-family: var(--display);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.05;
}

.step-content p {
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
}

/* ==========================================================
   RULES / BULLET LIST
   ========================================================== */

.rules-list {
    max-width: 760px;
    margin: 0 auto 48px;
    list-style: none;
}

.rules-list li {
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
    padding: 14px 0 14px 32px;
    position: relative;
    border-bottom: 1px dashed rgba(10, 10, 10, 0.2);
}

.rules-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--red);
    font-weight: 700;
    font-size: 18px;
}

.rules-list li:last-child { border-bottom: none; }

/* ==========================================================
   BUTTON STYLES
   ========================================================== */

.btn {
    display: inline-block;
    padding: 16px 28px;
    text-align: center;
    text-decoration: none;
    font-family: var(--headline);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.15s ease;
    border: 2px solid var(--ink);
    cursor: pointer;
    background: var(--ink);
    color: var(--paper);
}

.btn:hover {
    background: var(--red);
    border-color: var(--ink);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--ink);
}

.btn-secondary {
    background: var(--paper-dark);
    color: var(--ink);
}

.btn-secondary:hover {
    background: var(--yellow);
    color: var(--ink);
}

/* ==========================================================
   CTA BLOCK
   ========================================================== */

.cta-block {
    max-width: 760px;
    margin: 64px auto 0;
    padding: 48px 32px;
    background: var(--ink);
    color: var(--paper);
    text-align: center;
    border: 4px solid var(--ink);
    box-shadow: 8px 8px 0 var(--red);
}

.cta-block h2 {
    font-family: var(--display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--paper);
    margin-bottom: 16px;
    line-height: 1;
}

.cta-block p {
    font-family: var(--body);
    font-size: 17px;
    color: var(--paper);
    margin-bottom: 28px;
    opacity: 0.92;
}

.cta-block .btn {
    background: var(--yellow);
    color: var(--ink);
    border-color: var(--yellow);
}

.cta-block .btn:hover {
    background: var(--paper);
    border-color: var(--paper);
    box-shadow: 4px 4px 0 var(--red);
}

/* ==========================================================
   FOOTER
   ========================================================== */

footer.site-footer {
    background: var(--ink);
    color: var(--paper);
    padding: 48px 20px 32px;
    margin-top: 80px;
    position: relative;
    z-index: 3;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

@media (min-width: 700px) {
    .footer-inner {
        grid-template-columns: 1fr auto 1fr;
        text-align: left;
        align-items: center;
    }
    .footer-center { text-align: center; }
    .footer-right { text-align: right; }
}

.footer-tag {
    font-family: var(--hand);
    font-size: 22px;
    color: var(--yellow);
    line-height: 1;
    transform: rotate(-1.5deg);
    display: inline-block;
}

.footer-name {
    font-family: var(--display);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--paper);
    margin-bottom: 4px;
}

.footer-sub {
    font-family: var(--body);
    font-size: 13px;
    color: var(--paper);
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 20px;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
}

@media (min-width: 700px) {
    .footer-links { justify-content: flex-end; }
}

.footer-links a {
    font-family: var(--headline);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--paper);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease;
}

.footer-links a:hover { border-bottom-color: var(--yellow); }

.footer-bottom {
    max-width: 1100px;
    margin: 24px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(240, 233, 216, 0.2);
    font-family: var(--body);
    font-size: 12px;
    color: var(--paper);
    opacity: 0.5;
    text-align: center;
}

/* ==========================================================
   FORM EMBED CONTAINER (for Tally on 15MoF page)
   ========================================================== */

.form-embed {
    max-width: 760px;
    margin: 0 auto 48px;
    background: var(--paper-dark);
    border: 2px solid var(--ink);
    padding: 24px;
    box-shadow: 6px 6px 0 var(--red);
}

.form-embed iframe {
    width: 100% !important;
    border: none !important;
    background: transparent;
}

/* ==========================================================
   EMAIL / CONTACT BLOCK
   ========================================================== */

.contact-card {
    max-width: 640px;
    margin: 0 auto 48px;
    padding: 40px 32px;
    background: var(--yellow);
    border: 4px solid var(--ink);
    box-shadow: 8px 8px 0 var(--red);
    text-align: center;
}

.contact-card .label {
    font-family: var(--headline);
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 12px;
}

.contact-card .email {
    font-family: var(--display);
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    color: var(--ink);
    text-decoration: none;
    word-break: break-word;
    display: inline-block;
    border-bottom: 3px solid var(--ink);
    line-height: 1;
    padding-bottom: 4px;
    transition: color 0.15s ease;
}

.contact-card .email:hover {
    color: var(--red);
    border-bottom-color: var(--red);
}

.contact-card .response-time {
    font-family: var(--body);
    font-size: 14px;
    color: var(--ink);
    margin-top: 16px;
    opacity: 0.85;
}

/* ==========================================================
   MOBILE / RESPONSIVE
   ========================================================== */

@media (max-width: 540px) {
    .wrapper { padding: 16px 16px 60px; }
    .page-header { padding: 32px 0 28px; margin-bottom: 36px; }
    .manifesto { padding: 32px 20px; }
    .service-block { padding: 22px 20px; }
    .step { grid-template-columns: 1fr; gap: 8px; }
    .step-number { font-size: 2.2rem; }
    .cta-block { padding: 36px 20px; }
    .contact-card { padding: 32px 20px; }
    .btn { font-size: 15px; padding: 14px 22px; }
}

/* ==========================================================
   ANIMATIONS
   ========================================================== */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-header,
.manifesto,
.service-blocks,
.steps,
.cta-block,
.contact-card,
.form-embed {
    animation: fadeUp 0.6s ease-out backwards;
}

.manifesto { animation-delay: 0.1s; }
.service-blocks, .steps { animation-delay: 0.15s; }
.cta-block, .contact-card, .form-embed { animation-delay: 0.2s; }
