* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 20px 0;
}

/* Hero Header */
.hero {
  background: url('images/Front.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.4em;
  margin-bottom: 20px;
}

.btn {
  background-color: #ffcc00;
  color: #111;
  padding: 12px 24px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e6b800;
}

/* Services */
.services {
  background: #fff;
  padding: 60px 0;
}

.services h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-item {
  flex: 1 1 250px;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.service-item h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}

/* About */
.about {
  background-color: #1e1e1e;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.about h2 {
  color: #ffcc00;
  margin-bottom: 20px;
}

/* Gallery */
.gallery {
  background-color: #fff;
  padding: 60px 0;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 30px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 15px;
}

.image-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.05);
}

/* Contact */
.contact {
  background-color: #1e1e1e;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.contact h2 {
  color: #ffcc00;
  margin-bottom: 20px;
}

.contact a {
  color: #ffcc00;
  text-decoration: none;
}

.contact .hours {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.hero-small {
  background-color: #1e1e1e;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.about-page {
  background-color: #fff;
  color: #333;
  padding: 60px 20px;
}

.about-page h2,
.details h2 {
  text-align: center;
  color: #ffcc00;
  margin-bottom: 20px;
}

.about-page p {
  max-width: 900px;
  margin: 20px auto;
  font-size: 1.1em;
  line-height: 1.6;
}

.details {
  background-color: #f0f0f0;
  padding: 50px 20px;
}

.details ul {
  max-width: 800px;
  margin: auto;
  font-size: 1.05em;
  list-style: none;
  padding-left: 0;
}

.details ul li {
  margin-bottom: 10px;
}

.details .hours {
  margin-top: 5px;
  margin-left: 20px;
}


/* Footer */
footer {
  background-color: #111;
  text-align: center;
  color: #aaa;
  padding: 20px 0;
  font-size: 0.9em;
}
