/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  /* Replace video with background image */
  .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/Wedding\ 13.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
  }
  
  .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 15px;
  }
  
  .hero-content p {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  
  @media (max-width: 768px) {
    .hero-section {
      height: 60vh;
    }
  
    .hero-content h1 {
      font-size: 2.5rem;
    }
  }
  
  
  /* Overview Section */
  .overview-section {
    padding: 60px 20px;
    background-color: #f9f1f5;
    text-align: center;
  }
  
  .overview-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .overview-divider {
    width: 100px;
    height: 2px;
    background: var(--accent-color);
    margin: 20px auto;
    border-radius: 2px;
  }
  
  .overview-container p[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .overview-container p[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Event Spaces Section */
  .event-spaces-section {
    padding: 60px 20px;
  }
  
  .table-container {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
  }
  
  .wedding-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Lora', serif;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .wedding-table th, .wedding-table td {
    padding: 15px;
    border: 1px solid #f0e4ea;
    text-align: center;
  }
  
  .wedding-table th {
    background: var(--primary-color);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
  }
  
  .wedding-table tr {
    transition: background 0.3s;
  }
  
  .wedding-table tr:hover {
    background: #f9f1f5;
  }
  
  .wedding-table .details-btn {
    padding: 8px 16px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: transform 0.2s;
  }
  
  .wedding-table .details-btn:hover {
    transform: scale(1.05);
  }
  
  @media (max-width: 768px) {
    .wedding-table {
      font-size: 0.9rem;
    }
  }
  
  /* Wedding Journey Section */
  .journey-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
  }
  
  .timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
  }
  
  .timeline-item {
    padding: 20px;
    background: #fff;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
  }
  
  .timeline-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  .timeline-item h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  .timeline-item p {
    font-family: 'Lora', serif;
  }
  
  @media (max-width: 768px) {
    .timeline-item {
      margin: 10px 0;
    }
  }
  
  /* Catering and Packages Section */
  .packages-section {
    padding: 60px 20px;
    text-align: center;
  }
  
  .packages-container {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .package-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s;
  }
  
  .package-card:hover {
    transform: translateY(-10px);
  }
  
  .package-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  .package-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .package-card p {
    font-family: 'Lora', serif;
    margin-bottom: 20px;
  }
  
  .package-card .details-toggle {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.3s;
  }
  
  .package-card .details-toggle:hover {
    background: var(--accent-color);
  }
  
  .package-details {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background: #f9f1f5;
    border-radius: 6px;
    font-family: 'Lora', serif;
  }
  
  .package-details.active {
    display: block;
    animation: slideDown 0.3s ease;
  }
  
  @media (max-width: 768px) {
    .packages-container {
      grid-template-columns: 1fr;
    }
  }
  
  /* Testimonials Section */
  .testimonials-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
  }
  
  .testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  
  .testimonial-card {
    display: none;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .testimonial-card.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  
  .testimonial-card p {
    font-family: 'Lora', serif;
    font-style: italic;
    margin-bottom: 15px;
  }
  
  .testimonial-card h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
  }
  
  .carousel-controls {
    margin-top: 20px;
  }
  
  .carousel-prev, .carousel-next {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 10px;
    transition: background 0.3s;
  }
  
  .carousel-prev:hover, .carousel-next:hover {
    background: var(--accent-color);
  }
  
  /* Modal */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .modal.active {
    display: flex;
  }
  
  .modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: fadeIn 0.5s ease;
  }
  
  .modal-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  
  .modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
  }
  
  @keyframes slideDown {
    from { height: 0; opacity: 0; }
    to { height: auto; opacity: 1; }
  }
  
  /* CTA Section */
  .cta-section {
    padding: 40px 20px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
  }
  
  .cta-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cta-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .cta-container p {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .cta-container .btn-primary {
    padding: 12px 30px;
    font-size: 1.1rem;
    margin: 10px;
    transition: transform 0.3s;
  }
  
  .cta-container .btn-primary:hover {
    transform: scale(1.1);
  } 
  
  .cta-section a {
    color: white;
      text-decoration: none;
  }

  /* Gallery Section */
.gallery-section {
    padding: 60px 20px;
    background-color: #f9f1f5;
    text-align: center;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s, transform 0.2s;
}

.gallery-zoom:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    max-width: 80%;
    max-height: 80%;
    position: relative;
}

.gallery-modal-content img {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 8px;
}

.gallery-modal-caption {
    font-family: 'Lora', serif;
    margin-top: 10px;
    color: #333;
}

.gallery-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
}

/* Wedding Info Flex Section */
.wedding-info-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
  }
  
  .info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
  }
  
  .packages-wrapper,
  .journey-wrapper {
    flex: 1;
    min-width: 320px;
    max-width: 580px;
  }
  
  /* Section Styling */
  .packages-section,
  .journey-section {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }
  
  .packages-section .section-label,
  .journey-section .section-label {
    text-align: left;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  /* Cards & Steps */
  .packages-container,
  .journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .package-card,
  .journey-step {
    background-color: #fefefe;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  }
  
  .package-card:hover,
  .journey-step:hover {
    transform: translateY(-5px);
  }
  
  .package-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 15px;
  }
  
  .step-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
  }
  
  /* Responsive Layout */
  @media (max-width: 1024px) {
    .info-container {
      flex-direction: column;
      gap: 60px;
    }
  }
  