/**
 * Landing Page - 50th Anniversary
 * Custom styles for the anniversary landing page template
 */

/* Hero Section */
.landing-hero-anniversary {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #0a76ba;
}

.landing-hero-anniversary .hero-wrapper {
    position: relative;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

.landing-hero-anniversary .hero-image-container {
    position: relative;
    max-width: 94.8%;
    border-bottom-right-radius: 250px;
    overflow: hidden;
    z-index: 2;
}

.landing-hero-anniversary .hero-image {
    display: block;
    max-width: 100%;
    height: auto;
}

.landing-hero-anniversary .hero-content {
    position: absolute;
    top: 91px;
    left: 50%;
    transform: translateX(-50%);
    width: 1680px;
    max-width: 100%;
    z-index: 3;
}

.landing-hero-anniversary .hero-title {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.landing-hero-anniversary .hero-title h1 {
    font-size: 28px;
    line-height: 32px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0;
    padding: 0;
    width: 100%;
    text-shadow: 0 0 40px 0 #193965;
}

@media only screen and (min-width: 768px) {
    .landing-hero-anniversary .hero-title h1 {
        font-size: 45px;
        line-height: 50px;
    }
}

@media only screen and (min-width: 1200px) {
    .landing-hero-anniversary .hero-title h1 {
        font-size: 55px;
        line-height: 60px;
    }
}

@media only screen and (min-width: 1440px) {
    .landing-hero-anniversary .hero-title h1 {
        font-size: 65px;
        line-height: 70px;
    }
}

.landing-hero-anniversary .hero-title img {
    filter: drop-shadow(0 0 40px #193965);
}

@media only screen and (min-width: 1880px) {
    .landing-hero-anniversary .hero-title h1 {
        max-width: 708px;
    }
}

/* Call Now Button */
.call-now-button {
    position: fixed;
    top: 150px;
    right: 0;
    background: #AD429C;
    border-radius: 40px 0 0 40px;
    padding: 12px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    z-index: 1000;
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.25);
}

.call-now-label {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media only screen and (min-width: 768px) {
    .call-now-label {
        font-size: 14px;
    }
}

.call-now-number {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (min-width: 768px) {
    .call-now-number {
        font-size: 20px;
    }
}

.call-now-number:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Landing Intro Section */
.landing-intro {
    background-color: #0a76ba;
    color: #ffffff;
}

.landing-intro p {
    font-size: 18px;
    line-height: normal;
}

@media only screen and (min-width: 768px) {
    .landing-intro p {
        font-size: 20px;
    }
}

/* Custom Wide Container */
.container-wide {
    max-width: 1680px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Events Section */
.landing-events {
    background-color: #193965;
    padding: 80px 0;
}

.landing-events .events-title {
    font-size: 22px;
    color: #ffffff;
    margin: 0 0 40px 0;
    line-height: normal;
}

.landing-events h3 {
    color: #ffffff;
    font-size: 20px;
    line-height: normal;
}

@media only screen and (min-width: 768px) {
    .landing-events h3 {
        font-size: 24px;
    }
}

@media only screen and (min-width: 768px) {
    .landing-events .events-title {
        font-size: 32px;
    }
}

.landing-events .events-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.landing-events .event-item {
    background-color: #0a76ba;
    border-radius: 0 0 50px 0;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    color: #ffffff;
}

.landing-events .event-left {
    width: 35%;
    flex-shrink: 1;
}

.landing-events .event-right {
    width: 65%;
    flex-shrink: 1;
}

.landing-events .event-name {
    font-size: 18px;
    margin: 0 0 10px 0;
    line-height: normal;
}

@media only screen and (min-width: 768px) {
    .landing-events .event-name {
        font-size: 24px;
    }
}

.landing-events .event-detail {
    font-size: 15px;
    margin: 0 0 10px 0;
    line-height: normal;
}

@media only screen and (min-width: 768px) {
    .landing-events .event-detail {
        font-size: 20px;
    }
}

.landing-events .event-detail:last-child {
    margin-bottom: 0;
}

.landing-events .event-label {
    font-weight: bold;
}

/* Stay Connected Section */
.landing-stay-connected {
    background-color: #852676;
    padding: 80px 0;
}

.landing-stay-connected .stay-connected-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.landing-stay-connected .contact-info {
    background-color: #ad429c;
    padding: 40px 50px;
    width: calc(50% - 20px);
    flex-shrink: 1;
    color: #ffffff;
    line-height: normal;
}

.landing-stay-connected .contact-info h2 {
    font-size: 22px;
    color: #ffffff;
    margin: 0 0 40px 0;
    line-height: normal;
}

@media only screen and (min-width: 768px) {
    .landing-stay-connected .contact-info h2 {
        font-size: 32px;
    }
}

.landing-stay-connected .contact-info p {
    font-size: 18px;
    margin: 0 0 10px 0;
}

@media only screen and (min-width: 768px) {
    .landing-stay-connected .contact-info p {
        font-size: 20px;
    }
}

.landing-stay-connected .contact-info p:last-child {
    margin-bottom: 0;
}

.landing-stay-connected .contact-info strong {
    font-weight: bold;
}

.landing-stay-connected .contact-image {
    width: calc(50% - 20px);
    flex-shrink: 1;
    border-radius: 0 0 150px 0;
    overflow: hidden;
}

.landing-stay-connected .contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Responsive Design */

/* Tablet landscape and smaller desktops */
@media (max-width: 1440px) {
    .landing-hero-anniversary .hero-image-container {
        max-width: 90%;
    }

    .landing-hero-anniversary .hero-title {
        font-size: 55px;
        line-height: 60px;
    }

    .landing-hero-anniversary .hero-title h1 {
        max-width: 60%;
    }

    .landing-hero-anniversary .hero-title img {
        width: 200px;
        max-width: 100%;
    }

    .landing-hero-anniversary .hero-title h1 {
        max-width: 80%;
    }

    .landing-events {
        padding: 60px 0;
    }

    .landing-events .events-title {
        font-size: 28px;
    }

    .landing-events .event-item {
        padding: 30px;
    }

    .landing-events .event-left {
        width: 400px;
    }

    .landing-events .event-right {
        width: calc(100% - 440px);
    }

    .landing-stay-connected {
        padding: 60px 0;
    }

    .landing-stay-connected .contact-info {
        width: 600px;
        padding: 35px 40px;
        font-size: 18px;
    }

    .landing-stay-connected .contact-info h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .landing-stay-connected .contact-image {
        border-radius: 0 0 80px 0;
    }
}

/* Tablet portrait */
@media (max-width: 1200px) {
    .landing-hero-anniversary {
        height: auto;
    }

    .landing-hero-anniversary .hero-image-container {
        position: relative;
        max-width: 85%;
        border-bottom-right-radius: 150px;
    }

    .landing-hero-anniversary .hero-content {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        gap: 20px;
        padding: 30px 15px;
    }

    .landing-hero-anniversary .hero-title {
        font-size: 45px;
        line-height: 50px;
    }

    .call-now-button {
        padding: 10px 20px;
    }

    .call-now-label {
        font-size: 12px;
    }

    .call-now-number {
        font-size: 18px;
    }

    .landing-events {
        padding: 50px 0;
    }

    .landing-events .events-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .landing-events .event-item {
        flex-direction: column;
        padding: 30px;
        border-radius: 0 0 30px 0;
    }

    .landing-events .event-left,
    .landing-events .event-right {
        width: 100%;
    }

    .landing-events .event-name {
        font-size: 22px;
    }

    .landing-events .event-detail {
        font-size: 18px;
    }

    .landing-stay-connected {
        padding: 50px 0;
    }

    .landing-stay-connected .stay-connected-content {
        flex-direction: column;
    }

    .landing-stay-connected .contact-info {
        width: 100%;
    }

    .landing-stay-connected .contact-image {
        width: fit-content;
    }

    .landing-stay-connected .contact-info h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .landing-stay-connected .contact-info {
        font-size: 18px;
    }
}

/* Mobile landscape */
@media (max-width: 768px) {
    .landing-hero-anniversary {
        height: auto;
    }

    .landing-hero-anniversary .hero-image-container {
        position: relative;
        max-width: calc(100% - 20px);
        border-bottom-right-radius: 100px;
    }

    .landing-hero-anniversary .hero-content {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        gap: 15px;
        padding: 30px 15px;
    }

    .landing-hero-anniversary .hero-title {
        font-size: 36px;
        line-height: 40px;
    }

    .landing-hero-anniversary .hero-title img {
        width: 200px;
        max-width: 100%;
    }

    .landing-events {
        padding: 40px 0;
    }

    .landing-events .events-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .landing-events .event-item {
        padding: 25px;
        gap: 20px;
    }

    .landing-events .event-name {
        font-size: 20px;
    }

    .landing-events .event-detail {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .landing-stay-connected {
        padding: 40px 0;
    }

    .landing-stay-connected .contact-info {
        padding: 30px;
        font-size: 16px;
    }

    .landing-stay-connected .contact-info h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
}

/* Mobile portrait */
@media (max-width: 576px) {
    .landing-hero-anniversary {
        height: auto;
    }

    .landing-hero-anniversary .hero-image-container {
        position: relative;
        max-width: calc(100% - 20px);
        border-bottom-right-radius: 60px;
    }

    .landing-hero-anniversary .hero-content {
        position: static;
        left: auto;
        top: auto;
        bottom: auto;
        transform: none;
        width: 100%;
        gap: 15px;
        padding: 20px 15px;
    }

    .landing-hero-anniversary .hero-title {
        font-size: 28px;
        line-height: 32px;
    }

    .call-now-button {
        padding: 10px 16px;
    }

    .landing-events {
        padding: 30px 0;
    }

    .landing-events .events-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .landing-events .event-item {
        padding: 20px;
        border-radius: 0 0 20px 0;
    }

    .landing-events .event-name {
        font-size: 18px;
    }

    .landing-events .event-detail {
        font-size: 15px;
    }

    .landing-stay-connected {
        padding: 30px 0;
    }

    .landing-stay-connected .contact-info {
        padding: 25px 20px;
        font-size: 15px;
    }

    .landing-stay-connected .contact-info h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

/* Extra small mobile */
@media (max-width: 375px) {
    .landing-hero-anniversary .hero-title {
        font-size: 24px;
        line-height: 28px;
    }

    .landing-events .event-name {
        font-size: 16px;
    }

    .landing-events .event-detail {
        font-size: 14px;
    }

    .landing-stay-connected .contact-info h2 {
        font-size: 20px;
    }

    .landing-stay-connected .contact-info {
        font-size: 14px;
    }
}