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

body {
  font-family: "Proxima Nova", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 50%, #ffe5e5 100%);
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(220, 38, 38, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-subtext {
  font-size: 12px;
  color: #666;
}

.partnership-btn {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.partnership-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
}

/* Hero Section */
.hero-section {
  padding: 80px 20px;
}

.hero-icon {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  color: white;
  animation: bounce 2s infinite;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-title {
  font-size: 72px;
  font-weight: bold;
  background: linear-gradient(135deg, #ff0000 0%, #ff0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.hero-subtitle {
  font-size: 24px;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto 60px;
}

/* Countdown Timer */
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.countdown-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(220, 38, 38, 0.1);
  padding: 20px;
  min-width: 100px;
}

.countdown-value {
  font-size: 36px;
  font-weight: bold;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-label {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  margin-top: 5px;
}

/* Location Badge */
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fee2e2;
  padding: 12px 24px;
  border-radius: 25px;
  border: 2px solid #fecaca;
  color: #991b1b;
  font-weight: 600;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  padding: 80px 20px;
}

.section-title {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text {
  font-size: 18px;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 20px;
}

.gallery-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-slider {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.2);
}

.gallery-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-slide.active {
  opacity: 1;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.placeholder-1 {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}
.placeholder-2 {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}
.placeholder-3 {
  background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
}
.placeholder-4 {
  background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
}

.placeholder-image h4 {
  font-size: 32px;
  margin-bottom: 10px;
}

.placeholder-image p {
  font-size: 14px;
  opacity: 0.9;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-btn:hover {
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: #dc2626;
  width: 32px;
  border-radius: 6px;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: white;
  padding: 80px 20px;
}

.white-text {
  color: white;
  -webkit-text-fill-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact-card svg {
  margin-bottom: 20px;
}

.contact-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-card a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 30px 20px;
}

.footer p {
  color: #999;
  margin: 5px 0;
}

.footer-subtext {
  font-size: 14px;
  color: #666;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 100%;
  padding: 40px;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 36px;
  color: #666;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #dc2626;
}

.modal-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-text {
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}

.contact-info-box {
  background: #fee2e2;
  border-left: 4px solid #dc2626;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.contact-info-title {
  font-weight: 600;
  color: #991b1b;
  margin-bottom: 12px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  color: #7f1d1d;
}

.contact-info-item svg {
  flex-shrink: 0;
  stroke: #dc2626;
}

.contact-info-item a {
  color: #7f1d1d;
  text-decoration: none;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.modal-close-btn {
  width: 100%;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
  }

  .countdown {
    gap: 10px;
  }

  .countdown-item {
    min-width: 80px;
    padding: 15px;
  }

  .countdown-value {
    font-size: 28px;
  }

  .gallery-slider {
    height: 350px;
  }

  .gallery-btn {
    width: 40px;
    height: 40px;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }
}
.imgs {
  height: 357px;
  width: 682px;
  border-radius: 8px;
}

.section-img {
  background-image: url("imgs/food-2528396.jpg");
  background-size: cover; /* Optional: Adjusts image to cover the entire element */
  background-repeat: no-repeat; /* Optional: Prevents image from repeating */
  background-position: center center; /* Optional: Centers the image */
}
