* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background: #fff;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}

.navbar {
  width: 100%;
  height: 80px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  position: sticky;      
  top: 0;                
  background: #fff;      /* Ensure background is solid (covers content when scrolling) */
  z-index: 1000;         /* Stay on top of other elements */
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  font-weight: 700;
  color: #333;
}

.logo img {
  width: 40px;
  height: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  font-size: 20px;
  color: #333;
  font-weight: 800;
  text-shadow: 1px 1.2px 1.5px #6b6161;
}
.nav-links a:hover{
  color: #f5b000;
    
}
.nav-links a.active {
  color: #f5b000;
}

.phone_1 {
  font-size: 20px;
  font-weight: 800;
  text-shadow: 1px 1.2px 1.5px #6b6161;
  color: #333;
}


/* section1  */

.s_1{
    display: flex;
    flex-direction: column;
    padding: 3% 0;
    gap: 3em;
}

.s_1_0{
    display: flex;
    justify-content: space-around;

}

.s_1_0 div{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    font-size: 20px;
}
.s_1_0 div p{
    color: #9a7418;
}


/* section2 */

.sec_2 {
  width: 100%;
  padding: 2% 1%;
}
.container {
  background-color: white;
  border-radius: 20px;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header h1 {
  font-size: 36px;
  margin: 0;
}

.phone {
  font-size: 28px;
  font-weight: bold;
}

.subtitle {
  margin: 20px 0 40px;
  font-size: 18px;
}

/* Form grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
}

/* Fields */
.field {
  display: flex;
  flex-direction: column;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  margin-bottom: 8px;
  font-size: 15px;
}

label span {
  color: #f4a100;
}

input,
select {
  height: 55px;
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  outline: none;
}

input:focus,
select:focus {
  border-color: #999;
}

/* Button */
.submit-btn {
  grid-column: 1 / -1;
  height: 60px;
  background: #3c3c3c;
  color: #fff;
  font-size: 22px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.submit-btn:hover {
  background: #2f2f2f;
}


/* Note */
.note {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 15px;
  font-size: 15px;
}

.note span {
  color: #f4a100;
}

/* Responsive */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}




/* =====================================
   Footer
   ===================================== */
.footer {
  background: #3a3a3a;
  padding-top: 15em;
  color: white;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 260px;
}

.footer-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.footer-col h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.footer-col p {
  line-height: 1.7;
  color: #e0e0e0;
}

.footer-links {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, auto);
  column-gap: 40px;
  row-gap: 12px;
}

.footer-col .lik {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-links li {
  font-size: 16px;
}

.footer-links span {
  color: #ffc107;
  margin-right: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  font-size: 18px;
}

.contact-item i {
  color: #ffc107;
  font-size: 20px;
  width: 35px;
}

.footer-bottom {
  margin-top: 50px;
  padding: 20px;
  border-top: 1px solid #555;
  text-align: center;
  font-size: 14px;
  color: #ccc;
}

@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
  }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Tablet and below (max-width: 1024px) */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 30px;
    }
    
    .s_1_0 {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .s_1_0 div {
        flex: 1 1 30%;
    }
    
    .container {
        width: 90%;
    }
}

.invisible-link {
  all: unset;              /* entfernt ALLE Standard-Link-Styles */
  cursor: pointer;         /* zeigt trotzdem Klickbarkeit */
  display: block;          /* verhält sich wie ein div */
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    /* Navigation */
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 18px;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .phone_1 {
        font-size: 18px;
        margin-top: 20px;
    }
    
    .navbar {
        padding: 0 20px;
        height: 70px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo img {
        width: 35px;
    }
    
    /* Section 1 */
    .s_1 {
        padding: 20px 15px;
        gap: 2em;
    }
    
    .s_1 h1 {
        font-size: 28px;
        text-align: center;
    }
    
    .s_1_0 {
        flex-direction: column;
        gap: 30px;
    }
    
    .s_1_0 div {
        width: 100%;
        font-size: 16px;
    }
    
    .gb-icon svg {
        width: 2em;
        height: 2em;
    }
    
    .gb-headline-text {
        font-size: 18px;
    }
    
    /* Section 2 - Form */
    .sec_2 {
        padding: 20px 15px;
    }
    
    .container {
        width: 100%;
        padding: 20px;
    }
    
    .header h1 {
        font-size: 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    input,
    select {
        height: 50px;
        font-size: 15px;
    }
    
    .submit-btn {
        height: 55px;
        font-size: 18px;
    }
    
    /* Section 3 - Map */
    .s_3 {
        padding-bottom: 12em;
    }
    
    .s_3 iframe {
        height: 400px;
    }
    
    .sec_3_1 {
        width: 95%;
        padding: 20px;
        bottom: -8%;
    }
    
    .sec_3_1_0 {
        flex-direction: column;
        gap: 20px;
    }
    
    .sec_3_1_0 div span:nth-child(1) {
        font-size: 18px;
    }
    
    .sec_3_1_0 div span:nth-child(2) {
        font-size: 14px;
    }
    
    .sec_3_1_1 {
        padding: 15px;
        font-size: 14px;
    }
    
    .sec_3_1_1 div {
        width: 100%;
        padding: 15px;
    }
    
    .gb_icon svg {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    /* Footer */
    .footer {
        padding-top: 12em;
    }
    
    .footer-container {
        padding: 30px 20px;
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-title {
        font-size: 24px;
    }
    
    .footer-col h3 {
        font-size: 18px;
    }
    
    .footer-col p {
        font-size: 14px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        column-gap: 0;
    }
    
    .contact-item {
        font-size: 15px;
    }
    
    .footer-bottom {
        padding: 15px 20px;
        font-size: 12px;
    }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    .navbar {
        padding: 0 15px;
        height: 60px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo img {
        width: 30px;
    }
    
    .s_1 h1 {
        font-size: 24px;
    }
    
    .s_1_0 div {
        font-size: 14px;
    }
    
    .gb-headline-text {
        font-size: 16px;
    }
    
    .container {
        padding: 15px;
    }
    
    .header h1 {
        font-size: 20px;
    }
    
    .s_3 iframe {
        height: 300px;
    }
    
    .sec_3_1 {
        width: 100%;
        padding: 15px;
    }
    
    .footer {
        padding-top: 10em;
    }
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
    /* Prevent text overflow */
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Better touch targets */
    a, button, input, select {
        min-height: 44px;
    }
    
    /* Improve readability */
    p, li {
        line-height: 1.6;
    }
    
    /* Better spacing for mobile */
    section {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.s_3 {
  /* padding: 5%;  */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 15em;
}

.sec_3_1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #f5b400;
  padding: 3%;
  width: 80%;
  position: absolute;
  border-radius: 10px;
  bottom: -10%;
}

.sec_3_1_0 {
  display: flex;
  gap: 30px;
}

.sec_3_1_1 {
  background-color: white;
  padding: 3%;
  font-size: 17px;
  display: flex;
  justify-content: center;
}

.sec_3_1_1 div {
  padding: 2% 3%;
  border: 2px solid black;
  background: #f5b400;
  width: 40%;
  text-align: center;
  cursor: pointer;   
}
.sec_3_1_1 div:hover{
    background-color: white;
    transition: color .1s ease-in-out, background-color .1s ease-in-out;
}

.sec_3_1_0 div {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 15px;
}

.sec_3_1_0 div span:nth-child(1) {
  font-size: 22px;
}

.sec_3_1_0 div span:nth-child(2) {
  font-size: 16px;
  color: #000000a2;
}

.gb_icon svg {
  width: 2.9rem;
  height: 2.5rem;
  fill: currentColor;
}