/* Events Page Styles */

/* Page Banner */
.page-banner {
    position: relative;
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/homepage/slider-1.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.banner-content {
    max-width: 800px;
    padding: 0 20px;
}

.banner-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Events Introduction */
.events-intro {
    padding: 80px 0;
    background-color: #fff;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.intro-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.intro-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    min-width: 180px;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: #b8860b;
    margin-bottom: 5px;
}

.stat-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
}

/* Event Types Section */
.event-types {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #666;
}

.event-tabs {
    max-width: 1100px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #ddd;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px 10px;
}

.tab-btn:hover {
    color: #b8860b;
}

.tab-btn.active {
    color: #b8860b;
    border-bottom: 2px solid #b8860b;
}

.tab-content {
    position: relative;
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tab-flex {
    display: flex;
    gap: 40px;
    align-items: center;
}

.tab-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tab-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.tab-info {
    flex: 1;
}

.tab-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.tab-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.event-features {
    margin-bottom: 25px;
}

.event-features li {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.event-features li i {
    color: #b8860b;
    margin-right: 10px;
}

.capacity-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.capacity-info span {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
}

.capacity-info span i {
    margin-right: 8px;
    color: #b8860b;
}

.event-cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #b8860b;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.event-cta-btn:hover {
    background-color: #9e7209;
}

/* Venues Showcase */
.venues-showcase {
    padding: 80px 0;
    background-color: #fff;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.venue-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.venue-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.venue-card:hover .venue-image img {
    transform: scale(1.05);
}

.venue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.venue-card:hover .venue-overlay {
    opacity: 1;
}

.view-venue-btn {
    padding: 10px 20px;
    background-color: #b8860b;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.view-venue-btn:hover {
    background-color: #9e7209;
}

.venue-info {
    padding: 20px;
}

.venue-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.venue-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.venue-details {
    display: flex;
    justify-content: space-between;
}

.venue-details span {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #777;
    display: flex;
    align-items: center;
}

.venue-details span i {
    color: #b8860b;
    margin-right: 5px;
}

.venues-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.view-all-venues, .request-tour-btn {
    padding: 12px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.view-all-venues {
    background-color: transparent;
    color: #b8860b;
    border: 1px solid #b8860b;
}

.view-all-venues:hover {
    background-color: #f9f5e9;
}

.request-tour-btn {
    background-color: #b8860b;
    color: white;
}

.request-tour-btn:hover {
    background-color: #9e7209;
}

/* Event Packages */
.event-packages {
    padding: 80px 0;
    background-color: #f9f9f9;
}
  /* Update slider styles to work without buttons */
  .packages-slider, .testimonials-slider {
      display: flex;
      gap: 30px;
      overflow-x: auto;
      padding: 20px 10px;
      margin: 0 -10px;
      scrollbar-width: thin;
      scrollbar-color: #b8860b #f0f0f0;
  }

  /* Style scrollbars for browsers that support it */
  .packages-slider::-webkit-scrollbar, .testimonials-slider::-webkit-scrollbar {
      height: 8px;
  }

  .packages-slider::-webkit-scrollbar-track, .testimonials-slider::-webkit-scrollbar-track {
      background: #f0f0f0;
      border-radius: 4px;
  }

  .packages-slider::-webkit-scrollbar-thumb, .testimonials-slider::-webkit-scrollbar-thumb {
      background-color: #b8860b;
      border-radius: 4px;
  }

  .package-card {
      flex: 0 0 300px;
      background-color: white;
      border-radius: 8px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      position: relative;
      transition: transform 0.3s ease;
  }

  .package-card:hover {
      transform: translateY(-5px);
  }

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #b8860b;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 20px;
}

.package-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.package-price {
    margin-bottom: 20px;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #b8860b;
}

.unit {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #777;
}

.package-features {
    margin-bottom: 25px;
}

.package-features li {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.package-features li i {
    color: #b8860b;
    margin-right: 10px;
    margin-top: 4px;
}

.package-cta {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
    background-color: #b8860b;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.package-cta:hover {
    background-color: #9e7209;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #ddd;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: #b8860b;
    color: white;
    border-color: #b8860b;
}

.packages-note {
    text-align: center;
    margin-top: 30px;
}

.packages-note p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #777;
    font-style: italic;
}

/* Planning Process */
.planning-process {
    padding: 80px 0;
    background-color: #fff;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.process-step {
    flex: 0 0 calc(33.333% - 30px);
    min-width: 250px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background-color: #b8860b;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: #f9f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 32px;
    color: #b8860b;
}

.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.process-step p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Event Inquiry Form */
.event-inquiry {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.inquiry-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.inquiry-content {
    flex: 1;
    min-width: 300px;
    padding: 50px;
    background-color: #b8860b;
    color: white;
}

.inquiry-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 20px;
}

.inquiry-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-info {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    margin-bottom: 5px;
    opacity: 0.8;
}

.contact-item a, .contact-item address {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: white;
    text-decoration: none;
    font-style: normal;
}

.inquiry-form {
    flex: 1;
    min-width: 300px;
    padding: 50px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 0px;
}

.form-row .form-group {
    margin-bottom: 0;
}

label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s ease;
    margin-bottom: 20px;
}


input::placeholder, textarea::placeholder {
    color: #888;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 40px;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
    margin-bottom: 0;
}

.form-checkbox label {
    font-size: 13px;
    margin-bottom: 0;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #b8860b;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #9e7209;
}

/* Testimonials */
.event-testimonials {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 10px;
    margin: 0 -10px;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(50% - 30px);
    min-width: 300px;
    display: flex;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.testimonial-image {
    flex: 0 0 40%;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    padding: 30px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #f0e6cc;
    font-size: 24px;
}

.testimonial-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #888;
    margin-bottom: 0;
    font-style: normal;
}

/* FAQ Section */
.event-faq {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.faq-toggle {
    color: #b8860b;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 300px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.faq-cta {
    text-align: center;
}

.faq-cta p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.contact-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #b8860b;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #9e7209;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .tab-flex {
        flex-direction: column;
    }
    
    .tab-image, .tab-info {
        width: 100%;
    }
    
    .process-step {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 400px;
    }
    
    .banner-content h1 {
        font-size: 36px;
    }
    
    .intro-stats {
        gap: 20px;
    }
    
    .stat-item {
        min-width: 140px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .venues-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .inquiry-content, .inquiry-form {
        padding: 30px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .testimonial-card {
        flex: 0 0 calc(100% - 30px);
        flex-direction: column;
    }
    
    .testimonial-image {
        flex: 0 0 200px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        height: 300px;
    }
    
    .banner-content h1 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    .intro-content h2, .section-header h2 {
        font-size: 28px;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }
    
    .venues-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .view-all-venues, .request-tour-btn {
        width: 100%;
        text-align: center;
    }
}
