@import url("https://fonts.googleapis.com/css2?family=Avenir+Next:wght@500;700&display=swap");

:root {
  --primary-color: #f15b5b;

  --secondary-color: #f9ed43;

  --accent-color: #ff6b6b;

  --background-color: #6a1b9a;

  --text-color: #f9ed43;

  /* --text-color: #333; */
}

* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

body {
  background-color: var(--background-color);

  font-family: "Avenir Next", sans-serif;

  line-height: 1.6;

  color: var(--text-color);
}

nav {
  position: fixed;

  width: 100%;

  padding: 1rem 2rem;

  background: var(--background-color);

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

  display: flex;

  justify-content: space-between;

  align-items: center;

  z-index: 1000;
}

.logo {
  display: flex;

  align-items: center;

  gap: 1rem;
}

.logo img {
  height: 40px;
}

.logo span {
  font-size: 1.5rem;

  font-weight: 700;

  color: var(--primary-color);
}

.nav-links {
  display: flex;

  gap: 2rem;

  align-items: center;
}

.nav-links a {
  text-decoration: none;

  color: var(--secondary-color);

  font-weight: 500;

  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.cta-button {
  background: var(--primary-color);

  color: white !important;

  padding: 0.5rem 1.5rem;

  border-radius: 25px;

  text-decoration: none;

  transition: background 0.3s;
}

.cta-button:hover {
  background: var(--secondary-color);
}

header {
  height: 100vh;

  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("hero-bg.jpg");

  background-size: cover;

  background-position: center;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  color: white;
}

.hero {
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;

  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;

  margin-bottom: 2rem;
}

section {
  padding: 5rem 2rem;
}

h2 {
  font-family: "Avenir Next", sans-serif;

  font-weight: 700;

  text-align: center;

  margin-bottom: 3rem;

  color: var(--secondary-color);
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 2rem;

  max-width: 1200px;

  margin: 0 auto;
}

.service-card {
  text-align: center;

  padding: 2rem;

  background: white;

  border-radius: 10px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

  transition: transform 0.3s;

  color: var(--background-color);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  font-size: 2.5rem;

  color: var(--primary-color);

  margin-bottom: 1rem;
}

.about-content {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 3rem;

  max-width: 1200px;

  margin: 0 auto;
}

.about-content img {
  width: 100%;

  border-radius: 10px;
}

.about-text ul {
  list-style: none;

  margin-top: 1rem;
}

.testimonials-slider {
  max-width: 800px;

  margin: 0 auto;

  text-align: center;
}

.testimonial {
  padding: 2rem;

  background: white;

  border-radius: 10px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

  margin: 1rem;

  color: var(--background-color);
}

.testimonial cite {
  color: var(--primary-color);

  font-style: normal;

  font-weight: 600;
}

.contact-container {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 3rem;

  max-width: 1200px;

  margin: 0 auto;
}

form {
  display: flex;

  flex-direction: column;

  gap: 1rem;
}

input,
textarea {
  padding: 0.8rem;

  border: 1px solid #ddd;

  border-radius: 5px;

  font-family: inherit;
}

textarea {
  height: 150px;
}

.contact-info {
  padding: 2rem;

  background: var(--primary-color);

  color: white;

  border-radius: 10px;
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

footer {
  text-align: center;

  padding: 2rem;

  background: var(--secondary-color);

  color: var(--background-color);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .about-content,
  .contact-container {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  /* Existing styles */

  .nav-links {
    position: fixed;

    top: 0;

    right: -100%;

    height: 100vh;

    width: 70%;

    background: var(--background-color);

    flex-direction: column;

    padding: 2rem;

    transition: 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  /* Add hamburger menu */

  .hamburger {
    display: block;

    cursor: pointer;

    z-index: 1001;
  }

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

  .hero p {
    font-size: 1rem;
  }

  /* Make services cards stack nicely */

  .services-grid {
    grid-template-columns: 1fr;

    padding: 0 1rem;
  }

  /* Adjust section padding for mobile */

  section {
    padding: 3rem 1rem;
  }

  /* Make contact form full width */

  .contact-container {
    grid-template-columns: 1fr;
  }

  /* Adjust form inputs for better mobile experience */

  input,
  textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }

  /* Make the hero logo responsive */

  .hero-logo {
    max-width: 80%;

    height: auto;
  }
}

/* Add styles for smaller phones */

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .service-card {
    padding: 1.5rem;
  }
}

.areas-content {
  max-width: 1200px;

  margin: 0 auto;

  text-align: center;
}

.areas-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

  gap: 1rem;

  margin-top: 2rem;
}

.area {
  background: var(--primary-color);

  color: white;

  padding: 1rem;

  border-radius: 5px;

  font-weight: 500;
}

h1 {
  font-family: "Avenir Next", sans-serif;

  font-weight: 700;

  text-align: center;

  margin-bottom: 3rem;

  color: var(--secondary-color);
}
