/* Front Page Stuff */
.button, .btn-primary, .btn-secondary, input[type="submit"], button {
    font-family: 'Cormorant Garamond', serif !important;
}

/* Scroll Reveal Stuff */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    will-change: opacity, transform;
}

.reveal-on-scroll--left {
    transform: translateX(-30px);
}

.reveal-on-scroll--right {
    transform: translateX(30px);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.custom-hero-banner {
    position: relative;
    min-height: clamp(280px, 60vh, 550px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
    overflow: hidden;
    background-color: #000;
    background-image: url('../../images/banners/lollipop-party-packages-home.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.custom-hero-banner::before {
    content: none !important;
}

.custom-hero-banner .hero-body {
    padding: clamp(16px, 4vw, 56px) clamp(12px, 3vw, 40px);
    width: 100%;
}

@media (max-width: 768px) {
    .custom-hero-banner {
        background-attachment: scroll;
    }
}


.banner-overlay {
    background-color: rgba(53, 64, 36, 0.75);
    padding: clamp(24px, 6vw, 64px) clamp(20px, 5vw, 52px);
    max-width: min(85vw, 800px);
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: left;
    position: relative;
    z-index: 2;
}

.banner-overlay h1 {
    color: #CCB693;
    font-size: clamp(28px, 8vw, 68px);
    margin: 0 0 clamp(12px, 2vh, 28px) 0;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.banner-overlay .tagline {
    color: #ffffff;
    font-size: clamp(16px, 4vw, 32px);
    margin-bottom: clamp(24px, 4vh, 44px);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.banner-buttons {
    display: flex;
    gap: clamp(12px, 3vw, 24px);
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.banner-buttons .button {
    padding: clamp(12px, 3vh, 22px) clamp(20px, 4vw, 40px);
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: clamp(120px, 15vw, 180px);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.banner-buttons .button.is-primary {
    background-color: #46332A;
    color: #ffffff;
    border: 2px solid #46332A;
}

.banner-buttons .button.is-primary:hover {
    background-color: #6C4E42;
    border-color: #6C4E42;
}

.banner-buttons .button.is-secondary {
    background-color: #889063;
    color: #ffffff;
    border: 2px solid #889063;
}

.banner-buttons .button.is-secondary:hover {
    background-color: #6b7a4f;
    border-color: #6b7a4f;
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.service-card .card-content p {
    color: hsl(0, 0%, 29%);
    line-height: 1.6;
}


.feature-item {
    margin-bottom: 2rem;
    color: white;
}

.feature-icon {
    color: hsl(171, 100%, 41%);
    font-size: 1.5rem;
    margin-right: 1rem;
    font-weight: bold;
}

.cta-section {
    background: white;
    color: #333;
}

.cta-section .button {
    background: linear-gradient(135deg, #46332A, #5a4336);
    color: white;
    border: none;
    font-family: 'Cormorant Garamond', serif !important;
}

.cta-section .button:hover {
    background: linear-gradient(135deg, #5a4336, #6b5342);
    color: white;
}

.banner-overlay {
    background-color: rgba(53, 64, 36, 0.75);
}

/* Mobile: 320px - 480px */
@media (max-width: 480px) {
    .banner-overlay {
        max-width: 95vw;
        padding: clamp(20px, 5vw, 32px) clamp(16px, 4vw, 24px);
    }

    .banner-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .banner-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
}

/* Large Mobile/Small Tablet: 481px - 768px */
@media (min-width: 481px) and (max-width: 768px) {
    .custom-hero-banner.has-image-display {
        background-image: none !important;
    }

    .banner-overlay {
        max-width: min(85vw, 500px);
    }
}

/* Tablet (Portrait): 768px - 992px */
@media (min-width: 768px) and (max-width: 992px) {
    .banner-overlay {
        max-width: min(80vw, 650px);
    }
}

/* Small Laptop/Desktop: 992px - 1200px */
@media (min-width: 992px) and (max-width: 1200px) {
    .banner-overlay {
        max-width: min(75vw, 750px);
    }
}

/* Desktop: 1200px and above */
@media (min-width: 1200px) {
    .banner-overlay h1 {
        white-space: nowrap;
    }

    .banner-overlay .tagline {
        white-space: nowrap;
    }
}

.gallery-subtitle {
    padding-top: 20px;
}

/* Carousel Stuff */
.gallery-carousel {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.carousel-container {
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: calc(300px * 5);
}

.gallery-card {
    flex: 0 0 300px;
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
}

.gallery-card .card {
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.gallery-card .card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.gallery-card .card-image .image.is-4by3 {
    height: 225px;
}

.gallery-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-card .card:hover .card-image img {
    transform: scale(1.05);
}

.carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: hsl(0, 0%, 21%);
    color: white;
    border: 2px solid hsl(0, 0%, 21%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.carousel-btn:hover::before {
    left: 100%;
}

.carousel-btn:hover {
    background: #6b7a4f;
    border-color: #6b7a4f;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.carousel-btn:active {
    transform: scale(0.98) translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background: #6b7a4f;
}

/* Carousel Responsive */
@media (max-width: 1024px) {
    .carousel-track {
        width: calc(280px * 5);
    }

    .gallery-card {
        flex: 0 0 280px;
    }

    .gallery-card .card-image .image.is-4by3 {
        height: 210px;
    }
}

@media (max-width: 768px) {
    .gallery-carousel {
        padding: 1rem 0;
    }

    .carousel-track {
        width: calc(260px * 5);
        gap: 0.75rem;
    }

    .gallery-card {
        flex: 0 0 260px;
    }

    .gallery-card .card-image .image.is-4by3 {
        height: 195px;
    }

    .carousel-navigation {
        gap: 0.75rem;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .carousel-track {
        width: calc(240px * 5);
        gap: 0.5rem;
    }

    .gallery-card {
        flex: 0 0 240px;
    }

    .gallery-card .card-image .image.is-4by3 {
        height: 180px;
    }

    .carousel-navigation {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Features Section */
.features-grid {
    margin-top: 4rem;
}

.feature-card {
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature-svg {
    width: 90px;
    height: 90px;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.feature-svg[data-svg="delivery"] {
    transform: scale(1.2);
    object-fit: contain;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.feature-card:hover .feature-svg {
    opacity: 1;
    transform: scale(1.05);
}

.feature-card .card-content {
    padding: 2rem 1.5rem;
}

.feature-card .title {
    color: hsl(0, 0%, 21%);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: hsl(0, 0%, 48%);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, hsl(0, 0%, 96%) 0%, hsl(0, 0%, 100%) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-top: 4rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem !important;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, hsl(171, 100%, 41%) 0%, hsl(217, 91%, 60%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content .title {
    color: #000000;
    line-height: 1.2;
}

.content .subtitle {
    color: hsl(0, 0%, 29%);
    font-size: 1.25rem !important;
    line-height: 1.6;
}

.content .button {
    font-family: 'Cormorant Garamond', serif !important;
    box-shadow: 0 6px 20px rgba(72, 25, 17, 0.3);
    transition: all 0.3s ease;
}

.content .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 25, 17, 0.4);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .features-grid {
        margin-top: 2rem;
    }

    .feature-card .card-content {
        padding: 1.5rem 1rem;
    }

    .stats-section {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }

    .stat-number {
        font-size: 2.5rem !important;
    }
}

.gallery-card .card {
    background-color: #000000 !important;
    color: white !important;
    border: none !important;
}

.gallery-card .card-content {
    background-color: #000000 !important;
    color: white !important;
}

.gallery-card .card-content h3,
.gallery-card .card-content .title {
    color: white !important;
}

.gallery-card .card-content p {
    color: white !important;
}

#gallery .title.is-2 {
    color: white !important;
}

.gallery-subtitle {
    color: white !important;
}

#gallery .title {
    color: white !important;
}

#gallery .gallery-subtitle {
    color: white !important;
}

#gallery .card p,
#gallery .gallery-card p,
#gallery .gallery-card .title,
#gallery .content>h2 {
    color: white !important;
}


/* Photobooth Section */
.photobooth-preview-section {
    background-color: #46332a;
    padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 48px);
    margin: 3rem 0;
    color: #fff;
    border-radius: 16px;
}

.photobooth-preview-grid {
    gap: clamp(28px, 4vw, 48px);
}

.photobooth-preview-content {
    max-width: 520px;
}

.photobooth-preview-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.photobooth-preview-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.photobooth-preview-badges .badge {
    border-radius: 999px;
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.17);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

.photobooth-preview-cta {
    background-color: #46332a;
    color: #ffffff;
    border: 2px solid #46332a;
    box-shadow: 0 12px 24px rgba(70, 51, 42, 0.25);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.photobooth-preview-cta:hover {
    background-color: #6c4e42;
    border-color: #6c4e42;
    color: #ffffff;
}

.photobooth-preview-video {
    display: block;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    height: 320px;
    border: 6px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.photobooth-preview-card {
    margin: 0;
    border-radius: 18px;
    height: 100%;
    overflow: hidden;
}

.photobooth-preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photobooth-preview-video__clip {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photobooth-preview-video__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    letter-spacing: 0.05em;
}

.photobooth-preview-content .title,
.photobooth-preview-content .subtitle {
    color: #ffffff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}

.photobooth-preview-video:hover .photobooth-preview-video__overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .photobooth-preview-section {
        border-radius: 16px;
        margin: 2rem 0;
    }

    .photobooth-preview-video {
        min-height: 260px;
    }
}

/* LPP Preview Section */
.lpp-preview-section {
    background-color: #354024;
    margin: 2rem 0 3rem;
    padding: clamp(40px, 6vw, 72px);
    color: #fff;
}

.lpp-preview-section .lpp-preview-content,
.lpp-preview-section .lpp-preview-content p,
.lpp-preview-section .lpp-preview-content .subtitle,
.lpp-preview-section .lpp-preview-content .title,
.lpp-preview-section .lpp-preview-content strong {
    color: #fff !important;
}

.lpp-preview-video-wrapper {
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
    background: #000;
}

.lpp-preview-video {
    width: 100%;
    display: block;
}

.lpp-preview-content {
    max-width: 520px;
}

.lpp-preview-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.lpp-preview-content .button.is-light {
    font-family: 'Cormorant Garamond', serif !important;
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.lpp-preview-content .button.is-primary {
    font-family: 'Cormorant Garamond', serif !important;
    background-color: #46332a;
    border-color: #46332a;
    color: #fff;
}


.book-your-event-button:hover {
    background-color: #6b7a4f;
    border-color: #6b7a4f;
    color: #ffffff;
}

.gallery-button {
    background-color: black !important;
    color: #ffffff !important;
    border: 2px solid #46332a !important;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.gallery-button:hover {
    background-color: #6c4e42 !important;
    border-color: #6c4e42 !important;
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .lpp-preview-section {
        padding: clamp(28px, 6vw, 48px);
    }

    .lpp-preview-video-wrapper {
        margin-bottom: 2rem;
    }

    .lpp-preview-section .lpp-preview-content,
    .lpp-preview-section .lpp-preview-content p,
    .lpp-preview-section .lpp-preview-content .subtitle,
    .lpp-preview-section .lpp-preview-content .title,
    .lpp-preview-section .lpp-preview-content strong {
        color: #fff !important;
    }
}

