/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

body {
  margin: 0;
  font-family: 'Roboto', serif;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2000;
  background: transparent ;
  box-sizing: border-box;
  transition: background 0.5s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 5400px;
  margin: 0 auto;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85); /* fade to black */
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  color: #ad6d4a;
  font-size: 1.4rem;
  font-weight: 700;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #fff; /* visible on hero background */
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #c8ad6a;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2100;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #000; /* Black bars */
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0; right: -100%;
  width: 250px;
  height: 100%;
  background: #c8ad6a;
  color: #fff;
  padding: 2rem;
  transition: right 0.4s ease;
  z-index: 2050;
}

.sidebar.active {
  right: 0;
}

.sidebar .close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

.sidebar ul {
  list-style: none;
  margin-top: 3rem;
  padding: 0;
}

.sidebar ul li {
  margin: 1.5rem 0;
}

.sidebar ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.sidebar ul li a:hover {
  color: #663433;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* hide desktop links */
  }
  .hamburger {
    display: flex; /* show hamburger */
  }
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* ✅ Desktop background images (landscape) */
.slide:nth-child(1) {
  background-image: url("./coffecup\ desktop.jpg");
}
.slide:nth-child(2) {
  background-image: url("./pooly\ desktop.jpg");
}
.slide:nth-child(3) {
  background-image: url("./desktop\ green.jpg");
}

/* ✅ Mobile background images (portrait) */
@media (max-width: 768px) {
  .slide:nth-child(1) {
    background-image: url("./side\ mobile.jpg");
  }
  .slide:nth-child(2) {
    background-image: url("./building.jpg");
  }
  .slide:nth-child(3) {
    background-image: url("./bar\ 1.jpg");
  }
}

.hero-overlay {
  position: relative;
  text-align: center;
  color: white;
  background: rgba(0,0,0,0.3);
  padding: 2rem;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Fade Animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}




/* Gallery grid*/


/* ==========================
   Gallery Section
========================== */
.gallery-section {
  padding: 80px 5%;
  background: #fff;
  text-align: center;
}

.gallery-header h2 {
  font-size: 2rem;
  font-family: 'Roboto', serif;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Masonry-like grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  grid-gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery-grid img.show {
  opacity: 1;
  transform: translateY(0);
}

.hidden-img {
  display: none; /* keep hidden until loaded */
}

/* Load more button */
.gallery-loadmore {
  margin-top: 40px;
}

.btn-explore {
  background: transparent;
  border: 2px solid #c8ad6a;
  color: #c8ad6a;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-explore:hover {
  background: #c8ad6a;
  color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }
}






/* footer with quick links*/
/* Footer Section */
/* Footer Section */
.footer {
  background: #191818;
  color: #fff;
  padding: 4rem 2rem;
  font-family: 'Roboto', serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo-img {
  width: 150px;
  margin-bottom: 1rem;
}

.footer-logo p {
  font-size: 1rem;
  line-height: 1.6;
  color: #f1f1f1;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #c8ad6a;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #c8ad6a;
}

.footer-contact p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
}

/* Fade-up */
.footer.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.footer.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ✅ Responsive Fix */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links, 
  .footer-contact {
    width: 100%;
    margin-top: 2rem;
  }

  .footer-links ul li {
    margin: 0.5rem 0;
  }
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  font-size: 1.5rem;
  color: #800000; /* maroon from your logo */
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #c8ad6a; /* gold from your logo */
  transform: scale(1.2);
}








