/* Reset + Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
  color: #333;
}

/* Header + Hero */
header.hero {
  position: relative;
  height: 80vh;
  background: url('/images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* just a light transparent overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content {
  text-align: center;
  color: white;
  z-index: 1;
}

.button {
  background-color: #9c5beb;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

/* Hamburger Menu */
#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  z-index: 2000;
}

.navbar .menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.navbar .menu li a {
  color: #9c5beb;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .navbar .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 4.5rem;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem;
    border-radius: 8px;
    z-index: 1000;
  }

  #menu-toggle:checked + .menu-icon + .navbar .menu {
    display: flex;
  }

  .navbar .menu li a {
    color: white;
  }
}

/* Main Section Styling */
main {
  margin: 0;
  padding: 0;
}

/* Services Section */
.angled-section {
  background: linear-gradient(135deg, #6E3CBC 0%, #2B2B2B 100%);
  color: white;
  text-align: center;
  padding: 120px 20px;
}
.angled-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.services {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.service {
  flex: 1 1 250px;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

/* Footer */
footer {
  background-color: #eee;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}