.party-hero-image {
    background-image: url('../images/party/party_hero_image.jpg');
    height: 70vh; 
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 0; 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(84, 58, 51, 0.15);
    border-radius: inherit;
}

.hero-overlay h2 {
    font-family: 'Quickpen', sans-serif;
    font-size: 4em;
    font-weight: 200;
    letter-spacing: 0.02em;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.intro-section {
    z-index: 1;
}
.lead-text {
    line-height: 2;
    margin-bottom: 40px;
}

.party-plans-section {
    background-color: #F5F6F6;
    padding-top: 80px;
    padding-bottom: 80px;

    padding-top: 80px; 
    padding-bottom: 110px; 
    margin-top: -30px; 
    position: relative;
}

.plans-header {
    text-align: left;
    margin-bottom: 60px;

}

.plans-header h2 {
    font-family: 'DINSchrift', sans-serif;
    font-size: 4em;
    font-weight: 200;
    letter-spacing: 0.02em;
    color: #543A33;
    line-height: 1.2;
}

.plans-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.plans-image {
    flex: 1;
    background-image: url('../images/menu/dinner_slide.jpg');
    background-size: cover;
    background-position: center;
    min-height: 600px;
    position: sticky;
    top: 100px; 
    height: calc(100vh - 100px); 
    border-radius: 0px;
}

.plans-list {
    flex: 1;
    padding: 0 40px; 
}

.plan-item {
    background-color: #fff;
    border-radius: 0; 
    margin-bottom: 25px;
    border-bottom: 5px solid #F4C93F; 
    transition: transform 0.3s ease;
    overflow: hidden; 
}

.plan-item:hover {
    transform: translateY(-5px);
}

.plan-item:last-child {
    margin-bottom: 0; 
}

.plan-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 25px 30px;
    cursor: pointer;
    gap: 20px;
}

.plan-name {
    flex-grow: 1;
}

.plan-name h3 {
    font-family: 'DINSchrift', sans-serif;
    font-size: 1.2rem; 
    margin-bottom: 5px;
    color: #543A33;
    line-height: 1.3; 
}

.plan-name p {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 400;
    color: #543A33;
}
.plan-name .drink-tag {
    background-color: #F4C93F;
    color: #543A33;
    font-size: 0.8rem; 
    padding: 4px 10px; 
    border-radius: 0;
    font-weight: bold;
    display: inline-block;
    margin-top: 8px;
    line-height: 1;
}

.plan-price {
    font-family: 'DINSchrift', sans-serif;
    font-size: 1.5rem;
    color: #543A33;
    white-space: nowrap;
    align-self: center;
}

.plan-icon {
    font-size: 1.2rem;
    color: #543A33;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex-shrink: 0;
}

.plan-item.active .plan-icon {
    transform: rotate(45deg);
}

.plan-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.plan-detail-image {
    display: none; 
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.plan-item.active .plan-details {

}

.plan-details-content {
    padding: 0 30px 30px;
}

.plan-details-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0; 
}

.plan-details-content ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.plan-details-content ul li::before {
    content: '\f0da'; 
    font-family: 'Font Awesome 6 Free';
    font-weight: 900; 
    position: absolute;
    left: 0;
    top: 5px;
    color: #F4C93F;
    font-size: 0.9em;
}

.plan-details-content .view-more-btn {
    margin-top: 25px;
}

.partyplan-section {
    background-color: #ffffff;
    padding: 80px 0;
    width: 100%;
    border-radius: 0;
    margin-top: -30px;
    display: flex;
    flex-direction: column;
}

.partyplan-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.partyplan-text {
    flex: 1;
    text-align: left;
}

.partyplan-text h2 {
    font-family: 'DINSchrift', sans-serif;
    font-size: 4em;
    font-weight: 200;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    color: #543A33;
}

.partyplan-text p {
    font-size: 0.9em;
    line-height: 1.8;
    color: #543A33;
    margin-bottom: 30px;
}

.partyplan-image {
    flex: 1;
}

.partyplan-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.wedding-section {
    padding: 100px 0 200px;
    background-color: #fff;
    border-radius: 0;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.partyplan-section.layout-reverse {
    background-color: #EAEAEA;
}

.partyplan-section.layout-reverse .partyplan-content {
    flex-direction: row-reverse;
}

.wedding-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px; 
    margin: 0 auto;
    flex-direction: row-reverse;

}

.wedding-image {
    flex: 1;
    object-fit: cover; 
    border-radius: 0;
    aspect-ratio: 4 / 3;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);

    width: 1px;
}

.wedding-content {
    flex: 1;
    text-align: left;
}

.wedding-text {

}

.wedding-text h2 {
    font-family: 'DINSchrift', sans-serif;
    font-size: 3.5em;
    font-weight: 200;
    letter-spacing: 0.02em;
    margin-bottom: 30px;
    color: #543A33;
    line-height: 1.2;
}

.wedding-text p {

}

@media (max-width: 992px) {
    .plans-container {
        flex-direction: column;
    }
    .plans-image {
        display: none; 
    }
    .plan-detail-image {
        display: block; 
    }
    .plans-list {
        padding: 40px;
    }
    .wedding-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 40px;
    }

    .wedding-image {
        width: 100%;
        height: 300px; 
        aspect-ratio: auto;
    }
    .partyplan-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .plans-header {
        margin-bottom: 40px;
    }
    .plans-header h2 {
        font-size: 2.5rem;
    }
    .plans-list { padding: 40px 20px; }
    .plan-title {
        flex-wrap: nowrap; 
        padding: 20px 25px; 
        align-items: flex-start; 
    }
    .plan-name {
        width: auto; 
    }
    .plan-name h3 {
        font-size: 1.1rem; 
    }
    .plan-name .plan-price {
        align-self: flex-start;
        margin-top: 10px;
        font-size: 1.3rem;
    }
    .wedding-section { padding: 60px 0 150px; }
    .wedding-container { padding: 0 20px; } 
    .wedding-text h2 { 
        font-size: 2.5rem; 
    }
    .partyplan-text h2 {
        font-size: 2em;
    }
}

.rental-section {
    background-color: #ffffff;
    padding: 80px 0;
    width: 100%;
    border-radius: 0;
    margin-top: -30px;
    display: flex;
    flex-direction: column;
}

.rental-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.rental-text {
    flex: 1;
    text-align: left;
}

.rental-text h2 {
    font-family: 'DINSchrift', sans-serif;
    font-size: 4em;
    font-weight: 200;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    color: #543A33;
}

.rental-text p {
    font-size: 0.9em;
    line-height: 1.8;
    color: #543A33;
    margin-bottom: 30px;
}

.rental-section.layout-reverse {
    background-color: #EAEAEA;
}

.rental-section.layout-reverse .rental-content {
    flex-direction: row-reverse;
}

@media (max-width: 992px) {
    .rental-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 40px;
    }
}
    .partyplan-text h2 {
        font-size: 2em;
    }
}