/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  
}
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fffaf0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.logo {
  height: 60px;
  border-radius: 10px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
}
.nav-links a:hover,
.nav-links .active {
  color: #f39c12;
}

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

  .navbar-logo {
    margin-bottom: 0.5rem;
  }

  .navbar-links {
    flex-direction: row; /* horizontal, not stacked! */
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .navbar-links a {
    font-size: 1rem;
  }
}


/* Hero */
.hero-section {
  background-image: url('https://cdn.glitch.global/ca48bb5f-f5ab-47e7-ab23-52b2f2310f45/IMG_0406.jpeg?v=1744125393950');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  font-size: 3rem;
}
.hero-buttons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* About Section */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Main Title for About */
.about-container h1 {
  text-align: center;
  font-size: 3rem; /* Larger size for the main title */
  margin-bottom: 2rem;
  font-weight: bold;
  color: #2c3e50;
}

/* Subheading Styles */
.about-container h2 {
  text-align: center;
  font-size: 2rem;
  margin-top: 2rem;
  font-weight: 600;
  color: #f39c12;
}

/* Paragraph Text */
.about-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Section Background Variations */
.section-light {
  background-color: #f9f9f9;
  padding: 3rem 1rem;
}

.section-dark {
  background-color:#2c3e50;
  color: white;
  padding: 3rem 1rem;
}





/* CTA Section */
.cta {
  background-color: #fffaf0;
  text-align: center;
  padding: 3rem 1rem 4rem; /* Added extra bottom padding */
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta .btn {
  margin-top: 1.5rem;
}

.cta p {
  margin-bottom: 1rem; /* Adds space between the paragraph and button */
}

/* Homepage Preview */
.tour-preview {
  background-color: #fff6e9;
  padding: 3rem 1.5rem;
  text-align: center;
}

.tour-preview h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.tour-preview p {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 1rem;
}

.tour-btn {
  background-color: #f5a623;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.tour-btn:hover {
  background-color: #d88c10;
}

/* About Page Tour Section */
.tour-section {
  padding: 4rem 1rem;
  background-color: #fdf7f0;
  text-align: center;
}

.tour-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.tour-section p {
  font-size: 1rem;
  margin-bottom: 2rem;
}



/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .about-preview {
    flex-direction: column;
  }
}

hr {
  border: none;
  height: 5px; /* This controls thickness */
  background-color: lightgrey; /* Light gray, or any color you want */
}

.map-container {
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 400px; /* adjust height as desired */
  border: 0;
}



/* Footer */
footer {
 background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  
}
footer a {
  color: #f9d342;
  text-decoration: none;
  
}
footer a:hover {
  text-decoration: underline;
}
footer p {
  margin-top: 0.2rem;
  
}
