/* ========== Base Setup ========== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  background-color: #fff;
  color: #000;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

/* ========== Header / Logo ========== */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  background-color: #fff;
  border-bottom: 1px solid #eaeaea;
}

header .logo {
  max-width: 450px;
  height: auto;
}

/* ========== Navigation Bar ========== */
nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  background-color: #000;
  padding: 15px 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

nav a:hover {
  opacity: 0.6;
}

/* ========== Hero Section ========== */
#hero {
  background-image: url('IMG_3530.png');
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 50px;
}

.hero-text {
  background-color: rgba(255, 255, 255, 0.85);
  color: #000;
  padding: 25px 40px;
  border-radius: 8px;
  max-width: 60%;
  text-align: center;
}

.hero-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.hero-text a {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.hero-text a:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

/* ========== Contact Section ========== */
.contact-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background-color: #fff;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #eaeaea;
  width: 100%;
  max-width: 600px;
}

.contact-form h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
}

.contact-form label {
  font-weight: bold;
  margin-top: 20px;
  display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 8px;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
}

.contact-button {
  background-color: #000;
  color: #fff;
  padding: 14px 30px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 30px;
  transition: all 0.3s ease;
}

.contact-button:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

/* ========== Footer ========== */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* ========== Services ========== */
.services {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
}

.service-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: scale(1.01);
}

.icon-wrapper img {
  width: 100px;
  height: 100px;
  transition: transform 0.3s ease;
}

.icon-wrapper:hover img {
  transform: scale(1.05);
}

.service-info {
  max-width: 500px;
  text-align: left;
}

.service-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-info p {
  font-size: 1rem;
  line-height: 1.6;
}

.service-button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.service-button:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  header .logo {
      max-width: 180px;
  }

  nav {
      flex-direction: column;
      gap: 15px;
  }

  .hero-text {
      max-width: 90%;
      padding: 20px;
  }

  .service-card {
      flex-direction: column;
      text-align: center;
  }

  .icon-wrapper img {
      width: 80px;
      height: 80px;
  }

  .service-info {
      text-align: center;
  }

  .contact-form {
      padding: 25px;
  }
}
