:root {
  --primary-color: #9b59b6;
  --accent-color: #e91e63;
  --light-bg: #111115;
  --card-bg: #1b1b1f;
  --text-color: #f8f8f8;
  --border-color: #333;
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-pop: 0 12px 24px rgba(0, 0, 0, 0.5);
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--light-bg);
  color: var(--text-color);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  padding-top: 100px;
}

/* HERO BACKDROP */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background:
    linear-gradient(to bottom right, rgba(155,89,182,0.6), rgba(233,30,99,0.6)),
    url('images/background.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  filter: blur(4px); /* softer blur for mobile clarity */
  z-index: -1;
  pointer-events: none;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 1.5em 2em;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(26, 26, 29, 0.65); /* semi-transparent dark */
  backdrop-filter: blur(8px); /* glassy blur */
  -webkit-backdrop-filter: blur(8px); /* Safari support */
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}


.logo {
  height: 50px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2em;
  color: var(--text-color);
  cursor: pointer;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5em;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  font-family: 'Exo 2', sans-serif;
  transition: color 0.3s ease;
}
.site-nav a:hover {
  color: var(--accent-color);
}

/* HERO */
#hero {
  text-align: center;
  padding: 4em 2em;
  border-left: 8px solid var(--accent-color);
}
.hero-logo {
  max-width: 240px;
  width: 100%;
  height: auto;
  margin-bottom: 1em;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
#hero p {
  font-size: 1.25em;
  margin-bottom: 1em;
  color: var(--text-color);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
}

/* HEADERS */
h1, h2, h3, h4 {
  font-family: 'Exo 2', sans-serif;
  line-height: 1.3;
  margin-bottom: 1em;
  color: var(--text-color) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
}

/* BUTTONS */
.btn, .btn-sm {
  display: inline-block;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Exo 2', sans-serif;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.btn {
  background-color: var(--accent-color);
  color: #fff;
  padding: 0.75em 1.5em;
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}
.btn:hover {
  background-color: var(--primary-color);
  transform: scale(1.04);
  box-shadow: 0 6px 16px rgba(155, 89, 182, 0.5);
}
.btn-sm {
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.5em 1em;
  box-shadow: 0 4px 12px rgba(155, 89, 182, 0.3);
}
.btn-sm:hover {
  background-color: var(--accent-color);
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(233, 30, 99, 0.3);
}
#contact a.btn-sm {
  color: #fff !important;
}

/* SECTIONS */
section {
  padding: 3em 2em;
  border-left: 4px solid var(--accent-color);
}

.founder-block {
  display: flex;
  align-items: center;
  gap: 1.5em;
  margin-top: 2em;
  flex-wrap: wrap;
}
.founder-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--border-color);
}
.founder-text {
  flex: 1;
  min-width: 240px;
}

/* PORTFOLIO */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
}
.property-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 1.5em;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.property-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-pop);
}
.property-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 1em;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--border-color);
}

/* LEGAL & CONTACT */
#legal, #contact {
  text-align: center;
}
#legal a, #contact a:not(.btn-sm) {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

/* FOOTER */
footer {
  background-color: #1a1a1d;
  color: #aaa;
  text-align: center;
  padding: 2em 1em;
  font-size: 0.875em;
  font-family: 'Nunito', sans-serif;
}

/* MOBILE PATCHES */
@media (max-width: 600px) {
  body::before {
    background:
      linear-gradient(to bottom right, rgba(155,89,182,0.6), rgba(233,30,99,0.6)),
      url('images/background.png'); /* or background-mobile.png if used */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    filter: blur(4px);
  }
}

  }
  */

  header {
    flex-direction: column;
    align-items: center;
    padding: 1em;
  }

  .logo {
    height: 36px;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 1em;
    right: 1em;
    z-index: 1001;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 1em;
    background-color: #1a1a1d;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1.5em 2em;
    display: none;
  }

  .site-nav.open ul {
    display: flex;
  }

  .hero-logo {
    max-width: 180px;
  }

  #hero h1 {
    font-size: 2em;
  }
}
