* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: white;
  background-color: #111;
}

/* Header */
header {
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
}

.header-left,
.header-center,
.header-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-left {
  justify-content: flex-start;
}

.header-right {
  justify-content: flex-end;
}

.logo a {
  font-weight: 700;
  font-size: 24px;
  text-decoration: none;
  color: white;
}

/* Center Logo */
.centered-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  padding: 10px;
  border-radius: 8px;
  height: 90px;
  width: 90px;
}

.center-logo {
  height: 80px;
  object-fit: contain;
  filter: brightness(1.2);
}

/* Navigation */
.nav-right {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-right li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

/* Hero Section */
.hero {
  background-image: url('Images/NEW-BACKGROUNDImage.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-text {
  padding: 20px;
  animation: fadeIn 2s ease-in-out;
}

.address {
  font-size: 18px;
  margin-bottom: 20px;
  margin-top: -60px;
}

h1 {
  font-size: 56px;
  margin-bottom: 15px;
}

.tagline {
  font-size: 20px;
  margin-top: 30px;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-icons img {
  width: 32px;
  height: 32px;
}

/* Gallery Section */
.gallery {
  padding: 60px 40px;
  background-color: #111;
  text-align: center;
}

.gallery h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: white;
}

.gallery-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.gallery-images-wrapper {
  overflow: hidden;
  width: 1080px;
  max-width: 100%;
  position: relative;
}

.gallery-images {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.gallery-images img {
  width: 340px;
  height: auto;
  border: 2px solid #444;
  border-radius: 10px;
  transition: transform 0.3s ease;
  margin: 0 10px;
  flex-shrink: 0;
}

.gallery-images img:hover {
  transform: scale(1.05);
}

/* Dots */
.dot-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.dot:hover,
.dot.active {
  opacity: 1;
}

/* Welcome Section */
.gallery-welcome {
  background-color: #111;
  color: #ddd;
  padding: 60px 20px;
}

.welcome-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.welcome-text {
  flex: 1;
  min-width: 300px;
}

.welcome-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
}

.welcome-text p {
  line-height: 1.6;
}

.welcome-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.welcome-image img {
  max-width: 300px;
  border-radius: 10px;
}

/* Footer */
.site-footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-top: 1px solid #333;
}

/* Section Separator */
.section-separator {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 40px auto;
  width: 90%;
  max-width: 1200px;
}

/* Animation */
.fade-in {
  animation: fadeIn 1.5s ease-in-out both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
  .gallery-images img {
    width: 90%;
  }
  .welcome-content {
    flex-direction: column;
    text-align: center;
  }

  .centered-logo-container {
    height: 70px;
    width: 70px;
  }

  .center-logo {
    height: 65px;
  }
}

.about-section {
  background-color: #111;
  color: #ddd;
  padding: 60px 20px;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.about-image img {
  max-width: 300px;
  border-radius: 10px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 36px; /* Match Welcome section */
  margin-bottom: 20px;
  color: white;
}

.about-text p {
  line-height: 1.6;
}

.visit-section {
  background-color: #111;
  color: #ddd;
  padding: 60px 20px;
}

.visit-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.visit-map {
  flex: 1 1 500px;
}

.visit-info {
  flex: 1 1 400px;
}

.visit-info h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
}

.visit-info p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.visit-info .social-icons {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.visit-info .social-icons img {
  width: 32px;
  height: 32px;
}
