/* elements.css - Blöcke 1-7 */

/* Block 1: Hero */
.block-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 0 80px 0;
    width: 1400px;
    /*margin-left: -200px;*/
}

.block-hero .hero-image {
    flex: 1;
    min-width: 300px;
    margin-right: 50px;
    display: flex;
    justify-content: center;
}
.block-hero .hero-image img {
    max-width: 100%;
    height: auto;
}

.block-hero .hero-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.block-hero h1 {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--orange);
    text-transform: uppercase;
}

.block-hero p {
    margin-bottom: 40px;
}

.block-hero h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--orange);
    margin: 50px 0 20px 0;
    text-transform: uppercase;
}

/* Block 2: Stats */
.block-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0
}
.block-stats > div {
    flex-basis: 50%;
}
.block-stats .stats-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.block-stats h2 {
    font-size: 50px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0;
}

.block-stats p {
    margin: 0;
    font-weight: 300;
}

.block-stats .stat-circle-wrapper {
    
}

.block-stats .stat-circle {
    width: 350px;
    height: 350px;
    border: 2px dashed var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 50px;
}

.block-stats .stat-circle .number {
    font-size: 170px;
    font-weight: 400;
    line-height: 1;
}

.block-stats .stat-circle .label {
    /*font-size: 14px;*/
    text-align: center;
}

/* Block 3: Projects */
.block-projects {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 0;
    justify-content: space-between;
}

.block-projects .project-card {
    flex: 1;
    min-width: 280px;
    
    position: relative;
}

.block-projects .project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Block 4: CTA */
.block-cta {
    background: #00499C;
    background: linear-gradient(90deg,rgba(0, 73, 156, 1) 0%, rgba(1, 58, 139, 1) 24%, rgba(3, 19, 97, 1) 100%);
    border-radius: 200px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 60px auto;
}
.block-cta .cta-text {
    /*flex-basis: 50%;*/
    padding-left: 5%;
}
.block-cta .cta-text h3 {
    font-size: 34px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.block-cta .cta-text p {
    margin: 0 0 5px 0;
}

.block-cta .cta-buttons {
    /*flex-basis: 50%;*/
    display: flex;
    gap: 15px;
}

.cta-button {
    background: #0077FF;
    background: linear-gradient(45deg,rgba(0, 119, 255, 1) 0%, rgba(0, 74, 167, 1) 41%, rgba(0, 178, 255, 1) 100%);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    
    text-transform: uppercase;
}
.cta-button:hover {
    background: var(--blue);
    color: var(--white);
}

.cta-button img {
   /* height: 20px;*/
   margin-right: 15px;
   max-width: none;
}

/* Block 5: Gewächshaus */
.block-gewaechshaus {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 60px 0;
}

.block-gewaechshaus .logo-area {
    margin-right: 10%;
    align-items: center;
}

.block-gewaechshaus .text-area {
    flex: 1;
    min-width: 300px;
}

.block-gewaechshaus h2 {
    font-size: 32px;
    color: var(--orange);
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Block 6: Quote */
.block-quote {
    background: linear-gradient(90deg, var(--yellow), var(--red));
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 60px 0;
}

.block-quote .container-inner {
    display: flex;
}

.block-quote .quote-icon {
    font-size: 60px;
    font-weight: 900;
    margin-right: 30px;
    line-height: 1;
    margin-top: -20px;
}

.block-quote .quote-content {
    flex: 1;
}

.block-quote .quote-content p {
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
}

.block-quote .quote-author {
    font-size: 17px;
    font-weight: 700;
}

/* Block 7: Partners */
.block-partners {
    padding: 60px 0;
}

.block-partners .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.block-partners h3 {
    font-size: 30px;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
}

.partner-logos {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 70%;
}
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.logo-abbe {
    margin-top: 10px;
}

/* Block 8: Contact */
.block-contact {
    padding: 60px 0;
    margin-top: -80px; /* Einzeln nach oben verschoben */
    position: relative;
    z-index: 10;
}

.block-contact .contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.block-contact .contact-info {
    flex: 1;
    min-width: 300px;
}

.block-contact .contact-info h2 {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
}

.block-contact .contact-details {
    margin-top: 20px;
    line-height: 1.8;
}

.block-contact .contact-image {
    flex: 1;
    min-width: 300px;
}

/* Image Placeholder */
.image-placeholder {
    border: 2px dashed #ccc;
    background-color: transparent;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 10px;
}

/* Block 9: Form */
.block-form {
    padding: 60px 0;
}

.block-form .form-wrapper {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
}

.block-form h3 {
    font-size: 32px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: var(--blue);
}

.block-form .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.block-form .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}

.block-form .form-group {
    margin-bottom: 25px;
}

.block-form .mb-3 {
    margin-bottom: 1rem;
}

.block-form .form-label {
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.block-form .form-control {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 8px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.block-form .form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: var(--blue);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 119, 255, 0.25);
}

.block-form textarea.form-control {
    resize: vertical;
}

.block-form .btn {
    border: none;
    cursor: pointer;
}

/* --- LAYOUT GRID BASICS --- */
.layout-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}
.layout-grid .col-left {
    flex: 0 0 30%;
    max-width: 30%;
}
.layout-grid .col-right {
    flex: 1;
    min-width: 300px;
}
.section-title {
    font-size: 36px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--orange);
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    margin: 0;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 2px;
    background-color: currentColor;
}

/* --- BLOCK 8: COUNTER --- */
.block-counter {
    padding: 60px 0;
    color: #fff;
}
.block-counter h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}
.countdown-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: 1px dashed #fff;
    border-radius: 50px;
    padding: 20px 40px;
    margin: 30px 0;
    max-width: 600px;
    margin-left: -50px;
}
.countdown-item {
    text-align: center;
}
.countdown-item .number {
    font-size: 80px;
    font-weight: 300;
    line-height: 1;
    display: block;
    font-variant-numeric: tabular-nums;
}
.countdown-item .label {
    font-size: 16px;
    text-transform: uppercase;
}
.countdown-separator {
    font-size: 70px;
    font-weight: 300;
    line-height: 1;
    margin-top: -35px;
}
.dates-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0 40px;
    margin-top: 20px;
}
.date-item {
    font-variant-numeric: tabular-nums;
    font-size: 50px;
    line-height: 1.2;
    color: var(--orange);
}

/* --- BLOCK 9: FAQ --- */
.block-faq {
    background: url('../img/logo-faq.png') left -90px no-repeat,
                linear-gradient(135deg, #00d2ff 0%, #001254 100%);
    background-size: 410px 530px, auto;
    padding: 80px 0;
    color: #fff;
}
.accordion-item {
    border: 1px dashed #fff !important;
    border-radius: 8px;
    margin-bottom: 25px;
    background: transparent;
    color: #fff;
}
.accordion-header {
    padding: 20px 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.3;
}
.accordion-header .icon {
    background: var(--orange);
    color: #fff;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    line-height: 1;
    padding-bottom: 2px;
}

.accordion-body {
    padding: 20px 30px;
    display: none;
    color: #fff;
    background: rgba(255,255,255,0.2);
    line-height: 1.3;
}
.accordion-item.active .accordion-body {
    display: block;
}

/* --- BLOCK 10: CONTACT SMALL --- */
.block-contact-small {
    padding: 40px 0;
    margin-top: -80px;
    z-index: 900;
    position: relative;
}
.block-contact-small a {
    text-decoration: none;
}
.block-contact-small a:hover {
    color: #fff;
    opacity: 0.8;
}
.contact-pill {
    background: #002868;
    border-radius: 100px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 0 60px;
    color: #fff;
    gap: 40px;
}
.contact-person-img img {
    max-width: 100px;
}

.contact-title {
    font-size: 32px;
    line-height: 1;
}
.contact-person-info {
    font-size: 18px;
    padding-top: 25px;
}

/* --- BLOCK 11: FORM NEW --- */
.block-form-new {
    padding: 60px 0;
    color: #fff;
}
.download-buttons {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}
.download-buttons img {
    width: 35px;
    padding-right: 5px;
}
.btn-download {
    background: #0057b7;
    color: #fff;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}
.btn-download:hover { background: #004494; color: #fff; }

.form-dark .form-control {
    background: #fff;
    border: none;
    border-radius: 4px;
    padding: 15px;
}
.form-dark .form-label {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}
.file-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}
.btn-upload {
    background: transparent;
    color: #fff;
    border: none;
    cursor: pointer;
}
.btn-upload::file-selector-button {
    background: #00d2ff;
    color: #001254;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 15px;
}
.upload-note { font-size: 12px; color: rgba(255,255,255,0.6); }
.cta-button-orange {
    background: linear-gradient(90deg, var(--yellow), var(--red)) !important;
    color: #fff !important;
    padding: 12px 30px !important;
    border-radius: 30px !important;
    font-weight: 700;
    text-transform: uppercase;
    border: none !important;
}

/* --- BLOCK 12: TEXT DOWNLOAD --- */
.block-text-download {
    padding: 40px 0 80px 0;
    color: #fff;
}
.logo-download { margin-top: 30px; }

/* --- BLOCK 13: PROJECTS GRID --- */
.block-projects-grid {
    padding: 80px 0;
    color: #fff;
}
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filter-btn {
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 8px 30px;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 600;
}
.filter-btn.active, .filter-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}
.project-item {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    position: relative;
    perspective: 1000px;
    cursor: pointer;
}
.project-flipper {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}
.project-item.flipped .project-flipper {
    transform: rotateY(180deg);
}
.project-front, .project-back {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 8px;
    overflow: hidden;
}
.project-front {
    background: rgba(255,255,255,0.05);
}
.project-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-back {
    transform: rotateY(180deg);
    background: #fff;
    color: var(--blue);
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    line-height: 1.1 !important;
}
.project-back .category {
    border: 1px solid var(--blue);
    display: inline-block;
    padding: 5px 15px;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 15px;
    align-self: flex-start;
    margin-bottom: 15px;
}
.project-back h4 {
    margin: 0;
    font-size: 20px;
    color: var(--blue);
    font-weight: 600;
}
.project-back strong {
    color: var(--blue);
}
.project-back p,
.project-back strong {
    font-size: 16px;
    line-height: 1.3;
    margin-top: 10px;
    color: var(--blue);
    margin-bottom: 5px;
}
.project-back .btn-link {
    background: var(--lightblue);
    border: none;
    color: #fff;
    padding: 5px 25px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 14px;
    align-self: flex-start;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: auto;
}

/* --- BLOCK 14: HOUSE --- */
.block-house {
    padding: 80px 0;
    color: #fff;
}
.house-infographic {
    position: relative;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.info-center {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}
.center-circle {
    width: 250px;
    height: 250px;
    border: 1px dashed rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.info-item {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 10px;
    border-left: 3px solid #00d2ff;
}
.info-item.item-right-top { border-color: #00ff00; }
.info-item.item-bottom { border-color: var(--orange); }

.info-item h4 { font-size: 20px; margin-bottom: 15px; }
.info-item p { font-size: 14px; line-height: 1.6; }
.contact-person {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 13px;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 30px;
    display: inline-flex;
}

/* --- BLOCK 15: TIME --- */
.block-time {
    padding: 80px 0;
    color: #fff;
}
.timeline {
    position: relative;
    padding-left: 180px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 140px;
    top: 10px;
    bottom: 40px;
    width: 2px;
    background: #fff;
}
.timeline::after {
    content: '';
    position: absolute;
    left: 140px;
    bottom: 0;
    height: 40px;
    width: 2px;
    background: transparent;
    border-left: 2px dashed #fff;
}
.timeline-item {
    position: relative;
    margin-bottom: 50px;
}
.timeline-date {
    position: absolute;
    left: -180px;
    width: 130px;
    text-align: right;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
}
.timeline-date span {
    font-weight: 400;
    font-size: 14px;
}
.timeline-dot {
    position: absolute;
    left: -46px; /* 180 - 140 = 40, + half dot size */
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #001254;
}
.timeline-content {
    font-size: 15px;
    line-height: 1.6;
}
.timeline-end {
    margin-top: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.btn-more-orange {
    background: var(--orange);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}


/* --- BLOCK: TESTIMONIALS / KOMMENTARE --- */

.block-testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.block-testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 50px;
    margin-top: 40px;
    margin-bottom: 60px;
    width: 100%;
}

.testimonials-col {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 70px; /* Abstand zwischen den Karten */
}

/* Gestaffelter Versatz der rechten Spalte */
@media (min-width: 992px) {
    .testimonials-col-right {
        margin-top: 80px;
    }
}

/* Einzelne Karte */
.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Die Sprechblase */
.card-bubble {
    position: relative;
    padding: 35px 35px 45px 35px;
    border-radius: 36px;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    background-size: 130% 130%;
}

/* Zitat-Zeichen oben links */
.card-bubble .quote-mark {
    font-size: 45px;
    line-height: 1;
    font-family: Georgia, serif;
    opacity: 0.9;
    margin-bottom: 5px;
    font-weight: 700;
}

.card-bubble .bubble-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    color: #ffffff;
}

/* Author-Leiste (Avatar + Pill) */
.card-meta {
    display: flex;
    align-items: center;
    margin-top: -30px; /* Zieht Avatar & Pill über die Sprechblasen-Kante */
    padding-left: 20px;
    position: relative;
    z-index: 2;
}

/* Rundes Profilbild */
.author-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    background: #eef2f6;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 3px solid #001254; /* Gleicht sich dem Seiten-Hintergrund an */
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gestrichelte Namens-Pille */
.author-pill {
    background: #00165a;
    border: 1px dashed rgba(255, 255, 255, 0.7);
    border-radius: 40px;
    padding: 8px 24px 8px 28px;
    margin-left: -15px; /* Schiebt sich leicht hinter/unter das Avatar-Bild */
    font-size: 14px;
    color: #ffffff;
    white-space: nowrap;
    z-index: -1;
}

.author-pill .author-name {
    font-weight: 700;
}

.author-pill .author-role {
    font-weight: 300;
    opacity: 0.9;
}

/* --- Individuelle Farbverläufe laut Design-Vorlage --- */
.theme-orange-blue .card-bubble {
    background: linear-gradient(135deg, #ff5e14 0%, #1e3c72 70%, #112350 100%);
}

.theme-cyan-blue .card-bubble {
    background: linear-gradient(135deg, #1b5bb5 0%, #0d2974 65%, #05143a 100%);
}

.theme-green-blue .card-bubble {
    background: linear-gradient(135deg, #00d33b 0%, #008779 45%, #052655 100%);
}

.theme-magenta-blue .card-bubble {
    background: linear-gradient(135deg, #d80075 0%, #760e89 50%, #0a205a 100%);
}

.theme-purple-blue .card-bubble {
    background: linear-gradient(135deg, #7415d8 0%, #44118f 50%, #0c1d56 100%);
}

.theme-teal-blue .card-bubble {
    background: linear-gradient(135deg, #00c9a7 0%, #076d8b 50%, #0c2356 100%);
}

/* --- Mobile Breakpoints --- */
@media (max-width: 768px) {
    .block-testimonials {
        gap: 50px;
    }
    .testimonials-col {
        gap: 50px;
    }
    .testimonials-col-right {
        margin-top: 0;
    }
    .card-meta {
        padding-left: 10px;
    }
    .author-pill {
        white-space: normal;
        font-size: 13px;
        line-height: 1.3;
    }
    .block-gewaechshaus {
        padding: 0 20px;
    }
}


/* Footer elements */
.site-footer {
    background: #D0DCF1 url('../img/bg-footer.png') no-repeat;
    background-size: 2000px;
    background-position: 50% -250px;
    color: var(--blue);
    padding: 50px 0 60px 0;
}
.site-footer .col-left {
    display: flex;
    flex-wrap: wrap;
}
.site-footer .col-right {
    flex: 0.5;
}


.site-footer .col-left h4 {
    flex-basis: 100%;
}

.site-footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.site-footer h4 {
    font-size: 30px;
    font-weight: 500 !important;

}

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

.footer-col h4 {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.footer-logo {
    width: 80px;
    height: 60px;
    margin-bottom: 20px;
}

.footer-address {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}

/* SPACING */

section.block-quote + section.block-partners {
    margin-top: -60px;
}


/* RESPONSIVE */


@media (max-width: 1280px) {
    
    .block-hero {
        width: auto;
        margin-left: -100px;
    }
    .block-hero .hero-image {
        flex-basis: 30%;
    }
    .block-hero .hero-text {
        flex-basis: 60%;
    }
}


/* RESPONSIVE ADDITIONS */
@media (max-width: 992px) {
    .layout-grid .col-left {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    .timeline { padding-left: 0; margin-top: 40px; }
    .timeline::before, .timeline::after { left: 20px; }
    .timeline-date {
        position: relative;
        left: 0;
        text-align: left;
        padding-left: 50px;
        margin-bottom: 10px;
        width: auto;
    }
    .timeline-dot { left: 14px; }
    .timeline-content { padding-left: 50px; }
    .contact-pill { flex-direction: column; text-align: center; border-radius: 20px; padding: 30px; }

    .countdown-box {
        margin-left: 0;
    }

    .countdown-item .number {
        font-size: 60px;
    }
    .countdown-item .label {
        font-size: 14px;
    }
    .countdown-separator {
        font-size: 50px;
    }

}




@media (max-width: 768px) {
    .block-hero {
        margin-left: 0;
    }
    .block-hero .hero-image, .block-gewaechshaus .logo-area {
        margin-right: 0;
        margin-bottom: 30px;
        flex-basis: 100%;
    }
    .block-hero {
        flex-direction: column;
        text-align: center;
    }
    .block-hero .hero-text {
        text-align: center;
    }
    .block-stats {
        flex-direction: column;
        text-align: center;
    }
    .block-stats .stat-circle {
        margin-left: 0;
        margin-top: 30px;
    }
    .block-cta {
        flex-direction: column;
        text-align: center;
        border-radius: 30px;
        padding: 30px;
    }
    .block-cta .cta-buttons {
        margin-top: 20px;
        flex-direction: column;
    }
    .block-partners .container {
        flex-direction: column;
    }
    .block-gewaechshaus .logo-area {
        margin-right: 5%;
    }
    .block-contact .contact-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .block-form .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 650px) {

    .countdown-box {
        gap: 5px;
    }

    .countdown-item .number {
        font-size: 40px;
    }
    .countdown-item .label {
        font-size: 12px;
    }
    .countdown-separator {
        font-size: 30px;
    }

}

 