:root {
  --primary: #D4A017;
  --accent-red: #9B1D64;
  --accent-orange: #F28C38;
  --accent-green: #2E8B57;
  --dark: #1A1A1A;
  --light: #FFF8F0;
}
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 900; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

/* Navigation */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.nav-logo span {
  color: var(--primary);
}
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  text-decoration: none;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--primary);
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.55)),
              url('https://images.pexels.com/photos/30050960/pexels-photo-30050960/free-photo-of-vibrant-traditional-african-drum-performance-outdoors.jpeg') center/cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  margin-top: 70px;
}
.hero-content {
  animation: fadeInUp 1.2s ease-out;
}
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(40px); }
  to { opacity:1; transform:translateY(0); }
}
.hero h1 {
  font-size: clamp(3.5rem, 8vw, 9rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}
.hero p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.btn {
  display: inline-block;
  background: var(--accent-orange);
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(242,140,56,0.4);
  border: none;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-6px) scale(1.05);
  background: var(--primary);
  box-shadow: 0 12px 30px rgba(212,160,23,0.5);
}

/* Sections */
section { padding: 8rem 0; }
h2 {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--accent-red);
}

.about { background: white; }
.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}
.about-text {
  max-width: 900px;
  margin: 0 auto;
}

.about-text p { 
  font-size: 1.25rem; 
  margin-bottom: 1.5rem; 
  text-align: center;
}
.flags-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.05), rgba(155, 29, 100, 0.05));
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.flag-item {
  text-align: center;
}
.flag-item img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.flag-item img:hover {
  transform: scale(1.1);
}
.flag-item p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Tablet styles (768px and below) */
@media (max-width: 768px) {
  section { padding: 5rem 0; }
  
  h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .about-content {
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .about-text {
    padding: 0 1.5rem;
  }
  
  .about-text p {
    font-size: 1.1rem;
  }
  
  .flags-container {
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .flag-item img {
    width: 100px;
    height: 67px;
  }
}

/* Mobile styles (480px and below) */
@media (max-width: 480px) {
  section { padding: 3rem 0; }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .about-content {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .about-text {
    padding: 0 1rem;
  }
  
  .about-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .flags-container {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 15px;
  }
  
  .flag-item img {
    width: 80px;
    height: 53px;
  }
  
  .flag-item p {
    font-size: 0.8rem;
  }
}

.save-the-date img {
  display: block;
  margin: 3rem auto 0 auto; 
  width: 80%;
  height: auto;
}
.vendors {
  background: linear-gradient(135deg, #2E8B57 0%, #1A3C34 100%);
  color: white;
}
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
.vendor-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 1.8rem;
  text-align: center;
  transition: transform 0.4s ease;
}
.vendor-card:hover { transform: translateY(-12px); }
.vendor-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.2rem;
}

.details {
  background: var(--dark);
  color: white;
  text-align: center;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}
.detail-item h3 { color: var(--primary); font-size: 2.2rem; }

.gallery {
  background: white;
}
.gallery-container {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}
.gallery-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
  padding: 1rem 0;
}
.gallery-track img {
  min-width: 350px;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.gallery-track img:hover { transform: scale(1.05); }
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}
.gallery-btn:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.1);
}
.gallery-btn.prev { left: 1rem; }
.gallery-btn.next { right: 1rem; }

/* Contact Form */
.contact {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  color: white;
}
.contact h2 { color: white; }
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  background: rgba(255,255,255,0.9);
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: 3px solid var(--primary);
}

.cta {
  background: var(--accent-red);
  color: white;
  text-align: center;
}
.cta-buttons { margin-top: 3rem; }
.cta .btn { margin: 1rem; background: white; color: var(--accent-red); }
.cta .btn:hover { background: var(--primary); color: white; }

footer {
  background: var(--dark);
  color: #ccc;
  padding: 4rem 0 2rem;
  text-align: center;
}
.social a { 
  color: white; 
  font-size: 2rem; 
  margin: 0 1rem; 
  text-decoration: none;
  transition: color 0.3s;
}
.social a:hover { color: var(--primary); }

@media (max-width: 768px) {
  .hero h1 { font-size: 4.5rem; }
  section { padding: 5rem 0; }
  h2 { font-size: 2.8rem; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    display: none;
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .about-content {
    grid-template-columns: 1fr;
  }
  .about-text p {
    text-align: center;
  }
  .gallery-track img {
    min-width: 280px;
  }
}