/* =========================================
   PLAN.CSS – MODERN MALL / LEASING STYLE
   ========================================= */

/* -------- Base -------- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Roboto", Arial, sans-serif;
  color: #2b1a10;
  background: #ffffff;
}

/* =========================================
   FLOOR PLAN SECTION
   ========================================= */

.floor-plan {
  padding: 60px 20px;
  background: #f7f7f7;
  text-align: center;
}

.floor-plan h2 {
  font-size: 2.2rem;
  margin-bottom: 45px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2b1a10;
}

/* Floor cards */
.floor-plan .floor {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #e5e5e5;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floor-plan .floor:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.floor-plan .floor h3 {
  font-size: 1.4rem;
  color: #6a3b14;
  margin-bottom: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Floor plan image */
.floor-plan .floor img {
  max-width: 100%;
  height: auto;
  display: block; /* Prevents unwanted whitespace at the bottom */
  border-radius: 10px;
  background: #fafafa;
  border: 1px solid #e6e6e6;
}

@media (max-width: 768px) {
  .floor-plan {
    padding: 10px; /* Give the image more room to breathe */
  }
}

/* =========================================
   TENANTS SECTION
   ========================================= */

.tenants {
  padding: 70px 20px;
  background: #ffffff;
  text-align: center;
}

.tenants h2 {
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2b1a10;
}

/* Grid layout */
.tenants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Floor tenant card */
.floor-tenants {
  background: #fafafa;
  padding: 30px 28px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  text-align: left;
}

/* Floor title */
.floor-tenants h3 {
  font-size: 1.3rem;
  color: #6a3b14;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #c5a059;
  display: inline-block;
  padding-bottom: 6px;
}

/* Tenant list items */
.tenant {
  font-size: 0.98rem;
  color: #333;
  padding: 10px 0 10px 22px;
  position: relative;
  border-bottom: 1px solid #e9e9e9;
}

.tenant:last-child {
  border-bottom: none;
}

/* Bullet */
.tenant::before {
  content: "•";
  color: #c5a059;
  position: absolute;
  left: 0;
  top: 9px;
  font-size: 1.4rem;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 768px) {
  .floor-plan h2,
  .tenants h2 {
    font-size: 1.8rem;
  }

  .floor-plan .floor h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .floor-plan {
    padding: 40px 15px;
  }

  .tenants {
    padding: 50px 15px;
  }

  .tenant {
    font-size: 0.95rem;
  }
}
