/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Great Vibes', cursive; /* Body Text Font */
  line-height: 1.6;
  background-color: #121212; /* Dark background */
  color: #ffffff; /* Light text */
}

/* Header Section */
h1, h2, h3 {
  font-family: 'Great Vibes', cursive;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 2px;
  color: #e3c07d; /* Gold color */
}

h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

h3 {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/* Highlighted Cursive Text */
.cursive {
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  color: #e3c07d; /* Gold cursive text */
  text-align: center;
  margin: 20px 0;
}

.hero-slider .slide {
  height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-slider .overlay {
  background: linear-gradient(45deg, #5e481773, #7e6d4560); /* Gold gradient overlay */
  padding: 20px;
  border-radius: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-slider h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-slider p {
  font-size: 1.3rem;
  color: #fff7d6; /* Light gold text */
}

.hero-slider .logo {
  width: 80px;
  margin-bottom: 20px;
}

/* Hero Section */


.hero-slider {
  position: relative;
  width: 100%;
  height: 70vh;
}

.slide {
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 8px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}


.logo {
  width: 100px;
  margin-bottom: 15px;
}

.slide h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.slide p {
  font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-slider {
    height: 50vh;
  }
  
  .slide {
    height: 50vh;
  }

  .slide h1 {
    font-size: 2rem;
  }

  .slide p {
    font-size: 1rem;
  }
}

/* Slick Slider Custom Controls */
.slick-dots {
  display: none; /* Remove numbering dots */
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 1.5rem;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.slick-prev:hover,
.slick-next:hover {
  background: rgba(255, 255, 255, 0.8);
  color: black;
}

.slick-prev {
  left: 10px;
}

.slick-next {
  right: 10px;
}

/* Footer Section */
footer {
  background-color: #1a1a1a;
  padding: 20px;
  text-align: center;
  color: #e3c07d;
  font-family: 'Playfair Display', serif;
}

footer .social-icons {
  margin: 10px 0;
}

footer .social-icons a {
  color: #e3c07d;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

footer .social-icons a:hover {
  color: #f7d57d;
}

footer p {
  font-size: 1rem;
}

/* Parallax Background */
.parallax {
  background-attachment: fixed; /* Enables parallax effect */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
}

.parallax .overlay {
  background: rgba(94, 72, 23, 0.6); /* Dark overlay */
  padding: 50px 20px;
  text-align: center;
  color: white;
}

/* Programme Timeline Section */
.programme .overlay {
  background: rgba(0, 0, 0, 0.8);
  padding: 30px;
  border-radius: 8px;
}

/* Header Titles */
.header-title {
  font-family: 'Playfair', serif;
  font-size: 2.5rem;
  color: #e3c07d;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sub-header {
  font-family: 'Great Vibes', cursive;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #dcdcdc;
  text-transform: capitalize;
}

.mc-intro {
  font-size: 1rem;
  font-family: 'Playfair', serif;
  margin-bottom: 30px;
  color: #e3c07d;
}

/* Programme Timeline */
.programme-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-card {
  background: #1e1e1e;
  border: 1px solid #444;
  border-radius: 8px;
  width: 100%;
  max-width: 600px;
  margin: 10px 0;
  padding: 15px;
  color: #dcdcdc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.7);
}

.timeline-card h4 {
  font-family: 'Great Vibes', cursive;
  color: #e3c07d;
  font-size: 1.3rem;
}

.timeline-card p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: #e0e0e0;
}

/* Highlighted Sections */
.highlighted-section {
  font-family: 'Great Vibes', cursive;
  font-size: 2.5rem;
  color: #e3c07d;
  margin: 20px 0;
  text-align: center;
}

/* Awards List */
.awards-list {
  font-family: 'Lora', serif;
  color: #dcdcdc;
  text-align: left;
  margin: 20px auto;
  max-width: 600px;
  list-style: none;
}

.awards-list li {
  font-size: 1.1rem;
  margin: 5px 0;
  position: relative;
}

.awards-list li::before {
  content: '•';
  color: #e3c07d;
  margin-right: 10px;
  font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-title {
    font-size: 2rem;
  }

  .sub-header {
    font-size: 1.2rem;
  }

  .timeline-card {
    width: 100%;
    margin: 10px 0;
  }

  .highlighted-section {
    font-size: 2rem;
  }

  .awards-list li {
    font-size: 1rem;
  }
}

/* Dinner Highlight */
.dinnerHighlight {
  font-family: 'Great Vibes', cursive;
  font-size: 2.5rem;
  color: #e3c07d;
  margin: 30px 0;
  text-align: center;
  text-transform: capitalize;
}

/* Awards Section */
.awards {
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin: 40px 0;
  color: #e3c07d;
}

.awards li {
  list-style: none;
  font-size: 1.2rem;
  margin: 5px 0;
  color: #e0e0e0;
}


/* Responsive Hero Section */
@media (max-width: 768px) {
  .hero-slider h1 {
    font-size: 2rem;
  }

  .hero-slider p {
    font-size: 1rem;
  }

  .hero-slider .slide {
    height: 50vh;
  }

  .slick-prev,
  .slick-next {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}

/* Slider Styling */
.slider-video,
.slider-image {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}



.overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 1.2rem;
}


/* Location Section */
.location {
  position: relative;
  padding: 50px 20px;
}

.location .overlay {
  background: linear-gradient(135deg, #5e4817, #7e6d45); /* Gold tones */
  padding: 50px 20px;
  color: white;
  text-align: center;
}

.location h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #fcfcfc;
}

/* Location Content Layout */
.location-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.location-details {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #333;
}

.location-details p {
  font-size: 1rem;
  margin: 10px 0;
  line-height: 1.6;
}

.location-details strong {
  color: #7e6d45;
}

/* Map Container */
.map-container {
  flex: 2;
  min-width: 300px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  border: none;
  border-radius: 8px;
  width: 100%;
  height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .location-content {
    flex-direction: column;
    align-items: center;
  }

  .location-details,
  .map-container {
    width: 100%;
    max-width: 600px;
  }
}

/* Gallery Section */
.gallery {
  position: relative;
  padding: 50px 20px;
  color: white;
}

.gallery .overlay {
  background: rgba(94, 72, 23, 0.6);
  padding: 30px;
  text-align: center;
}

.gallery h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.gallery p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-content: center;
}

.gallery-grid a {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid a img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.gallery-grid a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.gallery-grid a:hover img {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery h2 {
    font-size: 2rem;
  }

  .gallery p {
    font-size: 1rem;
  }

  .gallery-grid {
    gap: 15px;
  }
}


/* Comments Section */
.comments {
  position: relative;
  padding: 50px 20px;
  color: white;
}

.comments .overlay {
  background: linear-gradient(135deg, #7e6d45, #5e4817);
  padding: 30px;
  text-align: center;
  border-radius: 8px;
}

.comments h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.comments form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto 30px;
}

.comments input,
.comments textarea {
  padding: 10px;
  margin: 10px 0;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  outline: none;
  color: #333;
}

.comments input:focus,
.comments textarea:focus {
  border: 2px solid #5e4817;
}

.comments button {
  background-color: #080600;
  color: white;
  border: none;
  padding: 10px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.comments button:hover {
  background-color: #5e4817;
}

/* Comment List Styling */
#commentList {
  max-width: 600px;
  margin: 20px auto;
}

.comment-card {
  background: #ffffff;
  color: #333;
  margin: 15px 0;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.comment-card strong {
  color: #7e6d45;
  display: block;
  margin-bottom: 5px;
}

.comment-card p {
  margin: 0;
  font-size: 0.9rem;
}


/* Responsive Design */
@media (max-width: 768px) {
  .comments h2 {
    font-size: 2rem;
  }

  .comments form {
    width: 100%;
  }
}
