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

:root {
  --background: #f7f5f2;
  --foreground: #3d3832;
  --card: #f2efe9;
  --primary: #b08968;
  --primary-foreground: #faf8f5;
  --muted: #e8e4dd;
  --muted-foreground: #6b6358;
  --border: #ddd7cd;
}

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

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

.text-center { text-align: center; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 242, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: rgba(176, 137, 104, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 600;
}

.nav {
  display: none;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav { display: flex; }
}

.nav-link {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--foreground); }

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px;
}

.lang-btn {
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 500;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
  color: var(--muted-foreground);
}

.lang-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
}

.phone-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  color: var(--foreground);
  font-size: 0.875rem;
  transition: background 0.2s;
}

.phone-btn:hover { background: var(--muted); }
.phone-btn svg { width: 16px; height: 16px; }

@media (min-width: 640px) {
  .phone-btn { display: flex; }
}

/* Hero */
.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.3), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title { font-size: 3.5rem; }
}

.hero-tagline {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: rgba(176, 137, 104, 0.9);
  color: white;
  width: 400px;
  margin-top: 2rem;
}

.btn-primary:hover { background: var(--primary); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
  margin-top: 2rem;
}

.btn-outline:hover { background: var(--muted); }

/* Services */
.services {
  padding: 4rem 0;
  background: var(--card);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.service-content p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Welcome */
.welcome {
  padding: 4rem 0;
  background: linear-gradient(to bottom, var(--background), var(--card));
}

.welcome h2 {
  font-size: 2rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .welcome h2 { font-size: 2.5rem; }
}

.welcome-text {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Team */
.team {
  padding: 4rem 0;
  background: var(--card);
}

.team h2 {
  font-size: 2rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .team h2 { font-size: 2.5rem; }
}

.team-subtitle {
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}

.team-member { text-align: center; }

.team-member img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--background);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .team-member img { width: 160px; height: 160px; }
}

.team-name {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
}

/* Contact */
.contact {
  padding: 4rem 0;
  background: linear-gradient(to bottom, var(--card), var(--background));
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact h2 {
  font-size: 2rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .contact h2 { font-size: 2.5rem; }
}

.contact-subtitle {
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

/* Mockup Banner */
.mockup-banner {
  background: #fef3c7;
  border-bottom: 1px solid #fcd34d;
  padding: 0.75rem 0;
}

.mockup-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}

.mockup-badge {
  font-size: 0.75rem;
  font-weight: 500;
  background: #fde68a;
  color: #92400e;
  padding: 2px 8px;
  border-radius: 4px;
}

.mockup-text {
  font-size: 0.875rem;
  color: #92400e;
}

/* Newsletter */
.newsletter {
  padding: 4rem 0;
  background: rgba(176, 137, 104, 0.1);
}

.newsletter h2 {
  font-size: 2rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .newsletter h2 { font-size: 2.5rem; }
}

.newsletter-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin: 0 auto 1rem;
}

.newsletter-subtitle {
  color: var(--muted-foreground);
  margin-top: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  margin: 2rem auto 0;
}

@media (min-width: 640px) {
  .newsletter-form { flex-direction: row; }
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.newsletter-btn {
  margin-top: 0;
}

.newsletter-privacy {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

/* Investor */
.investor {
  padding: 4rem 0;
  background: linear-gradient(to bottom, var(--card), var(--background));
}

.investor-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .investor-card { padding: 3rem; }
}

.investor-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin: 0 auto 1rem;
}

.investor h2 {
  font-size: 2rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .investor h2 { font-size: 2.5rem; }
}

.investor-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.investor-desc {
  color: var(--muted-foreground);
  margin-top: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.investor-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.benefit-badge {
  font-size: 0.75rem;
  background: rgba(176, 137, 104, 0.1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 999px;
}

.investor .btn {
  margin-top: 2rem;
}

/* Welcome text bold */
.welcome-text-bold {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Map Container */
.map-container {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

@media (min-width: 768px) {
  .map-container { aspect-ratio: 1; }
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: var(--card);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--foreground); }

.copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.social-links a:hover { color: var(--foreground); }

.social-links svg {
  width: 20px;
  height: 20px;
}

/* Raumkonzepte Page */
.page-header {
  padding: 4rem 0;
  background: var(--card);
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 768px) {
  .page-header h1 { font-size: 2.5rem; }
}

.page-header .subtitle {
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.rooms-section {
  padding: 4rem 0;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.room-card {
  background: white;
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.room-image-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}

.room-card:hover img {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: white;
}

.lightbox-content {
  max-width: 80rem;
  max-height: 90vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 1.5rem;
  border-radius: 0 0 8px 8px;
}

.lightbox-caption h3 {
  color: white;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0;
}

.lightbox-caption p {
  color: rgba(255,255,255,0.8);
  margin: 0.25rem 0 0;
}

.room-card-content {
  padding: 1rem;
}

.room-card h2 {
  font-size: 1.125rem;
  font-weight: 600;
}

.room-card p {
  color: var(--muted-foreground);
  margin-top: 0.25rem;
  margin-left: 2rem;
  font-size: 0.875rem;
}

.room-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.room-number {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(176, 137, 104, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Room Navigation */
.room-nav {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.room-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: all 0.2s;
}

.room-nav-link:hover {
  color: var(--foreground);
  border-color: rgba(176, 137, 104, 0.5);
  background: rgba(176, 137, 104, 0.05);
}

.room-nav-number {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(176, 137, 104, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.room-nav-link:hover .room-nav-number {
  background: var(--primary);
  color: var(--primary-foreground);
}