@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --primary-purple: #7B2E76;
  --primary-light: #9f4999;
  --secondary-grey: #6F6F6F;
  --bg-dark: #121212;
  --bg-light: #F9F9F9;
  --text-dark: #333333;
  --text-light: #FFFFFF;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-purple);
  font-weight: 600;
}

/* Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary-grey);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span { color: var(--primary-purple); }

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--secondary-grey);
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover { color: var(--primary-purple); }

.btn-primary {
  background-color: var(--primary-purple);
  color: var(--text-light);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-purple);
  border: 1px solid var(--primary-purple);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: var(--primary-purple);
  color: var(--text-light);
}

/* Hero Section */
.hero {
  height: 80vh;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-light);
  padding: 0 20px;
}

.hero h1 {
  color: var(--text-light);
  font-size: 4rem;
  margin-bottom: 20px;
  max-width: 800px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 300;
}

/* Services */
.section { padding: 80px 10%; }
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-purple);
  margin: 15px auto 0;
}

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

.card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.card:hover { transform: translateY(-10px); }

.card-img {
  height: 200px;
  background-color: var(--secondary-grey);
  background-size: cover;
  background-position: center;
}

.card-content { padding: 30px; }
.card-title { font-size: 1.5rem; margin-bottom: 15px; }
.card-text { color: var(--secondary-grey); margin-bottom: 20px; }

/* Quote Box */
.quote-container {
  max-width: 800px;
  margin: 50px auto;
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border-top: 5px solid var(--primary-purple);
}

.quote-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.quote-price {
  font-size: 2rem;
  color: var(--primary-purple);
  font-weight: 600;
}

.quote-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px dashed #eee;
}

.quote-total {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: 600;
  border-top: 2px solid var(--secondary-grey);
}

/* Footer */
footer {
  background-color: var(--secondary-grey);
  color: white;
  padding: 50px 10%;
  text-align: center;
}
footer h3 { color: white; margin-bottom: 20px; }
footer a { color: #ccc; text-decoration: none; margin: 0 10px; }
footer a:hover { color: white; }
