@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

.soda-travel-hero {
    background: linear-gradient(135deg, #FF68A4, #fbc2eb);
    background-size: 400% 400%;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden; /* Ensures no elements overflow the hero section */
}

.soda-travel-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards; /* Fades in with animation */
    animation-delay: 0.5s;
}

/* Sequential text animations */
.step-1 {
    animation: fadeInUp 1.5s ease-in-out forwards;
}

.step-2 {
    animation: planeFly 2s ease-in-out forwards;
    animation-delay: 1s;
}

.step-3 {
    animation: cameraFlash 2s ease-in-out forwards;
    animation-delay: 3s;
}

.step-4 {
    animation: pinDrop 2s ease-in-out forwards;
    animation-delay: 5s;
}

.step-5, .step-6, .step-7 {
    opacity: 0;
    animation: fadeInUp 2s ease-in-out forwards;
}

.step-5 { animation-delay: 7s; }
.step-6 { animation-delay: 8s; }
.step-7 { animation-delay: 9s; }

.soda-travel-hero-icons {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Icon animations */
@keyframes planeFly {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes cameraFlash {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes pinDrop {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Fade in and bounce animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Social media icons */
.soda-social-icons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.soda-social-icons i {
    font-size: 36px;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.soda-social-icons i:hover {
    transform: scale(1.2);
    color: #fbc2eb;
}

/* Button styling */
.soda-cta-btn {
    background: linear-gradient(135deg, #fff, #f8d7da);
    color: #FF68A4;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0px 10px 20px rgba(255, 104, 164, 0.4);
    opacity: 0;
}

.soda-cta-btn:hover {
    background-color: #FF68A4;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0px 12px 25px rgba(255, 104, 164, 0.6);
}

/* Responsive design */
@media (max-width: 768px) {
    .soda-travel-hero h1 {
        font-size: 36px;
    }

    .soda-travel-hero p {
        font-size: 18px;
    }

    .soda-travel-hero-icons i {
        font-size: 36px;
    }

    .soda-social-icons i {
        font-size: 28px;
    }
}