/* ==========================================================================
   GL Däck – styles (dark / compact)
   ========================================================================== */

:root {
  --color-bg: #1b1b1d;        /* main dark background */
  --color-bg-alt: #202022;    /* alternating section background */
  --color-surface: #262628;   /* card / surface background */
  --color-text: #e6e6e7;      /* primary light text */
  --color-text-muted: #a2a2a6;/* secondary text */
  --color-heading: #f4f4f5;
  --color-accent: #b8b8bc;    /* light gray accent (buttons, highlights) */
  --color-accent-strong: #d8d8db;
  --color-border: #38383a;
  --color-dark: #101011;      /* header / footer, darkest tone */
  --radius: 8px;
  --max-width: 1100px;
  --transition: 0.2s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
  font-size: 15px;
}

h1, h2, h3 {
  margin: 0 0 0.4em;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-heading);
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.05rem;
}

p {
  margin: 0 0 0.8em;
  color: var(--color-text-muted);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-strong);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-dark);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.5rem;
}

.logo {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.logo:hover {
  color: var(--color-accent);
}

.site-nav ul {
  display: flex;
  gap: 0.4rem;
}

.site-nav a {
  color: #d0d0d2;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  display: inline-block;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.site-nav a:hover {
  background: var(--color-surface);
  border-color: var(--color-accent);
  color: var(--color-accent-strong);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
}

.hero-content {
  max-width: 620px;
  color: #fff;
}

.hero-content h1 {
  font-size: 2.3rem;
  color: #fff;
  margin-bottom: 0.25em;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #dcdcdd;
  font-weight: 600;
  margin-bottom: 0.4em;
}

.hero-text {
  color: #b9b9bc;
  margin-bottom: 1.3em;
  font-size: 0.95rem;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition), color var(--transition);
}

.btn-primary {
  background: var(--color-accent);
  color: #1b1b1d;
}

.btn-primary:hover {
  background: var(--color-accent-strong);
  color: #1b1b1d;
  transform: translateY(-2px);
}

/* ---------- Sections ---------- */
.section {
  padding: 2.75rem 1.5rem;
}

.section:nth-of-type(even) {
  background: var(--color-bg-alt);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 640px;
  text-align: center;
}

.section-intro {
  max-width: 640px;
  margin-bottom: 1.5rem;
}

.section-note {
  font-size: 0.85rem;
  font-style: italic;
  color: #7c7c80;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.col-image img,
.col-map iframe {
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  filter: grayscale(15%) brightness(0.92);
}

/* ---------- Services ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
  border-color: var(--color-accent);
}

.card h3::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-right: 0.45rem;
}

.card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* ---------- Opening hours ---------- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto 1rem;
}

.hours-table td {
  padding: 0.45rem 0.9rem;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--color-heading);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--color-text-muted);
}

/* ---------- Contact ---------- */
.contact-list li {
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
}

.contact-list strong {
  display: inline-block;
  min-width: 85px;
  color: var(--color-heading);
}

.map-frame {
  width: 100%;
  height: 240px;
  border: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-dark);
  color: #9a9a9e;
  padding: 1.75rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.footer-inner p {
  margin: 0.15em 0;
  color: #9a9a9e;
  font-size: 0.9rem;
}

.footer-company {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.footer-copy {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: #636366;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-dark);
    display: none;
    border-bottom: 1px solid var(--color-border);
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.5rem 1.25rem 1rem;
  }

  .site-nav a {
    display: block;
    text-align: center;
  }

  .section {
    padding: 2rem 1.25rem;
  }

  h2 {
    font-size: 1.35rem;
  }
}
