body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Header */
header {
  background: #000;
  color: #fff;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: url('images/photo2.jpg') no-repeat center/cover;
  color: black;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero .btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #ff6600;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* Gallery */
.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  padding: 2rem;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
}

/* Pricing + Contact */
.pricing, .contact {
  padding: 2rem;
  text-align: center;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
}

.footer-logo {
  height: 40px;
  margin-bottom: 0.5rem;
}





