/* -----------------------------------
    MJG Renovations LLC
    Red | Black | White Corporate Theme
----------------------------------- */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #ffffff;
  color: #111;
}

/* ---------------- TOP NAVIGATION ---------------- */
.top-nav {
  width: 100%;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2em 5%;
  border-bottom: 2px solid #c90000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8em;
  color: #c90000;
}

.top-nav ul {
  list-style: none;
  display: flex;
  gap: 2em;
}

.top-nav ul li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: 0.3s;
}

.top-nav ul li a:hover,
.top-nav ul li a.active {
  color: #c90000;
}

.cta-btn {
  background: #c90000;
  color: #fff;
  padding: 0.7em 1.4em;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #a00000;
}

/* ---------------- HERO SECTION ---------------- */
.hero {
  width: 100%;
  height: 75vh;
  background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c") center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 2em;
}

.hero-content h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 0.7em;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 1.2em;
}

.hero-btn {
  background: #c90000;
  padding: 0.9em 1.7em;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #a00000;
}

/* ---------------- INTRO SECTION ---------------- */
.intro {
  background: #ffffff;
  text-align: center;
  padding: 4em 10%;
  font-size: 1.3rem;
  color: #222;
}

.intro-link {
  display: inline-block;
  margin-top: 1.5em;
  color: #c90000;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
}

.intro-link:hover {
  text-decoration: underline;
}

/* ---------------- SERVICES PREVIEW ---------------- */
.services-preview {
  display: flex;
  justify-content: center;
  gap: 2em;
  padding: 3.5em 10%;
  background: #f3f3f3;
}

.service-box {
  background: #ffffff;
  padding: 2em;
  width: 30%;
  border-left: 5px solid #c90000;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.service-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.6em;
  font-weight: 700;
}

.service-box p {
  font-size: 1rem;
  color: #444;
}

/* ---------------- FOOTER ---------------- */
footer {
  background: #111;
  padding: 2em;
  text-align: center;
  color: #fff;
  margin-top: 2em;
}
