/* General */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

.section-bg {
  background-color: #F5F3F2; /* soft taupe */
}

.section-title {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 500;
  margin-bottom: 3rem;
  text-align: center;
  color: #7B2C3A;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url("images/sunrise.jpeg") no-repeat center center/cover;
}

.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(123, 44, 58, 0.6), rgba(245, 243, 242, 0.4));
}

.btn-primary {
  background-color: #7B2C3A;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: #8C1C3E;
}

/* Cards */
.card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.card-text {
  margin-bottom: 1rem;
  font-weight: 300;
}

.price {
  color: #8C1C3E;
  font-weight: 500;
}

/* About */
.decor-circle {
  position: absolute;
  inset: 0;
  width: 10rem;
  height: 10rem;
  background-color: #F2D7D5;
  border-radius: 50%;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
}

.profile-img {
  width: 8rem;
  height: 8rem;
  border-radius: 9999px;
  margin: 0 auto 1.5rem auto;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  position: relative;
}

/* Contact */
.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-input {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-weight: 300;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #C97C7C;
  box-shadow: 0 0 0 2px rgba(201,124,124,0.3);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
  animation: fadeIn 1s ease forwards;
}
