/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero__overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    z-index: 2;
}

.hero__title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__subhead {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Bubbles Section */
.bubbles {
    padding: 8rem 0 6rem 0;
    background: #f8f9fa;
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    align-items: flex-start;
}


.bubble-item {
    flex: 1;
    text-align: center;
}

.bubble-item__title {
    font-size: 1.5rem;
    color: #2c5530;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bubbles-wrapper {
    background: #f8f9fa;
    width: 100%;
    padding: 1rem 0 1rem 0;
}

.bubble {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
/*    padding: 2rem;*/
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #2c5530;
    transition: transform 0.3s ease;
}

.bubble:hover {
    transform: translateY(-10px);
}

.bubble p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #555;
}

/* Call-to-Action Section */
.cta {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta__content {
    max-width: 600px;
    margin: 0 auto;
}

.cta__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta__text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta__button {
    display: inline-block;
    background: white;
    color: #2c5530;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta__button:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subhead {
        font-size: 1.2rem;
    }

    .bubbles {
        flex-direction: column;
        gap: 3rem;
        padding: 4rem 0;
        align-items: center;
    }

    .bubble {
        width: 180px;
        height: 180px;
    }

    .cta__title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__subhead {
        font-size: 1rem;
    }

    .bubble {
        width: 160px;
        height: 160px;
        padding: 1.5rem;
    }

        .bubble p {
            font-size: 0.8rem;
        }

    .cta__title {
        font-size: 1.8rem;
    }

    .cta__text {
        font-size: 1rem;
    }
}
