/* Global Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; background: #f5f5f5; color: #333; }

.wrapper { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.site-header { background: #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 999; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.logo { font-weight: bold; font-size: 1.2rem; }
.menu a { margin-left: 1rem; text-decoration: none; color: #333; }
.menu a:hover { text-decoration: underline; }

/* Hero */
.hero { display: flex; align-items: center; justify-content: center; height: 90vh;
  background:
    linear-gradient(135deg, rgba(100,100,255,0.8), rgba(150,150,255,0.8)),
    url('https://via.placeholder.com/1920x1080') no-repeat center/cover;
  color: #fff; text-align: center; padding: 0 1.5rem;
}
.hero-content { max-width: 600px; }
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero p { margin-bottom: 1.5rem; }

/* Buttons */
.cta-button {
  padding: 0.75rem 1.5rem; background: #333; color: #fff; border: none;
  border-radius: 4px; font-weight: bold; cursor: pointer; transition: background 0.3s;
}
.cta-button:hover { background: #666; }

/* Sections */
.about-me, .contact { background: #fff; padding: 3rem 1.5rem; text-align: center; }
.about-me h2, .contact h2, .services h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.about-me p, .contact p { max-width: 700px; margin: 0 auto; line-height: 1.6; }

.services { background: #f0f0f0; padding: 3rem 1.5rem; text-align: center; }
.service-items { display: grid; gap: 2rem; max-width: 900px; margin: 0 auto; grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .service-items { grid-template-columns: repeat(3,1fr); }
}

/* Footer */
.site-footer { background: #fff; text-align: center; padding: 1rem 0; border-top: 1px solid #ccc; margin-top: 2rem; }
.site-footer p { color: #666; font-size: 0.9rem; }

/* ensures buttons sit side-by-side without overlap */
.button-group {
  display: flex;
  justify-content: center;  /* center them */
  gap: 1rem;                /* space between buttons */
  margin-top: 1.5rem;       /* some breathing room from the paragraph */
}