/*UNIVERSAL CODE */
body {
  font-family: Arial, Helvetica, sans-serif;
}



/* ===== NAVBAR 


==================================================================== */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 15px 20px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  box-sizing: border-box; 
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 6px 12px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: gray;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #111;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    border-top: 1px solid #222;
    transition: all 0.4s ease;
    box-sizing: border-box;
  }

  .nav-links li {
    width: 100%;
    padding: 12px 20px;
  }

  .nav-links a {
    display: block;
    width: 100%;
  }

  /* When toggled open */
  .nav-links.show {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }
}

/* Extra tuning for very small phones */
@media (max-width: 480px) {
  .site-nav {
    padding: 12px 20px;
  }

  .logo {
    font-size: 1.4rem;
  }

  .nav-links li {
    padding: 15px 20px;
  }

  .menu-toggle {
    font-size: 1.6rem;
  }
}


/* HERO */
.tour-hero {
  width: 100%;
  max-width: 1200px;
  margin: 120px auto 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

#panoramaContainer {
  width: 100%;
  height: 520px;
  background: #000;
  margin-top: 70px;
}

/* NAV BUTTONS */
.tour-nav {
  display: flex;
  gap: 16px;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
}

.tour-nav button {
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  background: #1f2933;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.tour-nav button:hover {
  background: #111827;
}

/* FLOORPLAN */
.floorplan-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.floorplan-placeholder {
  margin-top: 20px;
  height: 280px;
  border-radius: 14px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 15px;
}

/* GALLERY */
.gallery-section {
  max-width: 1200px;
  margin: 60px auto 100px;
  padding: 0 20px;
}

.gallery-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}
.plans-grid {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.plan-card h3 {
  font-size: 15px;
  margin-bottom: 10px;
  color: #111827;
}
.plan-placeholder {
  height: 260px;
  border-radius: 14px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 14px;
}
.plan-placeholder.blueprint {
  background: #eef2ff; /* subtle blueprint vibe */
}