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

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f7f7f7;
}

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

header {
  background: #000;
  color: #fff;
  padding: 0.7rem 0; /* Reduced height */
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  float: left;
  font-size: 1.5rem;
}

.nav-links {
  float: right;
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #0af;
}

/* Hamburger visible on mobile */
.hamburger {
  display:contents;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
  z-index: 2000;
}



@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #111;
    position: absolute;
    top: 60px; /* adjust if header height changes */
    right: 0;
    width: 100%;
    padding: 0.5rem 0;
    border-top: 1px solid #333;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

.nav-links li {
  padding: 0.5rem 0;
}


  .hamburger {
    display: block;
  }

  nav {
    position: relative;
  }
}


.hero {
  background: url('Images/IMG_8538 copy.jpg') no-repeat center center/cover;
  color: #fff;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
    color: rgb(227, 18, 18);
}

.section {
  padding: 4rem 0;
}

.about-image {
  text-align: center;
  margin: 1.5rem 0;
}

.about-image img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

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

.gallery img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.services-list {
  list-style: none;
  font-size: 1.1rem;
  padding-left: 1rem;
}

.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background: #000;
  color: #fff;
  padding: 0.8rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #0af;
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  header h1,
  .nav-links {
    float: none;
    text-align: center;
  }
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }
}
