
:root {
  --accent: #d0b36c;
  --dark: #131619;
  --text: #2b2b2b;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Cormorant Garamond', serif;
}
h1 { font-size: 2.6rem; color: var(--white); }
h2 { font-size: 1.8rem; color: var(--accent); margin-bottom: 16px; }
p { font-size: 1rem; color: #555; }

.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

/* Navbar */
.mall-navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.mall-logo {
  height: 42px;
}
.mall-nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}
.mall-nav a:hover {
  color: var(--accent);
}

/* Hero Banner */
.mall-hero {
  background: #333 url('mall-wasl.jpg') center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
.mall-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.mall-hero h1 {
  z-index: 1;
  font-size: 2.6rem;
}

/* Section Styles */
.mall-section {
  padding: 80px 20px;
}

.layout-section {
  background: linear-gradient(135deg, #f3f3f3, #ffffff);
}

.layout-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 40px;
}

.layout-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.layout-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.layout-card img {
  width: 100%;
  height: auto;
  display: block;
}

.layout-card p {
  padding: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.layout-img {
  gap: 24px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Modal styles */
.layout-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding: 40px 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.layout-modal-content {
  max-width: 90%;
  max-height: 80vh;
  margin: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.layout-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.layout-close:hover {
  color: var(--accent);
}


.alt-bg {
  background-color: #f8f8f8;
}
.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.about-text p {
  font-size: 1rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.gallery-grid img:hover {
  transform: scale(1.03);
}

/* CTA */
.leasing-cta {
  background: var(--accent);
  color: var(--white);
  text-align: center;
}
.leasing-cta h2 {
  color: var(--white);
}
.leasing-cta p {
  color: #f5f5f5;
}
.cta-btn {
  display: inline-block;
  margin-top: 16px;
  background: #000;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}
.cta-btn:hover {
  background: #222;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1500;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

/* Responsive adjustments if needed */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 15px;
    left: 15px;
  }

  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }
}


/* Footer */
.mall-footer {
  background: #0f0f0f;
  color: #aaa;
  text-align: center;
  padding: 30px 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .mall-hero {
    height: 50vh;
  }
  h1 {
    font-size: 2rem;
  }
}
