html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    flex: 1;   /* This grows to push footer down */
}


/* Reset / Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
  color: #322e2b;
  background: white;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: #efe9e2;
  padding: 1px 0;
  border-bottom: 1px solid #d4d4d4;
}

.logo-text {
  font-family: 'Zilla Slab', serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #322e2b;
  margin: 0;
  padding-left: 1px;   /* Change this to move "meiner" horizontally */
}





/* Make the main title clickable and only as wide as the text */
#mainTitle {
    display: inline-block;   /* Shrink <h1> to text width */
    user-select: none;       /* Prevent text selection */
    cursor: pointer;         /* Hand cursor */
    padding: 5px;            /* Optional clickable space */
    margin: 0;               /* Remove default h1 spacing */
}

/* Make sure the container doesn’t force full width on the h1 */
.container {
    display: flex;           /* Keep flex layout if you want */
    align-items: center;     /* Vertical centering */
}

#mainTitle {
    flex: 0 0 auto;          /* Prevent stretching inside flex */
}





/* Responsive Header */
@media (max-width: 768px) {
  .logo-text {
    font-size: 2.8rem;
    padding-left: 15px;  /* Change this for mobile */
  }
}

/* Section Styling */
section {
  padding: 70px 0;   /* Change this to adjust spacing */
}

/* Section Titles */
.section-title {
  color: #322e2b;
  text-align: center;
  font-size: 2.2rem;
  margin: 50px 0 25px;
}

/* Intro Text */
.intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Services Section */
.services-section {
  background: white;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  justify-content: center;
  margin-top: 40px;
}

.service-card {
  background: white;
  padding: 35px;
  width: 320px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(50,46,43,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card h3 {
  color: #322e2b;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

/* Contact Section */
.contact {
  background: #322e2b;
  color: white;
  text-align: center;
  padding: 90px 20px;
}

.contact-text {
  font-size: 1.6rem;
  margin: 25px 0;
}

.contact a {
  color: #efe9e2;
  text-decoration: none;
  font-size: 1.4rem;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
    background-color: #322e2b;   /* Dark background */
    color: #efe9e2;              /* Light text color */
    text-align: center;           /* Center content */
    padding: 20px 0;              /* Vertical spacing */
    font-size: 0.95rem;
}

/* Dedicated footer container */
.footer-container {
    max-width: 1200px;            /* Match page layout */
    margin: 0 auto;               /* Center content horizontally */
    padding: 0 15px;              /* Optional horizontal padding */
    display: block;               /* Normal block behavior */
}

/* Footer email link */
.footer-container .footer-email {
    color: #efe9e2;               /* Keep same text color */
    text-decoration: underline;   /* Optional: make it clear it’s a link */
}

.footer-container .footer-email:hover {
    color: #fff;                  /* Slight hover effect for interactivity */
}

/* Optional: spacing above the footer */
.contact {
    margin-bottom: 20px;          /* Push footer down a little */
}


/* Responsive Services */
@media (max-width: 768px) {
  .service-card {
    width: 100%;
  }
}
