/* Page Header */
.page-header {
    display: flex;
    flex-direction: column; /* Stack on small screens */
    align-items: flex-start;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem;
    gap: 0.5rem;
}

.page-header .page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #800080;
    margin: 0;
}

.breadcrumb-nav {
    font-size: 0.9rem;
}

.breadcrumb {
    list-style: none; /* remove default numbering */
    padding: 0;
    background: transparent;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}


.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #A64AC9;
    padding: 0 0.5rem;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #333333;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: #800080;
}

.breadcrumb-item.active {
    color: #A64AC9;
}

/* Event Images */
.event-images {
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* 
.event-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
} */
.event-img {
    width: 100%;            /* image fills container width */
    height: auto;           /* maintain original aspect ratio */
    max-height: 90vh;       /* optional: prevent image from being taller than viewport */
    object-fit: contain;    /* show full image without cropping */
    border-radius: 12px;
    display: block;
    margin: 0 auto;         /* center the image if smaller than container */
    transition: transform 0.3s ease;
}


.event-img:hover {
    transform: scale(1.02);
}

/* Carousel Inner */
.carousel-inner {
    border-radius: 12px;
    overflow: hidden;
}

/* Carousel controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 35px;
    height: 35px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .event-img {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .event-img {
        height: 220px;
    }

    .page-header .page-title {
        font-size: 1.5rem;
    }

    .breadcrumb-nav {
        font-size: 0.8rem;
    }
}

.event-details {
    max-width: 900px;
    margin: 0 auto;
}

.details-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 20px;  /* space above the card */
    box-shadow: 0 6px 24px rgba(128,0,128,0.1);
    border: 1px solid var(--light-lavender);
}

.details-title {
    font-size: 1.8rem;
    color: var(--deep-purple);
    margin-bottom: 1rem;
    font-weight: 700;
}

.details-description,
.details-includes,
.details-price,
.details-note {
    font-size: 1rem;
    color: var(--charcoal-gray);
    margin-bottom: 20px;
}

.details-includes ul {
    list-style-type: disc;
    padding-left: 1.2rem;
   margin-top: 5px !important;   /* reduce space above list */
    
}

.details-price {
    font-size: 1.2rem;
    color: var(--deep-purple);
    font-weight: 600;
    margin-top: 25px !important;  /* add more space above price */
    
}

.details-note {
    font-style: italic;
    color: #555;
}

.details-code {
    text-align: right;
    font-size: 0.9rem;
    color: var(--medium-purple);
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .details-card {
        padding: 1.2rem;
    }
    .details-title {
        font-size: 1.5rem;
    }
}

 /* event button */

.wa-btn-wrap {
    margin: 25px 0;
    text-align: center;
    display: flex;            /* ensure buttons align in a row */
    justify-content: center;  /* center buttons on large screens */
    flex-wrap: wrap;          /* allow wrapping on very small screens */
    gap: 15px;                /* space between buttons on large screens */
}

.wa-btn {
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.wa-btn:hover {
    background-color: #1da955;
}

.wa-btn-share {
    background-color: #128C7E; /* WhatsApp dark green */
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.wa-btn-share:hover {
    background-color: #075E54;
}

/* Remove old margin-left rules since gap handles spacing */
.wa-btn + .wa-btn {
    margin-left: 0;
}

@media (max-width: 576px) {
    .wa-btn-wrap {
        flex-direction: column; /* stack buttons vertically */
        align-items: center;    /* center buttons */
        gap: 12px;              /* vertical spacing */
    }
}

 /* why choose us */
.why-choose-us {
    text-align: center;
    padding: 30px 50px;   /* adds left & right spacing */
}

.why-title {
    font-size: 2rem;
    color: var(--deep-purple);
    font-weight: 700;
    margin-bottom: 2rem;
    /* removed animation */
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.why-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0px 5px 18px rgba(0,0,0,0.1);
    border: 1px solid var(--light-lavender);

    display: flex;
    flex-direction: column;
    align-items: center; /* center all content horizontally */
    text-align: center;  /* ensure text is centered */
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    opacity: 1;
}

/* Hover effect like Birthday cards */
.why-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
}

/* Icon styling */
.why-box img {
    width: 70px;              
    height: 70px;
    object-fit: contain;
    margin-bottom: 1rem;

    filter: brightness(0) saturate(100%) invert(40%) sepia(30%) saturate(800%)
            hue-rotate(250deg) brightness(90%) contrast(95%);
}

/* Responsive icon resizing */
@media (max-width: 768px) {
    .why-box img {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .why-box img {
        width: 45px;
        height: 45px;
    }
}

.why-box h4 {
    font-size: 1.2rem;
    color: var(--deep-purple);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-box p {
    font-size: 0.95rem;
    color: var(--charcoal-gray);
}
/* terms and condition and customer requiremeny*/
/* Common Card Styling */
.requirements-card,
.terms-card {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.1);
    border: 1px solid var(--light-lavender);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    display: flex;
    flex-direction: column;
    text-align: left;
    
}

/* Slight lift and stronger shadow on hover */
.requirements-card:hover,
.terms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Section Titles */
.requirements-card h2,
.terms-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-purple);
    margin-bottom: 20px;
    text-align: center;
}

/* Lists */
.requirements-card ul,
.terms-card ul {
    list-style-type: disc;
    padding-left: 20px;
    line-height: 1.7;
    color: var(--charcoal-gray);
}

.requirements-card li,
.terms-card li {
    margin-bottom: 10px;
}

/* --------------------- Responsive --------------------- */
@media (max-width: 1024px) {
    .requirements-card,
    .terms-card {
        padding: 25px 20px;
    }

    .requirements-card h2,
    .terms-card h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .requirements-card,
    .terms-card {
        padding: 20px 15px;
    }

    .requirements-card h2,
    .terms-card h2 {
        font-size: 1.6rem;
    }

    .requirements-card ul,
    .terms-card ul {
        padding-left: 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .requirements-card,
    .terms-card {
        padding: 15px 10px;
    }

    .requirements-card h2,
    .terms-card h2 {
        font-size: 1.4rem;
    }

    .requirements-card ul,
    .terms-card ul {
        padding-left: 10px;
        font-size: 0.9rem;
    }
}
.related-events-section .birthday-wrapper {
    width: 100%;
    padding: 40px 20px; /* left/right spacing */
    background: #ffffff;
}

.related-events-section .birthday-container {
    width: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, #E1BEE7, #c280cf);
    padding: 2rem;
}

.related-events-section .birthday-grid {
    display: flex;
    overflow-x: auto; /* horizontal scroll */
    gap: 20px;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
}

.related-events-section .birthday-card {
    flex: 0 0 23%; /* default: 4 cards per row on large screen */
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0,0,0,0.1);
    transition: transform .3s ease, box-shadow .3s ease;
    min-width: 200px; /* ensures card doesn't shrink too much */
    height: 350px; /* all cards same height */
}

.related-events-section .birthday-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.related-events-section .birthday-card img {
    width: 100%;
    height: 200px; /* image height */
    object-fit: cover; /* scale image without distortion */
}

.related-events-section .birthday-card-content {
    padding: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.related-events-section .birthday-card-title {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.related-events-section .birthday-card-price {
    font-size: 1rem;
    margin-top: 3px;
    font-weight: bold;
    color: #800080;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .related-events-section .birthday-card {
        flex: 0 0 31%; /* 3 cards visible */
    }
}

@media (max-width: 900px) {
    .related-events-section .birthday-card {
        flex: 0 0 48%; /* 2 cards visible */
    }
}

@media (max-width: 600px) {
    .related-events-section .birthday-card {
        flex: 0 0 90%; /* 1 card visible */
    }
}

/* Popup Background */
.popup-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.6) !important;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

/* Popup Container */
.popup-box {
    background: #fff;
    width: 90%;
    max-width: 450px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease-in-out;
    position: relative !important;
    z-index: 999999999 !important;
}


.popup-box h3 {
    text-align: center;
    color: #6A1B9A;
    margin-bottom: 15px;
}

.popup-box input,
.popup-box textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.popup-actions {
    display: flex;
    justify-content: space-between;
}

.close-btn {
    background: #999;
    padding: 10px 20px;
    border-radius: 6px;
    color: white;
    border: none;
}

.send-btn {
    background: #25D366;
    padding: 10px 20px;
    border-radius: 6px;
    color: white;
    border: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}


/* ===================== Reviews Section ===================== */
.reviews-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    padding: 3rem 1rem;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto; /* center section on page */
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

/* Title */
.reviews-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.review-count {
    font-weight: 400;
    color: #555;
}

/* Average rating */
.avg-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #333;
}

.avg-rating .stars {
    display: flex;
    gap: 4px;
}

.star {
    font-size: 1.4rem;
    color: #ccc;
    transition: color 0.3s, transform 0.2s;
}

.star.filled {
    color: #FFD700 !important; /* Gold */
}

/* Hover effect on stars (optional for form) */
.star:hover {
    color: #ffb400;
    cursor: pointer;
    transform: scale(1.2);
}

/* Reviews list */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center; /* center cards */
}

.review-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.review-header strong {
    font-size: 1rem;
    color: #222;
}

.review-stars .star {
    font-size: 1rem;
}

.review-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.review-date {
    font-size: 0.8rem;
    color: #888;
}

.no-review {
    font-size: 1rem;
    color: #777;
    font-style: italic;
    text-align: center;
}

/* ===================== Write Review Form ===================== */
.write-review {
    margin-top: 3rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto; /* center form */
}

.write-review h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.review-form .form-select,
.review-form .form-control {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 0.5rem 0.75rem;
    margin-bottom: 1.2rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-size: 1rem;
}

.review-form .form-select:focus,
.review-form .form-control:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.3);
}

.review-form button {
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    display: block;
    margin: 0 auto;
}

.review-form button:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* ===================== Responsive ===================== */
@media (max-width: 768px) {
    .avg-rating {
        flex-direction: column;
        gap: 5px;
    }

    .review-card, .write-review {
        padding: 1.2rem;
    }

    .write-review h3 {
        font-size: 1.3rem;
    }
}

