/* ============================
   MJG Renovations - Luxury Theme
   Colors: Charcoal | White | Gold
=============================== */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* =============================
   Navigation
============================= */
.nav {
  width: 100%;
  background: #ffffff;
  padding: 1.2em 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #c5a572;
}

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: #1a1a1a;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2em;
}

nav ul li a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

nav ul li a:hover,
nav ul li a.active {
  color: #c5a572;
}

nav ul li a.active::after,
nav ul li a:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #c5a572;
  bottom: 0;
  left: 0;
}

/* =============================
   HERO SECTION
============================= */
.hero {
  width: 100%;
  height: 80vh;
  background: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?auto=format&fit=crop&w=2000&q=80") center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}


.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.4)
  );
}

.hero-text {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 700px;
  padding: 1em;
}

.hero-text h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 3.2rem;
  margin-bottom: 0.5em;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 1.2em;
}

.btn-primary {
  display: inline-block;
  padding: 0.9em 1.8em;
  background: #c5a572;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #af8d4f;
}

/* =============================
   INTRO SECTION
============================= */
.intro {
  padding: 4em 10%;
  text-align: center;
  background: #ffffff;
}

.intro h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  margin-bottom: 0.6em;
}

.intro p {
  font-size: 1.2rem;
  color: #444;
  max-width: 900px;
  margin: 0 auto;
}

/* =============================
   SERVICE SECTION
============================= */
.services {
  padding: 4em 10%;
  display: flex;
  justify-content: center;
  gap: 2em;
  background: #f3f3f3;
}

.service-card {
  background: #ffffff;
  padding: 2em;
  width: 30%;
  border-left: 5px solid #c5a572;
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(0,0,0,0.06);
  text-align: left;
}

.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}

.service-card p {
  color: #555;
}

/* =============================
   FOOTER
============================= */
footer {
  background: #1a1a1a;
  color: white;
  text-align: center;
  padding: 2em;
  margin-top: 2em;
  border-top: 2px solid #c5a572;
}
