@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* Typography */
h1, h2, h3, h4, h5, h6,
.title {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 600;
}

p, span, div, .subtitle, .content {
    font-family: 'Lato', sans-serif !important;
}


/* Hero Banner */
.custom-hero-banner {
    position: relative;
    min-height: clamp(160px, 35vh, 320px);
    background-image: url('https://lollipopspartypackages.ca/wp-content/uploads/2025/11/placeholderbanner.jpg');
    background-size: cover;
}

.custom-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.banner-content {
    padding: clamp(16px, 4vw, 32px) clamp(16px, 4vw, 40px);
    max-width: min(90vw, 900px);
    width: 100%;
    text-align: center;
}

.banner-title {
    color: #CCB693;
    font-size: clamp(22px, 4vw, 40px);
    margin: 0 0 clamp(8px, 1.5vh, 20px) 0;
    line-height: 1.1;
    font-weight: 700;
    position: relative;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-breadcrumbs {
    color: #ffffff;
    font-size: clamp(12px, 2.5vw, 18px);
    margin-bottom: clamp(12px, 2vh, 20px);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .banner-content {
        max-width: 95vw;
        padding: 16px 16px 20px;
    }
}

.photobooth-container {
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.photobooth-flex-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 5rem;
} 

.photobooth-flex-inner-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.photobooth-breadcrumbs {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-bottom: 2rem;
}

.photobooth-breadcrumbs a {
    color: #354024;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-size: 1.75rem;
}

.photobooth-breadcrumbs h3 {
    color: #46332A;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-style: italic;
    font-size: 1.5625rem;
}

.photobooth-flex-container img {
    flex: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.photobooth-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.photobooth-card {
    background-color: #46332A;
    border-radius: 10px;
    overflow: visible;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    color: white;
    position: relative;
}

.photobooth-card:hover {
    transform: scale(1.05);
}

.photobooth-price-badge {
    position: absolute;
    background-color: #5a6a3a;
    color: #FFFFFF;
    border-radius: 50%;
    text-align: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    right: -1.5rem;
    top: -2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.photobooth-card h4 {
    color: #ccb693;
    font-weight: 700;
    font-size: 1.375rem;
}

.photobooth-card p {
    padding: 0;
    margin: 0 0 1rem 0;
    text-align: left;
    color: #d4c7be;
}

.photobooth-card ul {
    margin: 0.5rem 0 1rem 0;
    padding-left: 1.5rem;
    color: #d4c7be;
}

.photobooth-card li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.book-now {
    display: inline-block;
    width: 30%;
    text-align: center;
    padding: 1rem;
    background-color: #6c7a4a;
    color: white !important;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: auto;
    border-radius: 6px;
    margin-left: auto;
}

.book-now:hover {
    background-color: #7a8a5a;
}

.photobooth-add-ons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.photobooth-add-ons-heading {
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 22px;
    text-align: center;
}

.photobooth-pricing-note {
    font-style: italic;
    font-weight: 700;
}

@media (width > 768px) {
    .photobooth-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .photobooth-card {
        padding: 1rem;
    }
}

@media (width > 1024px) {
    .photobooth-flex-container {
        flex-direction: row;
        align-items: flex-start;
    }

    .photobooth-flex-inner-container {
        width: 50%;
    }

    .photobooth-flex-container img {
        width: 50%;
    }
    .photobooth-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive Text */
.photobooth-flex-inner-container p,
.photobooth-pricing-note {
    font-size: clamp(14px, 2.5vw, 18px);
    line-height: 1.6;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .photobooth-flex-inner-container p,
    .photobooth-pricing-note {
        font-size: clamp(16px, 1.8vw, 20px);
        line-height: 1.7;
    }
}

@media (min-width: 1024px) {
    .photobooth-flex-inner-container p,
    .photobooth-pricing-note {
        font-size: clamp(18px, 1.2vw, 22px);
        line-height: 1.8;
    }
}

/* Photobooth Section */
.photobooth-bab {
    background-color: #f6f0f0;
    padding-bottom: 4rem;
}

.photobooth-bab-hero {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.25), rgba(76, 77, 11, 0.75)), url('https://lollipopspartypackages.ca/wp-content/uploads/2025/11/photobooth-hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 4rem 2rem 3rem;
}

.photobooth-bab-hero__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.photobooth-bab-hero__content {
    max-width: 560px;
}

.photobooth-bab-hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.photobooth-bab-hero h1 {
    font-size: clamp(2.5rem, 3vw, 3.5rem);
    margin-bottom: 1rem;
}

.photobooth-bab-hero p {
    margin-bottom: 1.5rem;
}

.photobooth-bab-hero__badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.photobooth-bab-hero__badges .badge {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
}

/* Hero Carousel */
.photobooth-hero-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.photobooth-hero-carousel .carousel-container {
    overflow: hidden;
    border-radius: 24px;
    padding: 1rem;
}

.photobooth-hero-carousel .carousel-track {
    position: relative;
    height: auto;
    min-height: calc(480px * 9 / 16);
}

.photobooth-hero-carousel .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.photobooth-hero-video {
    display: block;
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 24px;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    background: #000;
}

.photobooth-hero-carousel .hero-slide img {
    width: 100%;
    max-width: 480px;
    height: auto;
    max-height: 100%;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.photobooth-hero-carousel .hero-slide img:hover {
    transform: scale(1.05);
}

/* Image Overlay */
.photobooth-hero-carousel .hero-slide .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
    border-radius: 8px;
}

.photobooth-hero-carousel .hero-slide:hover .image-overlay {
    opacity: 1;
}

/* Lightbox Fullscreen */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.image-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.image-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.image-lightbox .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.image-lightbox .close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Carousel Dots */
.photobooth-hero-carousel .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.photobooth-hero-carousel .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.photobooth-hero-carousel .carousel-dot.active {
    background: rgba(255, 255, 255, 0.9);
}

.photobooth-bab-hero__image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 6px solid rgba(255, 255, 255, 0.35);
}

.photobooth-bab-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 1100px;
    padding: 3rem 1.5rem;
}

.benefit-card {
    background-color: #fff;
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.08);
    min-height: 240px;
}

.benefit-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    color: #46332a;
}

.photobooth-bab-cta {
    margin: 0 auto;
    padding: 0 1.5rem;
    max-width: 1200px;
}

.photobooth-bab-cta__content {
    background-color: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
    text-align: center;
}

.photobooth-bab-cta__eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #6c7a4a;
}

.photobooth-bab-cta h2 {
    margin-bottom: 0.8rem;
    font-size: clamp(2rem, 2.5vw, 2.75rem);
}

.photobooth-bab-honeybook {
    background-color: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
    max-width: 1200px;
    margin: 0 auto;
}

.honeybook-placeholder {
    min-height: 500px;
    border: 2px dashed #46332a;
    color: #46332a;
    font-weight: 600;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.9));
}

@media (max-width: 768px) {
    .photobooth-bab-hero {
        padding: 3rem 1rem;
    }

    .photobooth-bab-hero__badges {
        justify-content: flex-start;
    }

    .photobooth-hero-video {
        border-radius: 16px;
        border-width: 4px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .photobooth-hero-carousel .carousel-track {
        min-height: calc(100vw * 9 / 16);
    }

    .photobooth-hero-carousel .hero-slide {
        padding: 0 1rem;
    }

    .photobooth-hero-video {
        max-width: 100%;
        border-radius: 16px;
        border-width: 4px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .photobooth-hero-carousel .hero-slide img {
        max-width: 100%;
        border-radius: 4px;
    }

    .image-lightbox img {
        max-width: 95vw;
        max-height: 95vh;
    }

    .photobooth-bab-honeybook {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .photobooth-bab-benefits {
        grid-template-columns: 1fr;
    }

    .photobooth-bab-cta__content {
        padding: 2rem 1.25rem;
    }

    .photobooth-bab-honeybook {
        padding: 1.25rem;
    }
}

.pricing-note {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #CCB693;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    margin: 3rem auto 2rem auto;
    max-width: 800px;
    text-align: center;
    font-style: italic;
    font-weight: 600;
    color: #46332A;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.pricing-note::before {
    content: "💰";
    font-size: 1.5rem;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0.5rem;
    border-radius: 50%;
    border: 2px solid #CCB693;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

