/* Michael Does It All — static rebuild
   Brand colors pulled from the live site's original CSS:
   orange #F7941D, dark orange #AB630A, blue #0073AB */

:root {
  --brand-orange: #F7941D;
  --brand-orange-dark: #AB630A;
  --brand-blue: #0073AB;
  --text-dark: #222222;
  --text-body: #444444;
  --bg-light: #FAFAFA;
  --white: #FFFFFF;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-body);
  background: var(--bg-light);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--brand-blue);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header / Nav ---------- */

header {
  background: var(--white);
  border-bottom: 3px solid var(--brand-orange);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 56px;
  width: 56px;
}

.brand-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
}

nav#nav-menu {
  display: flex;
  gap: 24px;
}

nav#nav-menu a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

nav#nav-menu a:hover,
nav#nav-menu a.active {
  color: var(--brand-orange-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-dark);
}

.call-btn {
  background: var(--brand-orange);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
}
.call-btn:hover {
  background: var(--brand-orange-dark);
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-dark) 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0 0 12px;
}

.hero p {
  font-size: 1.15rem;
  margin: 0 0 24px;
  opacity: 0.95;
}

.hero .call-btn {
  background: var(--white);
  color: var(--brand-orange-dark) !important;
  font-size: 1.1rem;
  padding: 12px 28px;
}
.hero .call-btn:hover {
  background: var(--bg-light);
}

/* ---------- Sections ---------- */

section {
  padding: 50px 20px;
}

section h2 {
  text-align: center;
  color: var(--text-dark);
  font-size: 1.8rem;
  margin-bottom: 6px;
}

section .section-sub {
  text-align: center;
  color: var(--text-body);
  margin-bottom: 30px;
}

.gallery-block {
  max-width: 800px;
  margin: 0 auto 60px;
}

.gallery-block h3 {
  text-align: center;
  color: var(--brand-blue);
  margin-bottom: 16px;
}

/* ---------- Carousel ---------- */

.carousel {
  position: relative;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.carousel-track {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}

.carousel-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.carousel-btn:hover {
  background: var(--brand-orange);
}
.carousel-btn-prev {
  left: 12px;
}
.carousel-btn-next {
  right: 12px;
}

.carousel-counter {
  position: absolute;
  bottom: 10px;
  right: 14px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  font-size: 0.8rem;
  padding: 3px 9px;
  border-radius: 12px;
}

/* ---------- Services list ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border: 1px solid #eee;
  border-left: 4px solid var(--brand-orange);
  border-radius: 6px;
  padding: 16px 18px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ---------- About page ---------- */

.about-content {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  padding: 34px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.about-content p {
  margin-bottom: 16px;
}

/* ---------- Footer ---------- */

footer {
  background: var(--text-dark);
  color: #ccc;
  text-align: center;
  padding: 26px 20px;
  font-size: 0.9rem;
}

footer a {
  color: var(--brand-orange);
}

/* ---------- Responsive ---------- */

@media (max-width: 720px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  nav#nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    display: none;
    border-bottom: 3px solid var(--brand-orange);
  }

  nav#nav-menu.open {
    display: flex;
  }

  nav#nav-menu a {
    padding: 14px 20px;
    border-top: 1px solid #eee;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
