/* ============================================================
   DeaOlives – main.css
   Palette:
     --navy   #1B2340   deep Mediterranean navy
     --olive  #4A7C3F   olive green
     --gold   #C9981A   Mediterranean gold
     --parch  #F7F4EF   warm parchment (background)
     --ink    #1A1D27   near-black text
     --muted  #6C7180   muted text
     --line   #E0DDD6   border / divider
============================================================ */

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

:root {
    --navy:  #1B2340;
    --olive: #4A7C3F;
    --gold:  #C9981A;
    --parch: #F7F4EF;
    --ink:   #1A1D27;
    --muted: #6C7180;
    --line:  #E0DDD6;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(27,35,64,.10);
    --shadow-lg: 0 12px 48px rgba(27,35,64,.18);
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--parch);
    color: var(--ink);
    line-height: 1.65;
    font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── SITE NAV ─────────────────────────────────────────────── */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy);
    box-shadow: 0 2px 12px rgba(27,35,64,.30);
}

.site-nav__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-nav__brand img { height: 32px; }

.site-nav__links {
    list-style: none;
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.site-nav__links a,
.site-nav__link {
    color: rgba(255,255,255,.80);
    font-size: 14px;
    font-weight: 500;
    transition: color .2s;
}

.site-nav__links a:hover,
.site-nav__link:hover { color: var(--gold); }

.site-nav__cta {
    margin-left: 24px;
    background: var(--gold);
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 9px 22px;
    border-radius: 6px;
    transition: opacity .2s;
    white-space: nowrap;
}

.site-nav__cta:hover { opacity: .88; }

.site-nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.site-nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .25s;
}

.site-nav__drawer {
    display: none;
    flex-direction: column;
    background: var(--navy);
    padding: 16px 24px 24px;
    gap: 14px;
}

.site-nav__drawer a {
    color: rgba(255,255,255,.80);
    font-size: 15px;
    font-weight: 500;
}

.site-nav__drawer-cta {
    display: inline-block;
    background: var(--gold);
    color: var(--navy) !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 10px 24px;
    border-radius: 6px;
    text-align: center;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .site-nav__links, .site-nav__cta { display: none; }
    .site-nav__burger { display: flex; }
    .site-nav__drawer.open { display: flex; }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, #243055 55%, #2F4A28 100%);
}

.hero__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(74,124,63,.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 10% 90%, rgba(201,152,26,.12) 0%, transparent 60%);
}

.hero__body {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    padding: 80px 24px;
}

.hero__label {
    display: inline-block;
    background: rgba(201,152,26,.18);
    border: 1px solid rgba(201,152,26,.45);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero__title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 700;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 20px;
}

.hero__sub {
    font-size: 18px;
    color: rgba(255,255,255,.70);
    max-width: 520px;
    margin-bottom: 36px;
}

.hero__btn {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 16px 40px;
    border-radius: 8px;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 6px 24px rgba(201,152,26,.35);
}

.hero__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(201,152,26,.45);
}

/* ── GAMES SHOWCASE ───────────────────────────────────────── */
.games-showcase {
    padding: 80px 24px;
}

.games-showcase__wrap {
    max-width: 1120px;
    margin: 0 auto;
}

.games-showcase__title {
    font-family: Georgia, serif;
    font-size: clamp(26px, 4vw, 40px);
    color: var(--navy);
    margin-bottom: 40px;
    text-align: center;
}

.games-showcase__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.games-showcase__card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .25s, box-shadow .25s;
}

.games-showcase__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.games-showcase__thumb {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.games-showcase__thumb--olive {
    background: linear-gradient(135deg, #2F4A28 0%, #4A7C3F 100%);
}

.games-showcase__thumb--treasure {
    background: linear-gradient(135deg, #3B2C10 0%, #C9981A 100%);
}

.games-showcase__thumb-inner { text-align: center; }

.games-showcase__icon { font-size: 56px; display: block; margin-bottom: 10px; }

.games-showcase__name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.games-showcase__play {
    display: block;
    text-align: center;
    background: var(--navy);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .07em;
    padding: 14px;
    transition: background .2s;
}

.games-showcase__play:hover { background: var(--olive); }

/* ── METRICS ──────────────────────────────────────────────── */
.metrics {
    background: var(--navy);
    padding: 60px 24px;
}

.metrics__wrap {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    text-align: center;
}

.metrics__num {
    font-family: Georgia, serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.metrics__lbl {
    font-size: 14px;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* ── ABOUT BLOCK ──────────────────────────────────────────── */
.about-block {
    padding: 100px 24px;
}

.about-block__wrap {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 900px) {
    .about-block__wrap { grid-template-columns: 1fr; }
    .about-block__visual { display: none; }
}

.about-block__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.about-block__card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 20px;
    text-align: center;
    border-top: 3px solid transparent;
}

.about-block__card--a {
    grid-column: 1 / -1;
    border-top-color: var(--gold);
}

.about-block__card--b { border-top-color: var(--olive); }
.about-block__card--c { border-top-color: var(--navy); }

.about-block__card span { font-size: 36px; display: block; margin-bottom: 10px; }

.about-block__card p {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.about-block__heading {
    font-family: Georgia, serif;
    font-size: clamp(26px, 3.5vw, 38px);
    color: var(--navy);
    margin-bottom: 24px;
}

.about-block__text p {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 16px;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section {
    background: #fff;
    padding: 100px 24px;
}

.faq-section__wrap {
    max-width: 760px;
    margin: 0 auto;
}

.faq-section__title {
    font-family: Georgia, serif;
    font-size: clamp(26px, 4vw, 38px);
    color: var(--navy);
    margin-bottom: 48px;
    text-align: center;
}

.faq-section__item {
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
}

.faq-section__item:last-child { border-bottom: none; }

.faq-section__q {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.faq-section__a {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.72;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials {
    padding: 100px 24px;
    background: var(--parch);
}

.testimonials__wrap {
    max-width: 1120px;
    margin: 0 auto;
}

.testimonials__head {
    text-align: center;
    margin-bottom: 52px;
}

.testimonials__title {
    font-family: Georgia, serif;
    font-size: clamp(26px, 4vw, 38px);
    color: var(--navy);
    margin-bottom: 10px;
}

.testimonials__sub { color: var(--muted); font-size: 16px; }

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.testimonials__card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--gold);
}

.testimonials__stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; }

.testimonials__quote {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.72;
    margin-bottom: 22px;
    font-style: italic;
}

.testimonials__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonials__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
    flex-shrink: 0;
}

.testimonials__name { font-weight: 700; font-size: 14px; }
.testimonials__city { font-size: 12px; color: var(--muted); }

/* ── DISCLAIMER ───────────────────────────────────────────── */
.disclaimer-section {
    background: var(--navy);
    padding: 100px 24px;
}

.disclaimer-section__wrap {
    max-width: 1120px;
    margin: 0 auto;
}

.disclaimer-section__header {
    text-align: center;
    margin-bottom: 60px;
}

.disclaimer-section__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

.disclaimer-section__title {
    font-family: Georgia, serif;
    font-size: clamp(24px, 3.5vw, 36px);
    color: #fff;
    margin-bottom: 20px;
}

.disclaimer-section__text {
    color: rgba(255,255,255,.65);
    font-size: 15.5px;
    line-height: 1.72;
    max-width: 680px;
    margin: 0 auto;
}

.disclaimer-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
}

.disclaimer-section__item {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--radius);
    padding: 28px 24px;
}

.disclaimer-section__item-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.disclaimer-section__item p {
    font-size: 14px;
    color: rgba(255,255,255,.58);
    line-height: 1.68;
}

.disclaimer-section__item a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── REACH US ─────────────────────────────────────────────── */
.reach-us {
    padding: 100px 24px;
    background: #fff;
}

.reach-us__wrap {
    max-width: 580px;
    margin: 0 auto;
}

.reach-us__wrap h2 {
    font-family: Georgia, serif;
    font-size: clamp(26px, 4vw, 38px);
    color: var(--navy);
    text-align: center;
    margin-bottom: 40px;
}

.reach-us__title { /* alias if used */ }

.reach-us__group { margin-bottom: 22px; }

.reach-us__label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px;
}

.reach-us__input,
.reach-us__textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    font-size: 15px;
    color: var(--ink);
    background: var(--parch);
    transition: border-color .2s;
    outline: none;
    font-family: inherit;
}

.reach-us__input:focus,
.reach-us__textarea:focus {
    border-color: var(--olive);
}

.reach-us__textarea {
    min-height: 120px;
    resize: vertical;
}

.reach-us__submit {
    width: 100%;
    background: var(--olive);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .05em;
    border: none;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: opacity .2s;
    font-family: inherit;
}

.reach-us__submit:hover { opacity: .88; }

/* ── FOOTER ───────────────────────────────────────────────── */
.page-footer {
    background: #111623;
    padding: 60px 24px 40px;
}

.page-footer__wrap {
    max-width: 1120px;
    margin: 0 auto;
}

.page-footer__notice {
    background: rgba(201,152,26,.08);
    border: 1px solid rgba(201,152,26,.20);
    border-radius: var(--radius);
    padding: 28px 28px;
    margin-bottom: 32px;
}

.page-footer__notice-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 10px;
}

.page-footer__notice-text {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    line-height: 1.7;
}

.page-footer__org {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.page-footer__org-link {
    font-size: 13px;
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.page-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    margin-bottom: 28px;
}

.page-footer__link {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    transition: color .2s;
}

.page-footer__link:hover { color: var(--gold); }

.page-footer__copy {
    font-size: 12px;
    color: rgba(255,255,255,.28);
}

/* ── GAME PAGE (reused by OliveSlots / TreasureReel) ─────── */
.game-page-hero {
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

.game-page-hero--olive {
    background: linear-gradient(135deg, #1E3318 0%, var(--olive) 100%);
}

.game-page-hero--treasure {
    background: linear-gradient(135deg, #3B2C10 0%, #C9981A 100%);
}

.game-page-hero__icon { font-size: 72px; margin-bottom: 20px; }

.game-page-hero__title {
    font-family: Georgia, serif;
    font-size: clamp(30px, 5vw, 52px);
    color: #fff;
    margin-bottom: 14px;
}

.game-page-hero__sub {
    font-size: 17px;
    color: rgba(255,255,255,.75);
    max-width: 480px;
    margin: 0 auto 32px;
}

.game-page-hero__cta {
    display: inline-block;
    background: #fff;
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .07em;
    padding: 14px 36px;
    border-radius: 8px;
    transition: opacity .2s;
}

.game-page-hero__cta:hover { opacity: .90; }

.game-info {
    padding: 80px 24px;
    max-width: 760px;
    margin: 0 auto;
}

.game-info h2 {
    font-family: Georgia, serif;
    font-size: 26px;
    color: var(--navy);
    margin: 36px 0 14px;
}

.game-info p, .game-info li {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.75;
}

.game-info ul { padding-left: 22px; }
.game-info li { margin-bottom: 6px; }

/* ── LEGAL PAGE ───────────────────────────────────────────── */
.legal-hero {
    background: var(--navy);
    padding: 60px 24px;
    text-align: center;
}

.legal-hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(26px, 4vw, 40px);
    color: #fff;
    margin-bottom: 10px;
}

.legal-hero p { color: rgba(255,255,255,.55); font-size: 14px; }

.legal-body {
    padding: 72px 24px;
    max-width: 760px;
    margin: 0 auto;
}

.legal-body h2 {
    font-family: Georgia, serif;
    font-size: 20px;
    color: var(--navy);
    margin: 36px 0 12px;
}

.legal-body p, .legal-body li {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal-body ul { padding-left: 22px; }
.legal-body a { color: var(--olive); text-decoration: underline; }
