/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

h1 {
  color: #e06666;   /* Red tone from your logo */
  font-size: 2.5rem;
}

h2 {
  color: #333;      /* Dark grey */
  font-size: 2rem;
}

h3 {
  color: #555;      /* Slightly lighter grey */
  font-size: 1.5rem;

}

/* Header */
header {
  background: #222;
  padding: 10px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-height: 60px;
}

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

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #e06666;
}

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

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  margin: 15px 0;
  font-size: 1.2rem;
}

.btn {
  background: #e06666;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
}

.btn:hover {
  background: #c55555;
}

/* About */
.about {
  padding: 60px 0;
  text-align: center;
}

/* Services */
.services {
  background: #f9f9f9;
  padding: 60px 0;
}

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

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

/* Contact */
.contact {
  padding: 60px 0;
  text-align: center;
}

.contact ul {
  list-style: none;
  padding: 0;
}

.contact li {
  margin: 10px 0;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  padding: 15px 0;
  text-align: center;
  font-size: 0.9rem;
}
