#header {
    display: none !important;
}

body {
    margin: 0;
}

.lny-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    padding: 20px 0;
}

.lny-navbar img {
    width: 150px;
}

.lny-breadcrumb {
    display: flex;
    gap: 22px;
    margin: 12px auto 20px;
    justify-content: center;
}

.lny-breadcrumb button,
.lny-breadcrumb a {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.lny-breadcrumb span {
    font-family: 'zh-cn', serif;
    font-size: 20px;
    letter-spacing: 0.12em;
    text-transform: capitalize;
    color: rgba(255,255,255,0.85);
    transition: .3s ease;
}

.lny-breadcrumb a:hover span,
.lny-breadcrumb button:hover span {
    color: #FFD978;
    text-shadow: 0 0 10px rgba(255,215,120,.6);
}

.lny-breadcrumb .active span {
    color: #FFD978;
    font-weight: 600;
}

.section {
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('https://www.lavie.ph/wp-content/uploads/2026/01/LNY-BG.png') center / cover no-repeat;
    overflow: hidden;
/*     padding: 30px 0; */
}

.section:not(.hero-container) {
    height: auto;
}

.hero-container {
    display: flex;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cloud {
    position: fixed;
    top: 50%;
    width: 50vw;
    height: 100vh;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 50;
    opacity: 0;
    transition: transform .8s cubic-bezier(.77,0,.18,1), opacity .4s;
}

.cloud-left {
    left: 0;
    transform: translate(-100%, -50%);
}

.cloud-right {
    right: 0;
    transform: translate(100%, -50%);
}

.clouds-visible .cloud {
    opacity: 1;
}

.clouds-closed .cloud-left,
.clouds-closed .cloud-right {
    transform: translate(0%, -50%);
}

.section-header {
    text-align: center;
    position: relative;
    z-index: 10;
    margin-bottom: 24px;
    margin-top: 24px;
}

.section-title {
    font-family: "fake-serif", serif;
    font-size: clamp(26px, 6vw, 64px);
    letter-spacing: 0.08em;
    text-transform: capitalize;
    background: linear-gradient(
        90deg,
        #D8A84E,
        #FACA79,
        #FFF1C4,
        #FACA79,
        #C7963D
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-header .event-period {
    font-size: 18px;
    font-weight: normal;
    color: #FFD978;
}

.section-header::after {
    content: "";
    display: block;
    width: 140px;
    height: 3px;
    margin: 16px auto 0;
    background: linear-gradient(to right, transparent, #f5d77a, transparent);
}

.upcoming-event-container {
    max-width: 750px;
    margin: auto;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    background: linear-gradient(135deg,#f0a64d,#f9d38c,#f0a64d);
    z-index: 10;
    position: relative;
}

.upcoming-event-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.upcoming-event-container img {
    width: 100%;
}

.upcoming-event-container .event-title {
    font-size: 28px;
}

.upcoming-event-container .event-subtitle {
    font-size: 22px;
    font-weight: 300;
}

.events-container {
    padding: 0 6vw 120px;
}

.event-card {
    background: linear-gradient(135deg,#f0a64d,#f9d38c,#f0a64d);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    transition: .3s ease;
}

.event-card:hover {
    transform: translateY(-6px);
}

.event-image {
    width: 100%;
    height: 555px;
    object-fit: cover;
}

.event-details {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 150px;
    text-align: center;
}

.event-title {
    font-size: clamp(14px, 4.2vw, 18px);
    color: #b41f2d;
}

.event-description {
    font-size: clamp(11px, 3.6vw, 12px);
}

.event-period {
    font-size: clamp(12px, 3.2vw, 13px);
    font-weight: normal;
}

.event-details button {
    margin-top: 10px;
    padding: 0 15px;
    background: #b41f2d;
    color: #fff;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
	font-size: 12px;
}

.events-slider {
    max-width: 1400px;
    margin: 0 auto;
    padding:0 6vw 120px;
    position: relative;
    z-index: 10;
}

.events-slider .slick-slide {
    margin: 0 20px;
}

.events-slider .slick-list {
    margin: 0 -20px;
}

.events-slider .event-card {
    height: 100%;
}

.events-slider .slick-arrow {
    z-index: 5;
}

.chinese-lantern,
.chinese-horse {
    position: absolute;
}

.chinese-lantern {
    top: 0;
    right: 0;
}

.chinese-horse {
    top: -46px;
    left: -51px;
    transform: rotate(65deg);
}

@media (min-width: 1440px) {
	.section {
		height: 100vh !important;
	}
}

@media (max-width: 1024px) {
    body { overflow-y: auto; }

    .chinese-lantern { width: 250px; }
    .chinese-horse { width: 250px; }

    body,
    html {
        scroll-snap-type: none !important;
    }

    .section {
        scroll-snap-align: none !important;
    }

    .cloud,
    .cloud-left,
    .cloud-right {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .chinese-horse {
        top: -22px;
        left: -8px;
        transform: rotate(72deg);
        width: 150px;
    }

    .chinese-lantern {
        width: 150px;
    }

    .upcoming-event-container {
        margin: auto;
        width: 500px;
        padding: 20px;
    }

    html,
    body,
    .section,
    .hero-container,
    .events-container {
        scroll-snap-type: none !important;
        scroll-snap-align: none !important;
        scroll-snap-stop: normal !important;
    }
}

@media (max-width: 600px) {
    .lny-navbar img { width: 100px; }

    .lny-breadcrumb {
        flex-wrap: wrap;
        gap: 12px;
    }

    .lny-breadcrumb span {
        font-size: 14px;
    }

    .event-image {
        height: 200px;
    }

    .upcoming-event-container .event-title {
        font-size: 22px;
    }

    .upcoming-event-container .event-subtitle {
        font-size: 15px;
    }

    .cloud,
    .chinese-lantern,
    .chinese-horse {
        display: none;
    }
}

@media (max-width: 550px) {
    .upcoming-event-container {
        width: 90%;
    }
}

.upcoming-slider .custom-arrow::before, .events-slider .custom-arrow::before {
	display: none;
}

.events-slider .custom-arrow {
    background: none;
    border: none;
    padding: 0;
    z-index: 5;
    cursor: pointer;
}

.events-slider .custom-arrow img {
    width: 40px;
    height: auto;
    display: block;
}

/* Positioning */
.events-slider .slick-prev {
    left: 5%;
	top: 40%;
}

.events-slider .slick-next {
    right: 5%;
	top: 40%;
}

/* ===============================
   UPCOMING SLIDER – IMAGE UNIFORMITY
=============================== */

/* Limit and center the slide content */
.upcoming-slider .upcoming-slide {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Image wrapper controls size */
.upcoming-slider .upcoming-image {
    width: 100%;
    height: 420px; /* DESKTOP hero height */
    overflow: hidden;
    border-radius: 12px;
}

/* Force uniform image display */
.upcoming-slider .upcoming-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* key part */
    display: block;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 1024px) {
    .upcoming-slider .upcoming-image {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .upcoming-slider .upcoming-image {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .upcoming-slider .upcoming-image {
        height: 220px;
    }
}

.dining-card-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

/* Card wrapper */
.dining-card-container .event-card {
    display: flex;
    gap: 40px;
    max-width: 900px;
    width: 100%;
    background: linear-gradient(135deg,#f0a64d,#f9d38c,#f0a64d);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    align-items: center;
}

/* Poster area */
.dining-card-container .event-poster {
    flex: 0 0 440px;
    max-width: 440px;
}

.dining-card-container .event-poster img {
    width: 100%;
    height: 555px;
    object-fit: cover;
    border-radius: 16px;
}

/* Content area */
.dining-card-container .event-description {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dining-card-container .event-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.dining-card-container .event-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* Button */
.dining-card-container .event-button {
    margin-top: 20px;
    align-self: flex-start;
    padding: 12px 28px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    transition: all .3s ease;
}

.dining-card-container .event-button:hover {
    background: #c8a24d;
    color: #000;
}

@media (max-width: 900px) {
    .dining-card-container .event-card {
        flex-direction: column;
        padding: 20px;
    }

    .dining-card-container .event-poster {
        max-width: 100%;
        flex: none;
    }

    .dining-card-container .event-poster img {
        height: auto;
        aspect-ratio: 4 / 5;
    }
}
