/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f5f1eb;
  color: #333;
  line-height: 1.6;
  transition: background 0.3s, color 0.3s;
}

/* DARK MODE */
body.dark {
  background: #1a1a1a;
  color: #eee;
}

/* DARK MODE BUTTON */
.dark-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #c49a6c;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 9999;
}

/* NAVBAR */
.nav {
  width: 100%;
  background: #c49a6c;
  color: white;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 9998;
}

.nav-logo {
  font-size: 1.6rem;
  font-weight: bold;
}

.nav-links a {
  margin-left: 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 32px;
  cursor: pointer;
  z-index: 9999;
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: #c49a6c;
  padding-top: 80px;
  z-index: 9998;
}

.mobile-nav a {
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.mobile-nav a:hover {
  background: rgba(0,0,0,0.2);
}

/* DESKTOP NAV */
.desktop-nav {
  display: flex;
}

.desktop-nav a:hover {
  text-decoration: underline;
}

/* MOBILE BREAKPOINT */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .desktop-nav {
    display: none;
  }
}

/* HERO */
.hero {
  position: relative;
  height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
}

.hero h1 {
  font-size: 3rem;
  z-index: 2;
}

.hero p {
  font-size: 1.3rem;
  margin-top: 10px;
  z-index: 2;
}

/* BUTTONS */
.cta {
  background: #c49a6c;
  padding: 14px 28px;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 25px;
  font-size: 1.1rem;
  z-index: 2;
  transition: 0.3s;
}

.cta:hover {
  background: #b38755;
}

.whatsapp {
  background: #25D366;
}

.whatsapp:hover {
  background: #1ebd59;
}

/* SECTIONS */
section {
  padding: 50px 20px;
  max-width: 900px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2rem;
  color: #c49a6c;
}

/* GALLERY */
.gallery .grid,
.portfolio .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.gallery img,
.portfolio img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.gallery img:hover,
.portfolio img:hover {
  transform: scale(1.03);
}

/* PORTFOLIO CARDS */
.card {
  background: white;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* LIGHTBOX */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

#lightbox.active {
  display: flex;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* MAP */
.map-container {
  margin: 40px auto;
  max-width: 900px;
  border-radius: 10px;
  overflow: hidden;
}

/* FOOTER */
footer {
  background: #c49a6c;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 1rem;
}

/* FADE-IN */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
