
body {
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    color: #333;
  }
  

  h1, h2, h3,
  .nav-bar a {
    font-family: 'Permanent Marker', cursive;
  }

  .nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(128, 128, 128, 0.6);
    z-index: 1000;
  }
  
  .nav-bar ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    padding: 20px;
    gap: 50px; 
  }
  
  .nav-bar a {
    color: white;
    text-decoration: none;
    font-family: 'Permanent Marker', cursive;
  }
  
  .hero {
    margin-top: 70px;
    position: relative;
  }
  
  .hero img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }
  
  .hero h1 {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    font-size: 60px; 
    font-family: 'Permanent Marker', cursive;
   
  }
  
  section {
    padding: 50px 20px;
  
  }
  
  .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .gallery img {
    width: 200px;
    height: 150px;
    object-fit: cover;
  }
  
  
  #services {
    padding: 50px 20px;
  }
  
  .services-columns {
    display: flex;
    gap: 10px;
  }
  
  .service {
    flex: 1;
    padding: 20px;
  }


  footer {
    background: black;
    color: white;
    text-align: center;
    padding: 30px 10px;
  }
  
  .social-icons a {
    color: white;
   
  }

  .scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 30px;
 
  }
  
 