:root {
  --primary-color: #d4a5a5; /* Dusty Rose */
  --secondary-color: #f9f7f2; /* Cream White */
  --text-color: #5e4b4b; /* Warm Dark Grey */
  --heading-font: "Playfair Display", serif;
  --body-font: "Lato", sans-serif;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  color: var(--text-color);
  background-color: var(--secondary-color);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: var(--heading-font);
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}

.hamburger {
  display: none;
  cursor: pointer;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--text-color);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn:hover {
  background-color: #c08e8e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 165, 165, 0.4);
}

.btn-outline {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid var(--text-color);
  color: var(--text-color);
  border-radius: 50px;
  transition: var(--transition);
}

.btn-outline:hover {
  background-color: var(--text-color);
  color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-padding {
  padding: 4rem 0;
}

.hero {
  height: 80vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../images/new/Model\ liggend\ \(homepage\).jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.page-header {
  background-color: #f0ebeb;
  padding: 4rem 0;
  text-align: center;
}
.page-header h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}
.intro-text p {
  margin-bottom: 1.5rem;
  color: #777;
}
.intro-image img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 10px 10px 0 var(--primary-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
}
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-content {
  padding: 2rem;
  text-align: center;
}
.card-content h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.card-content p {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1rem;
}
.price {
  font-weight: bold;
  font-family: var(--heading-font);
  font-size: 1.2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 5px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* Team */
.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}
.team-member {
  text-align: center;
  max-width: 300px;
}
.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 3px solid var(--primary-color);
}
.role {
  color: var(--primary-color);
  font-style: italic;
  margin-bottom: 0.5rem;
}

/* Contact */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info p {
  margin-bottom: 1rem;
}
.embed-map-fixed {
  width: 100%;
  height: 250px;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  margin-top: 2rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  background: #fafafa;
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Footer */
footer {
  background-color: white;
  text-align: center;
  padding: 2rem;
  border-top: 1px solid #eee;
  font-size: 0.85rem;
  color: #999;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  } /* Simplified for this demo */
  .hamburger {
    display: block;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .intro-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .intro-image {
    order: -1;
  }
}
