/* weddings-style.css */

/* عنوان‌های بخش‌ها */
.section-title {
    text-align: center;
    font-weight: 700;
    color: #36454F; /* رنگ خاکستری ذغالی */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FFD700; /* رنگ طلایی */
    border-radius: 1.5px;
}

/* استایل گالری تصاویر (Carousel) */
.hall-gallery .carousel-inner {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hall-gallery .carousel-item img {
    height: 450px;
    object-fit: cover;
}

.hall-gallery .carousel-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px;
    border-radius: 0 0 12px 12px;
}

/* استایل آکاردئون پکیج‌ها */
.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header .accordion-button {
    font-weight: 600;
    font-size: 1.2rem;
    color: #333;
    background-color: #fff;
    box-shadow: none;
}

.accordion-header .accordion-button:not(.collapsed) {
    background-color: #FFD700; /* رنگ طلایی */
    color: #262626;
}

.accordion-header .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

.accordion-body {
    background-color: #fafafa;
    font-size: 0.95rem;
}

.accordion-body ul {
    padding-right: 20px;
}

.accordion-body .price-info {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #28a745; /* سبز */
}

.accordion-button i {
    color: #B8860B; /* طلایی تیره‌تر */
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) i {
    color: #262626;
    transform: rotate(180deg);
}

/* استایل کارت‌های آپشن‌ها */
.option-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.option-icon {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 15px;
}

.option-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.option-description {
    font-size: 0.9rem;
    color: #777;
}

/* استایل دکمه تماس و رزرو (CTA) */
.cta-section {
    background-color: #262626;
    color: #fff;
    padding: 40px 20px;
    border-radius: 12px;
    margin-top: 40px;
}

.cta-button {
    background-color: #FFD700;
    color: #262626;
    font-weight: 700;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e6c300;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}