@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/themes/blocksy-child/images/banners/lollipop-party-packages-home.avif');
    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);
    position: relative;
    z-index: 10;
    margin-bottom: clamp(12px, 2vh, 20px);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

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

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

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

/* Party Rentals Sections */
.party-rentals-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(204, 182, 147, 0.1);
}

.section-title {
    color: #46332A;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
}

.section-description {
    color: #666;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #CCB693;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.item-name {
    font-weight: 600;
    color: #46332A;
    font-size: 1.1rem;
}

.item-price {
    font-weight: 700;
    color: #CCB693;
    font-size: 1.2rem;
    background: #46332A;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    min-width: 100px;
    text-align: center;
}

/* Pricing Packages */
.pricing-packages {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.package-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.package-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #CCB693;
}

.package-item h5 {
    color: #46332A;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.package-item p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #46332A, #5a4336);
    padding: 1rem 2rem;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.note {
    font-size: 1rem;
    font-style: italic;
    color: black;
    text-align: center;
    margin-top: 1rem;
}

.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;
}

.party-rentals-pricing-note {
    font-style: italic;
    font-weight: 700;
    text-align: center;
    margin-top: 2rem;
    color: #666;
}

/* Responsive */
@media (width > 768px) {
    .party-rentals-section {
        padding: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1.2rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .pricing-packages {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .pricing-item {
        padding: 1.25rem 2rem;
    }

    .item-name {
        font-size: 1.2rem;
    }

    .item-price {
        font-size: 1.3rem;
        min-width: 120px;
    }
}

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

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

    .party-rentals-flex-container img {
        width: 50%;
    }

    .party-rentals-section {
        padding: 3.5rem;
        margin-bottom: 2.5rem;
    }

    .pricing-packages {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

body {
    font-family: "lato", sans-serif;
    color: #3a2f24;
    margin: 0;
    background-color: #faf9f7;
    line-height: 1.6;
}

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

.container {
    padding: 20px;
}

h4 {
    font-family: "lato", serif;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    color: #000;
    margin-bottom: 16px;
}

img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #354024;
    font-family: "Cormorant Garamond";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.56px;
    text-transform: capitalize;
}

.breadcrumb span {
    color: #46332A;
}

.section {
    background-color: #46332A;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.section h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #CCB693;
}

ul {
    color: #D4C7BE;
    list-style: disc;
    margin-left: 20px;
    font-size: 14px;
}

li {
    margin-bottom: 4px;
}

.price {
    float: right;
}

.tax {
    color: #000;
}

.note {
    font-size: 12px;
    color: #D4C7BE;
    display: block;
    margin-top: 6px;
}

.book-btn {
    display: block;
    text-align: center;
    background-color: #354024;
    color: white;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 16px;
}

.book-btn:hover {
    background-color: #4c5c2a;
}
/* Responsive Paragraphs */
.party-rentals-flex-inner-container p,
.section-description,
.party-rentals-pricing-note {
    font-size: clamp(14px, 2.5vw, 18px);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.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;
}