/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Base styles */
body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  padding: 2rem 0;
  text-align: center;
}

/* Header */
header {
  background-color: #2C3E50;
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo */
.logo img {
  width: 120px;
  display: block;
  margin: 0 auto 10px auto;
}

/* Navigation */
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

nav ul li {
  margin: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
  background-color: #3498db;
}

nav ul li a:hover {
  background-color: #2980b9;
  color: #f1c40f;
}

/* Desktop Navigation */
@media (min-width: 769px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  nav ul {
    justify-content: flex-end;
  }

  .logo {
    margin: 0;
  }
}

/* Hero Section Button */
.cta-button,
button {
  background-color: #3498db;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  display: inline-block;
  margin-top: 1rem;
}

.cta-button:hover,
button:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
}

/* Schedule Form */
.schedule-form {
  max-width: 900px;
  margin: 0 auto;
}

/* Prices Page */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

.price-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.price-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1.5rem;
  max-width: 320px;
  width: 100%;
  text-align: center;
  transition: transform 0.2s ease;
}

.price-item:hover {
  transform: translateY(-5px);
}

.price-item img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.price-item h2 {
  color: #2C3E50;
  margin-bottom: 0.5rem;
  font-size: 20px;
}

.price-item p {
  margin: 0.5rem 0;
}

@media screen and (max-width: 768px) {
  .pricing-table {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .price-item {
    text-align: center;
  }
}

/* Team Section */
.team-members {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}

.team-member {
  background-color: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-member img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.team-member h3 {
  color: #2C3E50;
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: #2C3E50;
  color: white;
  padding: 1rem;
  text-align: center;
  margin-top: auto;
}

/* Social Section */
.socials {
  background-color: #ffffff;
  padding: 3rem 1rem;
  text-align: center;
}

.socials h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #2C3E50;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  background-color: #3498db;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
}

/* Results Page */
.results-section {
  padding: 2rem;
  background-color: #f9f9f9;
}

.results-section h1 {
  font-size: 2.5rem;
  color: #2C3E50;
  margin-bottom: 0.5rem;
}

.results-section p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.results-gallery {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.result-pair {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.result-pair img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.price-amount {
  font-weight: bold;
  font-size: 1.2rem;
  color: #3498db;
  margin-bottom: 0.5rem;
}

.note-box {
  background-color: #f0f8ff;
  padding: 2rem 1rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.note-box h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #003366;
}

.note-box ul {
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
}

.note-box li::before {
  content: "• ";
  color: #003366;
  font-weight: bold;
}

.note-box li {
  list-style: none;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 0.8rem;
}

/* Hamburger menu button */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: block;
    margin-left: auto; /* Push to far right */
  }

  .logo {
    margin-right: auto;
  }

  nav ul {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 100%;
    right: 1rem;
    background-color: #2C3E50;
    padding: 0.75rem;
    border-radius: 10px;
    width: 160px; /* Smaller width */
    z-index: 999;
  }

  nav ul.show {
    display: flex;
  }
}

.results-job {
  margin-bottom: 3rem;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.results-job h2 {
  color: #2C3E50;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

