﻿/* Home adjustments */
.home-hero-banner {
    position: relative;
    background-image: url('/portals/8/Images/home-page/cruise-ship-banner-lg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Lighter full overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.banner-callout {
    background-color: rgba(255, 255, 255, 0.8); /* transparent white */
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto; /* center it */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* optional for depth */
}

.uuid-e75539d9-3b0f-4ea4-bbca-38c8cb6cdf0c {
    opacity: 0;
    animation-name: hideshow;
    animation-delay: 5s;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
/*red circle*/
.uuid-e75539d9-3b0f-4ea4-bbca-38c8cb6cdf0c {
    opacity: 0;
    animation-name: hideshow;
    animation-delay: 3s;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

.uuid-fdf86bd8-84ce-408a-bcc2-8613a6bdad14 {
    opacity: 0;
    animation-name: fadein;
    animation-delay: 5s;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}
@keyframes hideshow {
    0% {
        opacity: 0;
    }

    5% {
        opacity: .5;
    }

    50% {
        opacity: .75;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
/* Home adjustments */

/* General */
.hero-banner {
    background-image: url('/portals/8/Images/travel-insurance-page/banner-1600x600.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ee3e33; /* deep red fallback in case image doesn't load */
    display: flex;
    align-items: center;
    padding: 4rem 1rem;
}

.responsive-heading {
    font-size: 2.5rem; /* Default for mobile */
}

.responsive-subtitle {
    font-size: 1.25rem;
}

.banner-title {
    color: #fff;
    font-size: 42pt;
    margin-bottom: 16px;
}

.banner-subtitle {
    font-size: 24px;
    line-height: 34px;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

a.bannerLink {
    font-size: 24pt;
    line-height: 34px;
    color: #ffffff !important;
    text-decoration: none;
}

a.btn.btn-tertiary.btn-lg.banner-button {
    border: 1px solid #fff !important;
    color: #fff !important;
    margin: 12px 1rem 0 !important;
    background: transparent !important;
}

.small-overlay {
    padding: 64px 0 64px 16px;
}

.overlay {
    margin-left: 0;
    padding: 62px 0 64px 0;
}

/* Responsive Adjustments */

@media (min-width: 768px) {
    .responsive-heading {
        font-size: 3.5rem;
    }
}

@media (min-width: 992px) {
    .responsive-heading {
        font-size: 5rem; /* Large on desktop */
    }
}

@media (min-width: 768px) {
    .responsive-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .responsive-subtitle {
        font-size: 2rem; /* Large on desktop */
    }
}

@media screen and (max-width: 991.98px) {
    #hero-content {
        /*margin-left: 30px;*/
    }
}

@media screen and (max-width: 480px) {
    .banner-title {
        font-size: 25px;
    }

    .home-hero-banner {
        min-height: 75vh;
    }
}

@media screen and (max-width: 767.98px) and (min-width: 547px) {
    .small-overlay {
        padding: 64px 12px;
    }
}

@media screen and (min-width: 1400px) {
    .banner-title {
        font-size: 48pt;
    }
}

@media (max-width: 767px) {
    .banner-subtitle {
        display: none !important;
    }
}

/* */
@media (max-width: 768px) {
    /*.banner-title {
        font-size: 28pt;
    }
*/
    .banner-subtitle {
        font-size: 18px;
        line-height: 26px;
    }

    .hero-banner {
        padding: 2rem 1rem;
    }
}

@media (max-width: 576px) {
    #hero-content {
        padding-left: 0;
        padding-right: 0;
    }
}

