/* Base Styles */
:root {
  --color-bg-primary: #e4ffde;
  --color-bg-secondary: #263b1f;
  --color-accent: #cb9eff;
  --color-heading: #3e2f5b;
  --color-button: #f2396b;
  --color-text: #333333;
  --color-text-light: #ffffff;
  --color-border: #cccccc;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', 'Helvetica', sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg-primary);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  margin-bottom: 1rem;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-heading);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
header {
  background-color: var(--color-bg-primary);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  max-width: 200px;
}

.logo img {
  max-height: 60px;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
}

.nav-menu a {
  color: var(--color-heading);
  font-weight: 600;
}

.nav-menu a:hover {
  color: var(--color-button);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
}

.mobile-toggle a {
  color: var(--color-heading);
  text-decoration: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(228, 255, 222, 0.9), rgba(228, 255, 222, 0.9)), url('./img/BnoBVE.jpg') center/cover no-repeat;
  margin-top: 60px;
  padding: 2rem 0;
}

.hero-content {
  max-width: 700px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--color-button);
  color: var(--color-text-light);
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--color-heading);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--color-text-light);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--color-button);
  color: var(--color-button);
}

.btn-secondary:hover {
  background-color: var(--color-button);
  color: var(--color-text-light);
}

/* Section Styles */
section {
  padding: 5rem 0;
  scroll-margin-top: 80px; /* Add space for the fixed header */
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--color-accent);
}

/* About Section */
.about {
  background-color: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.about-text {
  text-align: center;
}

/* Services Section */
.services {
  background-color: var(--color-bg-primary);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-content {
  padding: 1.5rem;
  text-align: center;
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-price {
  font-weight: bold;
  color: var(--color-button);
  margin-top: 1rem;
  font-size: 1.2rem;
}

/* Why Us Section */
.why-us {
  background-color: #fff;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.feature {
  text-align: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-text-light);
  font-size: 1.5rem;
}

/* Team Section */
.team {
  background-color: var(--color-bg-primary);
  position: relative;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.team-member {
  width: 300px;
  background-color: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-member img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: -50px auto 0;
  border: 5px solid var(--color-bg-primary);
  box-shadow: var(--shadow);
}

.team-member-info {
  padding: 0 1.5rem 1.5rem;
  margin-top: 60px;
}

.team-member h3 {
  margin-bottom: 0.5rem;
  color: var(--color-heading);
  font-size: 1.3rem;
}

.team-member p.role {
  color: var(--color-button);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-member p.bio {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.team-social {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--color-accent);
  color: white;
  border-radius: 50%;
  transition: var(--transition);
}

.team-social a:hover {
  background-color: var(--color-button);
  transform: translateY(-3px);
}

/* Testimonials Section */
.testimonials {
  background-color: #fff;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background-color: var(--color-bg-primary);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  position: relative;
  text-align: center;
}

.testimonial::before {
  content: '"';
  font-size: 5rem;
  color: var(--color-accent);
  opacity: 0.2;
  position: absolute;
  top: -15px;
  left: 10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

/* Form Section */
.contact {
  background-color: var(--color-bg-primary);
  scroll-margin-top: 80px; /* Add space for the fixed header */
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
}

select.form-control {
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233e2f5b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 10px center;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.checkbox-input {
  margin-top: 0.3rem;
}

/* Footer */
footer {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-light);
  padding: 3rem 0 1rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-logo img {
  max-height: 60px;
  margin-bottom: 1rem;
}

.footer-links h3 {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--color-accent);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--color-text-light);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-info i {
  margin-right: 10px;
  color: var(--color-accent);
}

.copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--color-bg-secondary);
  color: var(--color-text-light);
  padding: 1.5rem;
  z-index: 1001;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: bottom 0.5s ease, opacity 0.5s ease;
}

.cookie-banner.show {
  bottom: 0;
  opacity: 1;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

/* Policy Pages */
.policy-container {
  max-width: 800px;
  margin: 100px auto 2rem;
  padding: 2rem;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.policy-container h1 {
  margin-bottom: 2rem;
}

.policy-container h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.policy-container p, .policy-container ul {
  margin-bottom: 1.5rem;
}

.policy-container ul {
  padding-left: 2rem;
}

/* Thank You Page */
.thank-you {
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  margin: 100px auto 0;
  max-width: 800px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 3rem;
}

.thank-you h1 {
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    flex-direction: column;
    background-color: var(--color-bg-primary);
    width: 100%;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    left: 0;
    display: flex;
  }

  .service-card,
  .team-member,
  .testimonial {
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  section {
    padding: 3rem 0;
  }

  .hero {
    min-height: 80vh;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .form-group {
    margin-bottom: 1rem;
  }
} 