@import url("https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&display=swap");

@font-face {
  font-family: "BrittanySignature";
  src: url("resources/fonts/BrittanySignature.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cardo", serif;
  line-height: 1.6;
  color: #3a3335;
  background: #faf8f6;
  font-size: 16px;
  overflow-x: hidden;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: #ffffff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.logo-container h1 {
  font-family: "BrittanySignature", cursive;
  font-size: 1.8em;
  color: #cda582;
  margin: 0;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #3a3335;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #cda582;
}

.hamburger {
  display: none;
  font-size: 1.8em;
  cursor: pointer;
  color: #3a3335;
}

.hero-section {
  background: linear-gradient(135deg, #f5e9e2, #e6c9b8);
  padding: 180px 5% 100px 5%;
  text-align: center;
}

.hero-content h2 {
  font-size: 2.8em;
  color: #3a3335;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2em;
  color: #5e5557;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.consultation-section {
  padding: 80px 5%;
  background: #fff;
}

.consultation-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px;
  background: #faf8f6;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.consultation-type h3.consultation-subtitle {
  font-size: 1.4em;
  color: #cda582;
  margin-bottom: 15px;
}

.consultation-type p {
  font-size: 1.1em;
  color: #5e5557;
  line-height: 1.8;
  margin-bottom: 20px;
}

.cta-section {
  padding: 80px 5%;
  text-align: center;
  background: linear-gradient(135deg, #f5e9e2, #e6c9b8);
  color: #3a3335;
}

.cta-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-section p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #5e5557;
}

.cta-button.primary {
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: #cda582;
  color: #fff;
  transition: background 0.3s ease;
}

.cta-button.primary:hover {
  background: #b99874;
}

.footer {
  background: #3a3335;
  color: #fff;
  padding: 40px 5%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info h3 {
  font-size: 1.6em;
  color: #cda582;
  margin-bottom: 15px;
}

.footer-info p {
  font-size: 1em;
  color: #d8d3d5;
  margin-bottom: 5px;
}

.socials a {
  font-size: 1.5em;
  color: #fff;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.socials a:hover {
  color: #cda582;
}

.footer .map iframe {
  width: 300px;
  height: 200px;
  border-radius: 15px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9em;
  color: #d8d3d5;
}

@media (max-width: 1024px) {
  .hero-section {
    padding: 200px 5% 80px 5%;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .footer .map iframe {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2.2em;
  }

  .cta-section h2 {
    font-size: 2em;
  }

  .consultation-container {
    padding: 30px;
  }
}

.consultation-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px;
  background: #faf8f6;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  line-height: 1.8;
}

.consultation-container h3.consultation-subtitle {
  font-size: 1.4em;
  color: #cda582;
  margin-bottom: 20px;
}

.consultation-container p {
  font-size: 1.1em;
  color: #5e5557;
  margin-bottom: 20px;
}

.consultation-container ul,
.consultation-container ol {
  margin-left: 25px;
  margin-bottom: 20px;
}

.consultation-container ul li,
.consultation-container ol li {
  margin-bottom: 10px;
}

.consultation-container h4 {
  color: #cda582;
  margin-top: 25px;
  margin-bottom: 15px;
}
