* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #1f2937;
  background-color: #ffffff;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  color: #1f2937;
}

p {
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 24px;
  line-height: 1.6;
  color: #4b5563;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #e5e7eb;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  width: 160px;
  height: auto;
  display: block;
}

nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 700;
  font-size: 17px;
}

nav a:hover {
  color: #0f766e;
}

section {
  scroll-margin-top: 100px;
}

.hero {
  padding: 90px 40px 120px 200px;
  min-height: 80vh;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

h1 {
  font-size: 68px;
  font-weight: 600;
  max-width: 620px;
  line-height: 0.95;
  margin-bottom: 24px;
}

.hero p {
  font-size: 22px;
  max-width: 620px;
  margin-bottom: 38px;
  line-height: 1.4;
}

.button-link {
  background-color: #0f766e;
  color: white;
  padding: 16px 34px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0f766e;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
  width: fit-content;
  font-size: 18px;
  font-weight: 700;
}

.button-link:hover {
  background-color: #115e59;
  border-color: #115e59;
  color: white;
  transform: translateY(-2px);
}

.hero .button-link,
.services-button .button-link,
.contact .button-link {
  background-color: rgba(255, 255, 255, 0.35);
  color: #0f766e;
  border: 2px solid #0f766e;
  padding: 18px 60px;
  font-size: 20px;
  font-weight: 700;
}

.hero .button-link:hover,
.services-button .button-link:hover,
.contact .button-link:hover {
  background-color: #0f766e;
  color: white;
}

.hero .button-link {
  margin-left: 150px;
}

.services {
  padding: 80px 40px;
  background-color: #ffffff;
}

.services h2,
.about h2,
.gallery h2,
.contact h2 {
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
}

.services-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.services-button {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.card {
  border: 1px solid #eadfce;
  padding: 20px;
  border-radius: 16px;
  background-color: #faf7f2;
  flex: 1 1 250px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 6px 18px rgba(80, 60, 40, 0.08);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(80, 60, 40, 0.14);
}

.card h3 {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 18px;
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.card p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  max-width: 100%;
  margin-bottom: 0;
}

.about {
  padding: 80px 40px;
  text-align: center;
  background-color: #faf7f2;
}

.about h2 {
  margin-bottom: 30px;
}

.about img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}

.about p {
  max-width: 900px;
  margin: 30px auto 0;
}

.gallery {
  padding: 80px 40px;
  text-align: center;
  background-color: #ffffff;
}

.gallery-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 250px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.contact {
  padding: 100px 40px;
  background-color: #faf7f2;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.contact-left {
  flex: 1;
}

.contact-right {
  flex: 1;
}

.contact h2 {
  text-align: left;
  margin-bottom: 20px;
}

.contact-text {
  font-size: 18px;
  margin-bottom: 30px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 35px;
}

.contact-info p {
  margin: 0;
  font-size: 18px;
  color: #1f2937;
}

.contact-right iframe {
  width: 100%;
  height: 350px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(80, 60, 40, 0.12);
}

footer {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #e5e7eb;
}

footer p {
  margin: 0 auto;
  color: #1f2937;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #1f2937;
  cursor: pointer;
}

@media (max-width: 768px) {
  header {
    padding: 20px;
    position: relative;
  }

  .logo {
    width: 130px;
  }

  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 80px 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  h1 {
    font-size: 42px;
    max-width: 100%;
    line-height: 1;
  }

  .hero p {
    font-size: 20px;
    max-width: 100%;
  }

  .hero .button-link {
    margin-left: 0;
    padding: 16px 40px;
    font-size: 18px;
  }

  .services,
  .about,
  .gallery,
  .contact {
    padding: 60px 20px;
  }

  .services h2,
  .about h2,
  .gallery h2,
  .contact h2 {
    font-size: 38px;
  }

  .services-grid {
    flex-direction: column;
  }

  .gallery-grid img {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 4 / 3;
  }

  .contact-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .contact h2 {
    text-align: center;
  }

  .contact-right iframe {
    height: 300px;
  }
}
.social-links {
  margin-bottom: 35px;
}

.social-links a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #0f766e;
  color: #0f766e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #0f766e;
  color: white;
}
