/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: rgb(254, 248, 229);
    width: 100%;
    overflow-x: hidden;
    padding: 0 0 0 0; 
  }
  
  .hero {
    display: flex;
    flex-direction: column;
    /* align-items: center; */ /* Removed to let children define their width/alignment more directly */
    position: relative;
    padding: 0 0 0 0; /* Remove top and right padding */
    height: auto;
    background-color: rgb(254, 248, 229);
    width: 100%; /* Ensure hero container spans full page width */
  }
  
  .hero-image {
    width: 75%; /* 3/4 of page width */
    align-self: flex-end; /* Position on the right */
    border-radius: 0 0 0 5px; /* Only round bottom-left corner */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-right: 0; /* Remove right margin to extend to edge */
    margin-top: 0; /* Ensure no gap at the top */
    overflow: hidden; /* Ensure content stays within bounds */
  }
  
  .hero-image::after {
    content: '';
    display: block;
    padding-bottom: 0; /* Will be adjusted based on actual image */
  }
  
  /* Use an actual img tag instead of background */
  .hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* Show the entire image */
  }
  
  .hero-title {
    width: 100%;
    margin-top: 20px;
    text-align: center;
    background-color: rgb(254, 248, 229); /* Match the page background */
    padding: 0 0;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }
  
  .title-container {
    width: 90%; /* This makes the container take up 90% of the page width */
    margin: 0 auto; /* Center the container */
  }
  
  .hero-title h1 {
    font-size: clamp(2rem, 6vw, 10rem); /* Responsive font size */
    margin-bottom: 10px;
    color: #2c3e50; /* Dark blue color to match the theme */
    font-weight: 800;
    font-family: 'eb garamond', serif;
    text-transform: uppercase;
    width: 100%; /* Take up full width of its container (which is 90% of page) */
  }
  
  .hero-title p {
    color: #34495e;
  }
  
  /* Styling for Services Section */
  .services-section {
    background-color: rgb(124, 133, 158);
    padding: 0 0; /* Vertical padding, no horizontal for full width */
    width: 100%;
    color: #333; /* Default text color for this section, adjust as needed */
  }
  
  .services-container {
    max-width: 900px; /* Max width for content within the section */
    margin: 0 auto; /* Center the content */
    padding: 0 20px; /* Padding for content inside the container */
  }
  
  .services-section h2 {
    font-family: 'eb garamond', serif;
    font-size: 3rem; /* Large heading for services */
    color: #2c3e50; /* Darker color for heading, or white if preferred on dark bg */
    text-align: left;
    margin-bottom: 0;
  }
  
  .service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Subtle separator line */
    font-family: 'eb garamond', serif;
  }
  
  .service-item:last-child {
    border-bottom: none;
  }
  
  .service-name {
    flex-grow: 1;
    font-size: 1.1rem;
    color: #333;
  }
  
  .service-price {
    min-width: 80px; /* Ensure price column has some width */
    font-size: 1.1rem;
    color: #333;
    text-align: right;
    margin-right: 20px;
  }
  
  .service-button {
    background-color: rgb(254, 248, 229); /* Light button color from image */
    color: #333;
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .service-button:hover {
    background-color: #e0dccc; /* Slightly darker on hover */
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .hero-image {
      width: 90%;
      align-self: center;
      margin-right: 0;
    }
    
    .hero-title {
      width: 90%;
    }
  }
  
  /*
  nav {
    background-color: #2c3e50;
  }
  
  nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    padding: 15px 0;
    display: block;
  }
  
  nav ul li a:hover {
    background-color: #34495e;
  }*/
  
  main {
    padding: 0; /* Ensure no padding */
    width: 100%; /* Ensure main takes full width */
    max-width: none; /* Remove max-width constraint */
    margin: 0; /* Ensure no margin */
  }
  
  section {
    margin-bottom: 40px;
  }
  
  /* Styles for the new boxed 'Über Uns' section */
  .about-section-boxed {
    padding: 0 0; /* Remove horizontal padding, keep vertical */
    background-color: rgb(254, 248, 229); /* Match page background */
    width: 100%; /* Ensure section takes full width */
    margin: 0;
  }
  
  .about-box-container {
    display: flex;
    width: 100%; /* Make box full width */
    /* max-width: 1200px; */ /* Removed */
    /* margin: 0 auto; */ /* Removed */
    background-color: #4a5568; /* Dark slate gray from image */
    color: white;
    border-radius: 0px; /* Remove border-radius if it's full screen width */
    overflow: hidden; /* To contain floated/flex children and border-radius */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  
  .about-text-column {
    flex: 1; /* Adjust flex-basis or use percentages if needed */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'eb garamond', serif;
  }
  
  .about-text-column h2 {
    color: white; /* Ensure heading is white */
    font-size: 2.8rem; /* Adjust as per image */
    margin-bottom: 20px;
  }
  
  .about-text-column p {
    font-size: 1rem; /* Adjust as per image */
    line-height: 1.7;
  }
  
  .about-image-column {
    flex: 1; /* Adjust flex-basis or use percentages if needed */
    display: flex; /* To help center image if it's smaller than column */
  }
  
  .about-image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the column, might crop */
    display: block;
  }
  
  h2 {
    color: #2c3e50;
    margin-bottom: 10px;
  }
  
  ul {
    list-style-type: disc;
    margin-left: 20px;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  form label {
    margin-top: 10px;
  }
  
  form input,
  form textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  form button {
    margin-top: 15px;
    padding: 10px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  form button:hover {
    background-color: #34495e;
  }
  
  /* Contact Section Styles */
  .contact-section {
    background-color: rgb(254, 248, 229); /* Match page background */
    padding: 60px 0;
    width: 100%;
  }
  
  .contact-container {
    max-width: 1100px; /* Adjust as needed */
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .contact-section h2 {
    font-family: 'eb garamond', serif;
    font-size: 3.5rem; /* Large 'Kontakt' heading */
    color: #2c3e50;
    text-align: left;
    margin-bottom: 15px;
  }
  
  .contact-intro {
    font-family: 'eb garamond', serif;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 40px;
    max-width: 600px; /* Constrain width of intro text */
  }
  
  .contact-content-wrapper {
    display: flex;
    gap: 40px; /* Space between columns */
  }
  
  .contact-details-column {
    flex: 1; /* Adjust flex ratio as needed, e.g., flex: 0 0 40%; */
    font-family: 'eb garamond', serif;
  }
  
  .contact-detail-item {
    margin-bottom: 30px;
  }
  
  .contact-label {
    display: block;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
  }
  
  .contact-detail-item p {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
  }
  
  .contact-form-column {
    flex: 1.5; /* Adjust flex ratio as needed, e.g., flex: 1 1 60%; */
  }
  
  .contact-form-column h3 {
    font-family: 'eb garamond', serif;
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
    text-align: left;
  }
  
  .custom-form-trigger-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #2c3e50; /* Theme color, adjust as needed */
    color: white;
    font-family: 'eb garamond', serif;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    margin-top: 10px; /* Space below the heading */
    margin-bottom: 20px; /* Space above the forms.app div if it's still there */
    transition: background-color 0.3s ease;
  }
  
  .custom-form-trigger-button:hover {
    background-color: #34495e; /* Darker shade on hover */
  }

  #formsapp-iframe {
    border-radius: 4px; /* Optional: if you want rounded corners on the iframe */
  }

  /* Overlay Styles */
  .overlay-container {
    position: fixed; /* Sit on top of the page content */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it's on top */
  }
  
  .overlay-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    max-width: 400px;
    width: 90%;
  }
  
  .overlay-close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.8rem;
    color: #888;
    cursor: pointer;
    line-height: 1;
  }
  
  .overlay-close-button:hover {
    color: #333;
  }
  
  .overlay-content p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  .overlay-contact-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2c3e50; /* Theme color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .overlay-contact-link:hover {
    background-color: #34495e;
  }

  footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
  }
  