/* main.css - zentrales Stylesheet für die Website */

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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.8rem;
    color: #065f46;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo p {
    font-size: 0.85rem;
    color: #047857;
    font-style: normal;
    margin-top: -5px;
    line-height: 1.3;
}

.cta-button {
    padding: 0.75rem 1.5rem;
    border: 2px solid #065f46;
    color: #065f46;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: #065f46;
    color: white;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #065f46;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 999;
    padding-top: 100px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 2rem;
}

.mobile-menu li {
    margin: 1.5rem 0;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #d1fae5;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #065f46;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/man_on_a_mountain.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    margin-top: 80px;
    position: relative;
    color: white;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text .subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
    font-weight: 400;
    font-style: normal;
}

.hero-text .main-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    line-height: 1.2;
    letter-spacing: 0.1em;
    font-weight: 700;
    font-style: normal;
}

.hero-taglines {
    font-size: 1.3rem;
    color: #ffffff;
    font-style: normal;
    line-height: 1.8;
}

.hero-taglines p {
    margin: 0.5rem 0;
}

/* Sections */
.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(6, 95, 70, 0.15);
}

.about-text p {
    text-align: left;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    .about-text {
        order: 2;
    }
    .about-image {
        order: 1;
    }
}

.section h2 {
    font-size: 2.5rem;
    color: #065f46;
    margin-bottom: 2rem;
    text-align: center;
}

.section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #374151;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(6, 95, 70, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid #10b981;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(6, 95, 70, 0.15);
}

.service-card h3 {
    color: #065f46;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Quote */
.quote-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 0.5rem 0.5rem;
    margin: 4rem 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}
.quote {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    font-style: italic;
    font-size: 1.2rem;
    margin: 0;
    border-radius: 18px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    display: block;
}
@media (max-width: 900px) {
    .quote-wrapper {
        padding: 0.2rem 0.2rem;
        border-radius: 16px;
    }
    .quote {
        border-radius: 12px;
        padding: 2rem 0.5rem;
    }
}

/* Contact */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(6, 95, 70, 0.1);
}

.contact-item .adresse {
  margin: 0;
  line-height: 1.4;
}

.contact-item h3 {
    color: #065f46;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #065f46;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

.footer-link-wrap {
    display: inline-block;
    position: relative;
}
.footer-link {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1em;
    text-decoration: none;
    padding-bottom: 6px;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #d1fae5;
}
.active-footer-link::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-button {
        display: none;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text h2 {
        font-size: 2.5rem;
    }
    .hero-taglines {
        font-size: 1.1rem;
    }
    .logo p {
        font-size: 0.75rem;
    }
}

/* Overlay für Mobile Menu */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 95, 70, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}
