:root {
  --bg: #f3f4f6;
  --primary: #111827;
  --accent: #3b82f6;
  --card-bg: #ffffff;
  --shadow: rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: var(--primary);
  line-height: 1.6;
}

header {
  padding: 2rem 1rem;
  text-align: center;
  background-color: var(--card-bg);
  box-shadow: 0 1px 4px var(--shadow);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.logo {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

h1 {
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--card-bg);
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px var(--shadow);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-info {
  padding: 1rem;
  text-align: center;
}

.service-info h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 500;
}

.cta-btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 1.25rem;
  background-color: var(--accent);
  color: #fff;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.cta-btn:hover {
  background-color: #2563eb; /* darker shade of accent */
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.social-links {
  margin-bottom: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  transition: color 0.2s ease;
}

.social-link:hover {
  color: var(--accent);
}

.social-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.hero {
  position: relative;
  background: url('../images/AdobeStock_228356863.jpg') center/cover no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 1rem;
}

.hero-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

.hero-btn {
  background-color: #f97316; /* orange accent */
}

.hero-btn:hover {
  background-color: #ea580c;
}

/* Gallery */
.gallery {
  padding: 3rem 1rem;
  background-color: var(--card-bg);
}

.section-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
