/* style.css */

:root {
  --primary: #800020; /* Weinrot */
  --secondary: #ffeef0;
  --text: #2b2b2b;
  --background: #fafafa;
  --accent: #a31b32;
  --rhythm-unit: 1rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
}
.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 calc(var(--rhythm-unit) * 1);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-top: calc(var(--rhythm-unit) * 2);
  margin-bottom: calc(var(--rhythm-unit) * 1);
}

h1 {
  font-size: calc(var(--rhythm-unit) * 3);
}

h2 {
  font-size: calc(var(--rhythm-unit) * 2.5);
}

h3 {
  font-size: calc(var(--rhythm-unit) * 2);
}

h4 {
  font-size: calc(var(--rhythm-unit) * 1.5);
}

p, ul, ol {
  margin-bottom: var(--rhythm-unit);
}

.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 calc(var(--rhythm-unit) * 1);
}

header {
  padding: calc(var(--rhythm-unit) * 2) var(--rhythm-unit) var(--rhythm-unit);
  position: relative;
}

.logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--rhythm-unit);
  flex-wrap: wrap;
  text-align: left;
}

.logo {
  width: 80px;
  max-width: 15vw;
  height: auto;
  margin-bottom: var(--rhythm-unit);
}

.logo-title h1 {
  color: var(--primary);
  margin: 0;
}

.lang-switcher {
  position: absolute;
  top: var(--rhythm-unit);
  right: var(--rhythm-unit);
  padding: 0.3rem;
}

.experience-hero {
  display: flex;
  flex-direction: column;
  align-items: center; /* zentriert auch vertikal */
  justify-content: center;
  gap: calc(var(--rhythm-unit) * 2);
  padding: calc(var(--rhythm-unit) * 4) 0;
  
}

@media (min-width: 768px) {
    .experience-hero {
      flex-direction: row;
      align-items: center; /* jetzt auch für größere Screens */
    }

  .experience-text {
    max-width: 600px;
  }
  
}

.experience-text h2 {
  color: var(--primary);
}

.mockup-container {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  
  padding: 0;
  width: 320px;
  height: auto;
}

.phone-mockup img {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: contain;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--rhythm-unit);
}

.store-badge {
  height: 60px;
  width: auto;
  max-width: 200px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 8px;
  display: block;
}

.store-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta, .cta-bottom {
  text-align: center;
  background-color: var(--secondary);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: calc(var(--rhythm-unit) * 3) var(--rhythm-unit);
  margin: calc(var(--rhythm-unit) * 3) 0;
}

.cta h2, .cta-bottom h2 {
  color: var(--primary);
}

.tours {
  text-align: center;
  padding: calc(var(--rhythm-unit) * 4) var(--rhythm-unit);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--rhythm-unit) * 2);
  justify-content: center;
  margin-top: calc(var(--rhythm-unit) * 2);
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 300px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.card-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.card h4 {
  margin: 0.75rem 1rem 0.25rem;
  color: var(--primary);
}

.card p {
  margin: 0.25rem 1rem 1rem;
  color: var(--text);
}

footer {
  text-align: center;
  padding: calc(var(--rhythm-unit) * 2) var(--rhythm-unit);
  font-size: 0.9rem;
  color: #888;
}
