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

:root {
  --bordeaux: #6b1f2a;
  --bordeaux-dark: #5a1a23;
  --gold: #c9a04f;
  --gold-light: #d8b876;
  --creme: #faf3ea;
  --white: #ffffff;
  --serif: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  --signature: 'Segoe Script', 'Brush Script MT', cursive;
  --sans: -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  background-color: var(--white);
}

a {
  color: var(--bordeaux);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold);
}

/* Header */
header {
  background-color: var(--white);
  border-bottom: 2px solid var(--gold);
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.logo-section img {
  width: 50px;
  height: auto;
}

.company-info h1 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--bordeaux);
  margin: 0;
  line-height: 1.2;
}

.signature-name {
  font-family: var(--signature);
  font-size: 1rem;
  color: var(--gold);
  margin-top: 0.25rem;
}

.header-contact {
  font-size: 1rem;
  font-weight: 600;
  color: var(--bordeaux);
}

.header-contact a {
  color: var(--bordeaux);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('bilder/kitchen.webp') center/cover no-repeat;
  color: var(--white);
  padding: 6rem 1rem;
  text-align: center;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-button {
  display: inline-block;
  background-color: var(--gold);
  color: var(--bordeaux);
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--gold-light);
  color: var(--bordeaux-dark);
}

/* About Section */
.about {
  background-color: var(--creme);
  padding: 3rem 1rem;
  text-align: center;
}

.about-container {
  max-width: 600px;
  margin: 0 auto;
}

.about img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.about h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--bordeaux);
  margin-bottom: 1rem;
}

.about p {
  line-height: 1.8;
  color: #555;
}

/* Services Section */
.services {
  padding: 3rem 1rem;
  background-color: var(--white);
}

.services-container {
  max-width: 1000px;
  margin: 0 auto;
}

.services h2 {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--bordeaux);
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background-color: var(--creme);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--bordeaux);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card .price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.service-card .fuel-surcharge {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
  font-style: italic;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card li {
  padding: 0.35rem 0;
  color: #555;
  border-bottom: 1px dotted #ddd;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.service-card li:last-child {
  border-bottom: none;
}

.service-card li::before {
  content: "♡";
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.service-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
  font-style: italic;
}

/* Private Services Box */
.private-services {
  background-color: #f5f5f5;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 3rem;
}

.private-services h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--bordeaux);
  margin-bottom: 1rem;
}

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

.private-service-item h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--bordeaux);
  margin-bottom: 0.5rem;
}

.private-service-item .price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.private-service-item p {
  font-size: 0.95rem;
  color: #666;
}

.private-services-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd;
  font-style: italic;
}

/* Info Box */
.info-box {
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark));
  color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  margin: 3rem auto;
  max-width: 700px;
  border-left: 6px solid var(--gold);
}

.info-box h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-box p {
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1rem;
}

.info-box strong {
  color: var(--gold-light);
}

/* Contact Section */
.contact {
  background-color: var(--creme);
  padding: 3rem 1rem;
  text-align: center;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact h2 {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--bordeaux);
  margin-bottom: 2rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-method h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--bordeaux);
  margin-bottom: 0.75rem;
}

.contact-method a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bordeaux);
  display: block;
}

.contact-method a:hover {
  color: var(--gold);
}

.contact-domain {
  font-size: 1rem;
  color: #666;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--gold);
}

/* Footer */
footer {
  background-color: var(--bordeaux);
  color: var(--white);
  padding: 2rem 1rem;
  text-align: center;
}

footer p {
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

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

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

/* Accessibility & Mobile Styles */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  .hero h2 {
    font-size: 1.75rem;
  }

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

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }
}

/* Utility Classes */
.divider {
  text-align: center;
  margin: 2rem 0;
  color: var(--gold);
  font-size: 1.5rem;
}

/* Links Styling */
a[href^="tel:"],
a[href^="mailto:"] {
  font-weight: 600;
}

/* Print Styles */
@media print {
  header, footer {
    background-color: transparent;
  }
  a {
    text-decoration: underline;
  }
}
