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

body {
  font-family: 'Poppins', sans-serif;
  background: #fff0f5;
  color: #5c1a1b;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff0f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
}

.preloader-logo {
  width: 150px;
  animation: fadeIn 1.5s ease-in-out;
}

.spinner {
  margin-top: 20px;
  width: 30px;
  height: 30px;
  border: 3px solid #d4a3a3;
  border-top: 3px solid #5c1a1b;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hero */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(255,240,245,0.8), rgba(255,240,245,0.8)), url('https://source.unsplash.com/1600x900/?makeup') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 10px 0 20px;
}

.btn {
  background-color: #5c1a1b;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s;
}

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

/* Section Styling */
section {
  padding: 60px 20px;
  text-align: center;
}

.container {
  max-width: 1000px;
  margin: auto;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.card {
  background: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 200px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
}

footer {
  background: #5c1a1b;
  color: #fff;
  padding: 20px 0;
}