﻿/* ---------- ROOT & BASE ---------- */
:root {
  --bg: #0f0f0f;
  --accent: darkgoldenrod;
  --muted: #bbb;
  --card: #1a1a1a;
  --radius: 12px;
  --maxw: 1200px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #fff;
}

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

body {
  background: var(--bg);
  line-height: 1.6;
  padding: 0 16px;
  display: flex;
  justify-content: center;
  color: #fff;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* ---------- HERO HEADER ---------- */
header.hero {
  position: relative;
  background: url('hero-image.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  width: 100%;
}

header.hero::after {
  content: "";
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}

header.hero .hero-content {
  position: relative;
  z-index:1;
  padding: 80px 24px 40px;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}

header.hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

header.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ---------- COOKIE KIOSK ---------- */
.cookieskiosk {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cookieskiosk h2 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.cookieskiosk p {
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: var(--muted);
}

.cookieskiosk .images {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1000px;
}

.cookieskiosk .images img {
  width: 48%;
  max-width: 500px;
  max-height: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.cookieskiosk a.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
  margin-top: 20px;
}

.cookieskiosk a.btn:hover {
  background: #a94618;
}

/* ---------- NAVBAR ---------- */
nav {
  background: var(--card);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

nav .logo img {
  height: 80px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  background: #fff;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ---------- CONTENT & CHIPS ---------- */
section.content {
  padding: 48px 24px;
}

section.content h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--accent);
}

section.content p {
  margin-bottom: 24px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.chip {
  background: #2a2a2a;
  border: 1px solid rgba(199,90,42,0.12);
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #ddd;
}

/* ---------- CONTACT & FOOTER ---------- */
aside.contact {
  background: #1a1a1a;
  text-align: center;
}

aside.contact h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--accent);
}

aside.contact p {
  margin-bottom: 16px;
}

aside.contact a {
  color: #fff;
  text-decoration: underline;
}

aside.contact a.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.2s ease;
}

aside.contact a.btn:hover {
  background: #a94618;
}

footer {
  background: var(--card);
  text-align: center;
  padding: 24px;
  font-size: 0.9rem;
  color: #777;
}

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

footer a:hover {
  text-decoration: underline;
}

/* ---------- RESPONSIVE IMAGES ---------- */
img.responsive-logo,
img.responsive-hero-logo {
  width: 100%;
  height: auto;
  max-width: 400px;
}

@media (max-width: 768px) {
  img.responsive-logo { max-width: 260px; }
  img.responsive-hero-logo { max-width: 300px; }
}

@media (max-width: 480px) {
  img.responsive-logo { max-width: 190px; }
  img.responsive-hero-logo { max-width: 220px; }
}

@media (max-width: 360px) {
  img.responsive-logo { max-width: 160px; }
  img.responsive-hero-logo { max-width: 200px; }
}

/* ---------- CENTER ALIGN ---------- */
.logo,
h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* ---------- NAV RESPONSIVE ---------- */
@media (max-width: 768px) {
  nav {
    position: relative;
    z-index: 2000;
  }

  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0px 0;
    display: none;
    z-index: 1999;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li a {
    color: #fff;
    font-size: 1.1rem;
  }

  .menu-toggle {
    display: flex;
    z-index: 2001;
  }

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

  .cookieskiosk h2 {
    font-size: 1.5rem;
  }

  .cookieskiosk .images img {
    width: 90%;
  }
}
