/* === VARIABLES & RESET === */
:root {
  --color-bg: #ffffff;
  --color-bg-alt: #faf9f6;
  --color-text: #1a1a1a;
  --color-text-muted: #666666;
  --color-accent: #b4934d; /* Refined Gold */
  --color-accent-hover: #967a3f;
  --color-border: #e5e5e5;

  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Montserrat", sans-serif;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* === LANGUAGE TOGGLE LOGIC === */
body.lang-de-active .nav-en,
body.lang-de-active .content-en,
body.lang-de-active .lang-en {
  display: none !important;
}

body.lang-en-active .nav-de,
body.lang-en-active .content-de,
body.lang-en-active .lang-de {
  display: none !important;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--color-accent);
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--color-text-muted);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === BUTTONS === */
.btn-vintage {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--color-accent);
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid var(--color-accent);
}

.btn-vintage:hover {
  background: transparent;
  color: var(--color-accent);
}

/* === HEADER === */
#main-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 45px;
  width: auto;
  transition: var(--transition);
}

nav ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

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

.lang-switch button {
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.75rem;
  transition: var(--transition);
}

.lang-switch button:hover {
  background: var(--color-accent);
  color: white;
}

/* === HERO === */
#hero {
  padding: 12rem 0 8rem;
  text-align: center;
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.hero-logo img {
  height: 120px;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

.subtitle {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-style: italic;
  font-family: var(--font-serif);
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  background: white;
  border-radius: 50px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
}

.status-badge.open .dot {
  background: #27ae60;
  box-shadow: 0 0 10px rgba(39, 174, 96, 0.4);
}

.status-badge.closed-now .dot {
  background: #e74c3c;
}

/* === SECTIONS === */
section {
  padding: 8rem 0;
}

/* === ABOUT === */
.vintage-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem;
  border: 1px solid var(--color-border);
  background: white;
  box-shadow: var(--shadow);
}

.vintage-box h2::after {
  display: none;
}

/* === SERVICES === */
#services {
  background: var(--color-bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: white;
  padding: 3.5rem 2.5rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--color-border);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.service-card h3 {
  margin-bottom: 1.25rem;
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  padding-right: 2rem;
}

.contact-info h2 {
  text-align: left;
}

.contact-info h2::after {
  left: 0;
  transform: none;
}

.address,
.phone {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.phone a {
  color: var(--color-accent);
  font-weight: 600;
}

/* Opening Hours Table */
.opening-hours {
  margin-top: 3rem;
}

.opening-hours h4 {
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--color-text);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--color-border);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 0.85rem 0;
  font-size: 0.95rem;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 500;
}

.closed {
  color: #e74c3c;
  font-style: italic;
}

/* Map Design */
.map-box {
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  position: relative;
}

.map-overlay {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: white;
  padding: 2rem;
  width: 320px;
  z-index: 10;
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
}

.map-overlay h3 {
  margin-bottom: 0.5rem;
}

.map-overlay p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.map-box iframe {
  filter: grayscale(0.2) contrast(1.1);
  transition: var(--transition);
}

.map-box:hover iframe {
  filter: grayscale(0);
}

/* === FOOTER === */
footer {
  padding: 4rem 0;
  border-top: 1px solid var(--color-border);
  text-align: center;
  background: var(--color-bg-alt);
}

footer p {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact-info {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  #main-header {
    padding: 1rem 0;
  }

  nav ul {
    gap: 1.5rem;
  }

  nav a {
    font-size: 0.75rem;
  }

  .header-content {
    flex-direction: column;
    gap: 1.25rem;
  }

  section {
    padding: 5rem 0;
  }

  .vintage-box {
    padding: 2rem;
  }
}
