/* LUXURY REAL ESTATE STYLE */

:root {
  --bg-dark: #0c0d10;
  --bg-light: #f5f5f4;
  --text-dark: #141518;
  --text-light: #ffffff;
  --muted: rgba(255,255,255,0.75);
  --gold: #c6a25a;
}

* {
  box-sizing: border-box;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  margin: 0;
  background: var(--bg-light);
  color: var(--text-dark);
}

/* HERO */

.hero {
  position: relative;
  height: 100vh;
  background: 
    linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.45)
    ),
    url("../images/chris-hero.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
}

.hero-content {
  max-width: 900px;
  padding: 20px;
  animation: fadeUp 1.2s ease forwards;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
  color: var(--muted);
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-button {
  position: relative;
  padding: 18px 40px;
  border: 1px solid var(--text-light);
  color: var(--text-light);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 2px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.hero-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.hero-button:hover::before {
  transform: scaleX(1);
}

.hero-button:hover {
  color: #000;
  border-color: var(--gold);
}

/* SECTIONS */

.section {
  padding: 120px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  font-size: 42px;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.section p {
  font-size: 18px;
  max-width: 800px;
  line-height: 1.8;
  color: #333;
}

/* REVIEWS */

.review-box {
  margin-top: 60px;
  font-style: italic;
  font-size: 20px;
  animation: fade 1s ease;
}

.review-author {
  margin-top: 20px;
  font-weight: 600;
  font-style: normal;
}

/* CTA */

.cta {
  background: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
  padding: 120px 20px;
}

.cta a {
  display: inline-block;
  margin-top: 40px;
  padding: 18px 42px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 2px;
  transition: all 0.4s ease;
}

.cta a:hover {
  background: var(--gold);
  color: #000;
}

/* ANIMATIONS */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* MOBILE */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 18px;
  }
}

/* REVIEW CARDS */

.review-track {
  display: flex;
  gap: 30px;
  overflow: hidden;
  margin-top: 60px;
}

.review-card {
  min-width: 320px;
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.5s ease;
}

.review-card p {
  font-size: 17px;
  line-height: 1.7;
}

.review-card span {
  display: block;
  margin-top: 20px;
  font-weight: 600;
}

