/* CSS Reset (optional, but recommended) */



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and Global Styles */
body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header .logo {
  font-size: 1.5rem;
  font-family: "Playfair Display", serif;
  font-weight: bold;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #e8719d; /* Accent color */
}

/* Hero Section */
.hero {
  height: 80vh;
  background: url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #666;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #e8719d;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #d85a8a;
}

/* Services Section */
.services {
  padding: 60px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.services h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* About Section */
.about {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-content img {
  width: 100%;
  border-radius: 8px;
}

.about-content p {
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  padding: 60px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.contact h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Footer */
.footer {
  background-color: #fff;
  text-align: center;
  padding: 20px;
  border-top: 1px solid #eee;
}

.footer p {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 60vh;
  }
}


.hidden {display:none;}
