*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* prevent horizontal scrolling */
  width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
}
a {
  text-decoration: none;
}






/* Navbar */
nav.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  position: absolute;       
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  background: rgba(0,0,0,0.2); 
  z-index: 1000;
}

nav.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

nav.navbar ul {
  list-style: none;
  display: flex;
  gap: 2em;
  margin: 0;
  padding: 0;
}

nav.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav.navbar ul li a:hover {
  color: #a1725c; /* warm orange accent */
}



/* Hamburger Button */
.navbar .hamburger {
  display: none; /* hidden by default on desktop */
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.navbar .hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}

/* Responsive Menu */
@media (max-width: 768px) {
  nav.navbar ul {
    position: absolute;
    top: 70px; /* below navbar */
    left: 50%;
    transform: translateX(-50%); /* center horizontally */
    width: 90%;
    background: rgba(255, 255, 255, 0.1); /* semi-transparent */
    backdrop-filter: blur(10px); /* frosted glass */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2); /* subtle border */
    border-radius: 12px;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
    padding: 1.5em 0;
    display: none; /* hidden by default */
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 999; /* on top of everything */
  }

  nav.navbar ul.active {
    display: flex;
  }

  nav.navbar ul li a {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
  }

  nav.navbar ul li a:hover {
    color: #ffd700; /* gold accent on hover */
  }

  /* Hamburger */
  .navbar .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }

  .navbar .hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
}













/* Base Hero styling */
header {background-color: #f8f8f8;}

.hero { 
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 60px;
  height: 45vh;
  background-image: url('../imgs/Hero.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay-left {
  background: rgba(0,0,0,0.25);
  padding: 2em 3em;
  color: white;
  border-radius: 10px;
  max-width: 450px;
  backdrop-filter: blur(2px);
  margin-top: 50px;
}

/* Subtitle (Welcome to) */
.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d8c3a5;
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* Heading */
.overlay-left h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  line-height: 1.2;
  color: #fff;
}

/* Description */
.hero-description {
  font-size: 1.2rem;
  color: #f0e5d8;
  font-weight: 400;
  margin-top: 0.2rem;
}

/* Apply animations with delays */
.animate-subtitle {
  animation: fadeSlideDown 0.8s ease forwards;
}

.animate-heading {
  animation: fadeSlideUp 1s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.animate-desc {
  animation: fadeSlideUp 1s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    justify-content: center;
    padding: 0 20px;
  }
  .overlay-left {
    max-width: 90%;
    padding: 1.5em 2em;
  }
  .overlay-left h2 {
    font-size: 2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
}

/* Animation keyframes */
@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}













/* Photo Gallery Section */
.gallery-section {
  padding: 4em 2em;
  background-color: #f8f6f2;
  text-align: center;
}

.gallery-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

/* Grid Styling */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 items per row */
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Hover Effect */
.gallery-item img:hover {
  transform: scale(1.05);
}

/* Responsive Styling */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 items per row */
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr; /* 1 item per row */
  }
}











/* FAQ Section */
.faq-section {
  display: flex;
  width: 100%;
  min-height: 400px;
  padding: 4em 2em;
  background-color: #f8f6f2;
}

.faq-left, .faq-right {
  width: 50%;
  padding: 2em;
}

/* Left Column */
.faq-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.faq-item {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.faq-item h3 {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Right Column */
.faq-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-right img {
  width: 90%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .faq-section {
    flex-direction: column;
  }
  .faq-left, .faq-right {
    width: 100%;
    text-align: center;
    padding: 1em;
  }
}










/* Footer Styles */
.site-footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 40px 20px 0;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
  justify-content: space-between;
  flex-direction: row;
}

.footer-col {
  max-width: 300px;
}

.footer-col h3.footer-logo {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-col p,
.footer-col ul {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #d8c3a5; 
}

/* Social icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin: 0 8px 0 0;
  font-size: 1.3rem;
  color: #ccc;
  transition: color 0.3s ease;
}

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



/* Footer Bottom */
.footer-bottom {
  padding: 15px 20px;
  background-color: #1a1a1a; 
  color: #ccc;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom .copyright {
  text-align: center;
  flex: 1;
}

.footer-bottom .powered-by {
  text-align: center;
  flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-col.col-1 {
    text-align: center;
    margin: 0 auto;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom .copyright,
  .footer-bottom .powered-by {
    flex: unset;
    margin: 5px 0;
  }
}










.footer-credit {
  background-color: #111; /* darker than main footer for contrast */
  color: #ccc;
  text-align: center;
  font-size: 0.85rem;
  padding: 10px 0;
}

.footer-credit a {
  color: #d8c3a5; /* match your beige/gold theme */
  text-decoration: none;
  font-weight: 600;
}

.footer-credit a:hover {
  color: gold;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center; /* <-- center all columns horizontally */
  }

  .footer-col {
    max-width: 300px; /* optional, keeps them from getting too wide */
    width: 90%;        /* makes them shrink a little on mobile */
    margin: 10px auto; /* centers the columns */
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom .copyright,
  .footer-bottom .powered-by {
    flex: unset;
    margin: 5px 0;
  }
}
