/* ============================================================
   ScenicEuro.com — Shared Stylesheet
   Classic & Trustworthy: Navy / White / Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  --navy:      #0d2045;
  --navy-mid:  #163060;
  --navy-light:#1e4080;
  --gold:      #c9a84c;
  --gold-light:#e2c77a;
  --white:     #ffffff;
  --off-white: #f7f8fb;
  --text:      #1a1a2e;
  --muted:     #5a6378;
  --border:    #dde3ef;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', 'Helvetica Neue', sans-serif;

  --max-w: 1160px;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(13,32,69,.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

/* ---- UTILITY ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section--alt { background: var(--off-white); }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); }

.section-label {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 18px;
}
.section-title--white { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
}

/* ---- TOPBAR ---- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: 7px 0;
  letter-spacing: .02em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--gold-light); text-decoration: none; }
.topbar a:hover { color: var(--white); }
.topbar-right { display: flex; gap: 20px; }

/* ---- HEADER / NAV ---- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(13,32,69,.07);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -.01em;
}
.logo span { color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: all .2s;
  letter-spacing: .02em;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav .cta-nav {
  background: var(--navy);
  color: var(--white);
  margin-left: 8px;
  padding: 8px 20px;
}
.main-nav .cta-nav:hover { background: var(--navy-light); color: var(--white); }

/* hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); margin: 5px 0; transition: .3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none; flex-direction: column; align-items: flex-start;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--white); border-bottom: 2px solid var(--gold);
    padding: 16px 24px 20px; gap: 2px; box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 10px 0; border-bottom: 1px solid var(--border); }
  .main-nav .cta-nav { margin: 10px 0 0; text-align: center; border-bottom: none; }
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo { color: var(--white); font-size: 1.3rem; }
.footer-brand p { margin-top: 14px; font-size: .92rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .92rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col address { font-style: normal; font-size: .88rem; line-height: 1.8; }
.footer-col address a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer-col address a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-gst { font-size: .78rem; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  padding: 72px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.page-hero .gold-line {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 0 auto 16px;
}
.page-hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
}

/* ---- LEGAL PAGES ---- */
.legal-body { max-width: 820px; margin: 0 auto; }
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin: 40px 0 10px;
}
.legal-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 24px 0 8px;
}
.legal-body p, .legal-body li { font-size: .97rem; color: #3a4255; margin-bottom: 10px; }
.legal-body ul, .legal-body ol { padding-left: 22px; margin-bottom: 14px; }
.legal-body ul li { list-style: disc; }
.legal-body ol li { list-style: decimal; }
.legal-body table {
  width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .92rem;
}
.legal-body table th {
  background: var(--navy); color: var(--white);
  padding: 10px 14px; text-align: left;
}
.legal-body table td {
  padding: 9px 14px; border-bottom: 1px solid var(--border);
}
.legal-body table tr:nth-child(even) td { background: var(--off-white); }
.legal-highlight {
  background: #fff8e7; border-left: 4px solid var(--gold);
  padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0;
}
