/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2b7d8c 0%, #45c2d1 100%);
    padding-top: 120px;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
    min-height: 88vh;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content .logo-large {
    animation: fadeInDown 0.6s ease-out;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.15);
    line-height: 1.3;
}

.hero-images {
    position: relative;
    z-index: 5;
    animation: fadeInRight 0.8s ease-out;
}

.hero-images img {
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

.hero-footer {
    background-color: rgba(43, 125, 140, 0.9);
    padding: 25px 0;
    margin-top: 50px;
    backdrop-filter: blur(5px);
}

.hero-footer p {
    font-size: 1.05rem;
}

/* Decorative Elements */
.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: white;
    border-radius: 100px;
    opacity: 0.9;
    animation: float 6s ease-in-out infinite;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 100px;
}

.cloud-1 {
    width: 100px;
    height: 40px;
    top: 10%;
    left: 5%;
}

.cloud-1::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
}

.cloud-1::after {
    width: 60px;
    height: 40px;
    top: -15px;
    right: 10px;
}

.cloud-2 {
    width: 80px;
    height: 35px;
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.cloud-2::before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 10px;
}

.cloud-2::after {
    width: 50px;
    height: 35px;
    top: -15px;
    right: 10px;
}

.cloud-3 {
    width: 120px;
    height: 45px;
    top: 50%;
    left: 15%;
    animation-delay: 4s;
}

.cloud-3::before {
    width: 60px;
    height: 55px;
    top: -30px;
    left: 15px;
}

.cloud-3::after {
    width: 70px;
    height: 45px;
    top: -20px;
    right: 15px;
}

.sun {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #fdb913;
    border-radius: 50%;
    top: 5%;
    left: 2%;
    box-shadow: 0 0 30px rgba(253, 185, 19, 0.5);
    animation: pulse 3s ease-in-out infinite;
}

.balloon {
    position: absolute;
    width: 50px;
    height: 65px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: float 8s ease-in-out infinite;
}

.balloon::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 80px;
    background: rgba(0,0,0,0.2);
    bottom: -80px;
    left: 50%;
}

.balloon-1 {
    background: var(--pink);
    top: 15%;
    right: 5%;
    animation-delay: 1s;
}

.balloon-2 {
    background: var(--green);
    top: 10%;
    left: 10%;
    animation-delay: 3s;
}

.balloon-3 {
    background: var(--yellow);
    top: 40%;
    right: 15%;
    animation-delay: 5s;
}
