/* General */
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1, h2, h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  color: #111;
}

/* ====== HEADER ====== */

/* Top bar */
.top-bar {
  display: flex;
  justify-content: flex-end;
  background: #0080c0;
  color: white;
  padding: 5px 5px;
  font-size: 14px;
  gap: 20px;
}

.top-bar .contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Logo area */
.logo-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.logo-img {
  height: 50px; /* adjust as needed */
  width: auto;
}

.text-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  gap: 10px;
}

.text-airdry {
  color: #0080c0;
}

.text-systems {
  color: #555;
}


.company-info {
  text-align: right;
}

.company-name {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.company-sub {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Navigation */
.main-nav {
  background: #f8f8f8;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.main-nav li {
  margin: 0 15px;
}

.main-nav a {
  text-decoration: none;
  font-weight: bold;
  color: #333;
  padding: 15px 0;
  display: inline-block;
}

.main-nav a:hover {
  color: #0080c0;
}

/* Menu button (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile view */
@media (max-width: 768px) {
  .logo-area {
    flex-direction: column;
    text-align: center;
  }

  .company-info {
    text-align: center;
  }

  .main-nav ul {
    display: none;
    flex-direction: column;
    text-align: center;
    background: #f8f8f8;
  }

  .main-nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    margin: 10px auto;
  }
}

/* ====== FOOTER ====== */

/* Footer base */
.site-footer {
  background: #333;
  color: #fff;
  padding: 40px 20px 20px;
  font-size: 14px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  color: #0080c0;
}

/* Columns layout */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 250px;
  margin: 10px;
}

.footer-column h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 6px;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: invert(100%); /* makes icons white */
  transition: filter 0.3s ease;
}

.social-icons a:hover img {
  filter: invert(63%) sepia(98%) saturate(4774%) hue-rotate(182deg) brightness(96%) contrast(96%);
  /* turns icons into blue (#0080c0) */
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #555;
  padding-top: 15px;
  font-size: 13px;
}

.footer-bottom a {
  margin: 0 8px;
}

.footer-bottom .designer-credit a {
  background: linear-gradient(90deg, #0080c0, #777);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.footer-bottom .designer-credit a:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    margin: 20px 0;
  }

  .social-icons {
    justify-content: center;
  }
}

/* ====== Main ====== */

/* Hero Section */
.hero {
  position: relative;
  height: 80vh; /* 80% of viewport height */
  background: url("/assets/images/backgrounds/hero.webp") no-repeat center top;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* dark overlay for readability */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn-primary {
  background: #0080c0;
  color: #fff;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #006a9d;
}


/* ====== Ratings ====== */

.reviews-section {
  background: #f9f9f9;
  padding: 40px 20px;
}

.reviews-title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  margin-bottom: 5px;
  text-align: center;
}

.reviews-sub {
  font-size: 16px;
  text-align: center;
  margin-bottom: 30px;
  color: #444;
}

/* Marquee effect */
.reviews-marquee {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 10px 0;
  animation: scroll 40s linear infinite;
}

.review-card {
  min-width: clamp(240px, 30vw, 350px);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.review-card .head {
  margin-bottom: 8px;
}

.review-card .name {
  font-weight: 600;
  margin-bottom: 4px;
}

.review-card .stars {
  color: #f5c518; /* Yellow stars */
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-card .text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ====== Partner ====== */

.partner-logos {
  padding: 40px 20px;
  text-align: center;
  background: #f9f9f9;
}

.partner-logos h2 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  margin-bottom: 30px;
}

.partner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px; /* space between logos */
}

.partner-grid img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-grid img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}




/* ====== Team Section ====== */
.team-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.team-section h2 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 28px;
  margin-bottom: 10px;
}

.team-subtitle {
  color: #666;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-items: center;
}

.team-member {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  max-width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.team-member h3 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.team-member .role {
  color: #0080c0;
  font-weight: 500;
  font-size: 15px;
}



/* ====== Map ====== */

.map-section {
  padding: 40px 20px;
  text-align: center;
  background: #f9f9f9;
}

.map-section h2 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  margin-bottom: 20px;
}

/* Default: placeholder centered */
.map-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;   /* gives it height until iframe loads */
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 6px;
  color: #555;
  font-size: 14px;
  text-align: center;
}

/* When iframe is inside, make it responsive 16:9 */
.map-container iframe {
  width: 100%;
  height: 400px; /* fixed height, or use aspect-ratio if modern browsers */
  border: 0;
  border-radius: 6px;
}


/* ====== Contact ====== */

.contact-section {
  padding: 50px 30px;
  background: #f9f9f9;
  text-align: center;
}

.contact-section h2 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-section p {
  color: #555;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
}

.form-group textarea {
  resize: vertical;
}

.form-group.checkbox {
  display: flex;
  align-items: flex-start;   /* Checkbox oben bündig mit Text */
  gap: 8px;                  /* Abstand zwischen Box und Text */
}

.form-group.checkbox input[type="checkbox"] {
  width: auto;    /* nicht 100% */
  margin: 4px 6px 0 0; /* etwas Abstand rechts */
}

.form-group.checkbox label {
  display: inline;          /* statt block */
  font-weight: 400;
  cursor: pointer;
  line-height: 1.5;
}

.btn-primary {
  background: #0080c0;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #006a9d;
}


/* ====== HEADER ====== */

.map-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 6px;
  color: #555;
  text-align: center;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 6px;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #333;
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  z-index: 1000;
}

#cookie-banner a {
  color: #7cc2ff;
  text-decoration: underline;
}

#cookie-banner button {
  background: #0080c0;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

#cookie-banner button:hover {
  background: #006a9d;
}
