/* Event Booking Custom Styles */
.footer-wrapper{
    margin-top: 0 !important;
}
.event-bg-light {
    background-color: #FDFDFB;
}

/* Hero Section */
.event-hero {
    position: relative;
    background-image: url('/upload/products/soft-tacos-3pc-thumbnail.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: white;
}

.event-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.event-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.event-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.event-hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Buttons */
.event-btn-primary {
    background-color: #2F7C31;
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border: 2px solid #2F7C31;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.event-btn-primary:hover {
    background-color: #245c25;
    border-color: #245c25;
    color: white;
}

.event-btn-outline {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px); /* Fallback to semi-transparent if backdrop-filter is strictly "glassmorphism", I will just use semi-transparent */
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.event-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Effortless Planning Section */
.event-planning-section.section_1 {
    padding: 80px 0 100px;
    background-color: #FDFDFB;
}
.event-planning-section.section_2{
    padding: 40px 0; 
    background-color: #F6F6F6;
}
.event-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.event-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #F6C042;
    margin: 15px auto 0;
}

.event-step-card {
    background-color: white;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.event-step-icon {
    width: 64px;
    height: 64px;
    background-color: #E6F4EA;
    color: #2F7C31;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.event-step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.event-step-text {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Form specific styles */
.event-form-card {
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.event-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
}
.event-input {
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.85rem 1rem;
    background-color: #f8fafc;
    font-size: 1rem;
    width: 100%;
}
.event-input:focus {
    border-color: #2F7C31;
    box-shadow: 0 0 0 3px rgba(47, 124, 49, 0.15);
    outline: none;
}

/* Sidebar specific styles */
.event-sidebar-box {
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.event-benefit-list li {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}
.event-benefit-list li i {
    color: #FFC107;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
}
.event-pizza-img {
    border-radius: 8px;
    object-fit: cover;
}

/* Custom styles for new landing page sections */

.planning-card-link {
    text-decoration: none !important;
    display: block;
    height: 100%;
    color: inherit; /* Prevent default blue link color */
}

.planning-card {
    background-color: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.planning-card-link:hover .planning-card {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.planning-img-wrapper {
    height: 230px;
    overflow: hidden;
    position: relative;
}

.planning-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.planning-card-link:hover .planning-img {
    transform: scale(1.03);
}

.planning-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.planning-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748; /* Dark heading */
    margin-bottom: 0.5rem;
}

.planning-content p {
    font-size: 0.95rem;
    color: #718096; /* Muted text */
    margin-bottom: 1rem;
    line-height: 1.5;
    flex-grow: 1;
}

.planning-cta {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2F7C31; /* Green brand color */
    display: flex;
    align-items: center;
    margin-top: auto;
}


.benefit-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
}

.menu-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}

.testimonial-card {
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-3px);
}

.accordion-button:not(.collapsed) {
    background-color: #E6F4EA;
    color: #2F7C31;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}
