    /* Reset and base styles */
    * {
      box-sizing: border-box;
    }

    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: Verdana, sans-serif;
      font-size: 62.5%; /* 1rem = 10px */
    }

    body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      font-size: 1.1rem;
    }

.scaled-site {
  transform: scale(0.8);       /* 80% size */
  transform-origin: top left;  /* keeps it anchored to the top-left */
  width: 125%;                 /* counteract shrinking so layout doesn’t cut off */
}

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 1.6rem;
    }

    /* Targeting the second .container class  */
    .container:nth-child(2) {
        padding: 1.6rem;
      }

    header {
      padding: 2rem 0;
    }

    header .container {

      background: #ffffff;
      background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(245, 245, 245, 1) 50%, rgba(255, 255, 255, 1) 100%);
      color: #545454;
      padding: 2rem;
      border-radius: 0.5rem;
      text-align: center;
    }

    main {
      flex: 1;
      margin-bottom: 5rem;
    }

    main .container {
      background: white;
      padding: 2rem;
      border-radius: 0.5rem;
    }

    /* Navigation Bar */

    .topnav {
      overflow: hidden;
    }

    .topnav a {
      float: left;
      display: block;
      color: #858585;
      text-align: center;
      padding: 0rem 1.6rem;
      text-decoration: none;
      font-size: 1.7rem;
      border-right: 0.125rem solid #000;
      transition: border-color 0.3s ease;
    }

    .topnav a.no-border {
      border-right: none;
    }

    .topnav a:hover {
      color: #e10000;
    }

    .topnav a.activeNav {
      color: #232323;
    }
    
    #activeNav {
      color: #232323;
    }

    .topnav .icon i {
      color: black;
    }

    .topnav .icon {
      display: none;
    }

    @media screen and (max-width: 600px) {
      .topnav a:not(:first-child),
      .topnav .activeNav {
        display: none;
        border-right: none;
      }

      .topnav a.icon {
        float: right;
        display: block;
      }

      .topnav.responsive {
        position: relative;
      }

      .topnav.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
      }

      .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
        border-right: none;
      }
    }


/* This is for the navigation menu when viewed on a smart phone */
@media screen and (max-width: 600px) {
    
html {
  -webkit-text-size-adjust: 100%;
}    
    
    
  .topnav a:not(:first-child),
  .topnav a.activeNav {
    display: none;
    border-right: none;
  }

  .topnav a.icon {
    float: right;
    display: block;
  }

  .topnav.responsive {
    position: relative;
    flex-direction: column; /* stack links */
    align-items: flex-start;
  }

  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }

  .topnav.responsive a {
    display: block;
    text-align: left;
    border-right: none;
  }

 .topnav a {
    font-size: 4rem !important; /* makes the font size bigger */
  }

}
/* End of navigation menu when viewed on a smart phone */
 







    /* Start of Slideshow ----------------------------------*/
    .mySlides {
      display: none;
      position: relative;
    }

    img {
      vertical-align: middle;
    }

    .slideshow-container {
      width: 80rem; /* controls size of slider */
      max-width: 100%;
      position: relative;
      margin: 2rem auto;
    }

    .slideshow-container img {
      display: block;
      max-width: 100%;
      margin: auto;
    }

    .prev,
    .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      padding: 1.6rem;
      margin-top: -2.2rem;
      color: white;
      font-weight: bold;
      border-radius: 0 0.3rem 0.3rem 0;
      user-select: none;
      background-color: rgba(0, 0, 0, 0.3);
    }

    .next {
      right: 0;
      border-radius: 0.3rem 0 0 0.3rem;
    }

    .prev:hover,
    .next:hover {
      background-color: rgba(0, 0, 0, 0.8);
    }

    .textCaption {
      color: #f2f2f2;
      padding: 0.8rem 1.2rem;
      position: absolute;
      bottom: 0.8rem;
      width: 90%;
      text-align: center;
      left: 50%;
      transform: translateX(-50%);
      /*background: rgba(0, 0, 0, 0.4);*/
      background: linear-gradient(90deg,rgba(255, 255, 255, 0.01) 15%, rgba(0, 0, 0, 1) 50%, rgba(255, 255, 255, 0.01) 85%);
      border-radius: 0.5rem;
      font-size: 1.1rem;
    }

    .numbertext {
      color: #f2f2f2;
      font-size: 1.2rem;
      padding: 0.8rem 1.2rem;
      position: absolute;
      top: 0;
      left: 0;
      background: rgba(0, 0, 0, 0.4);
      border-radius: 0 0 0.5rem 0;
    }

    .dot {
      cursor: pointer;
      height: 1.5rem;
      width: 1.5rem;
      margin: 0 0.2rem;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.6s ease;
    }

    .active,
    .dot:hover {
      background-color: #717171;
    }

    .fade {
      animation-name: fade;
      animation-duration: 1.5s;
    }

    @keyframes fade {
      from { opacity: 0.4; }
      to { opacity: 1; }
    }

    /* Footer (no longer fixed) */
    footer {
      width: 100%;
    }

    footer .container {
      /*background: #222;*/
      color: #ddd;
      padding: 1.6rem;
      text-align: center;
      border-radius: 0.5rem 0.5rem 0 0;
    }

    .logo {
      font-size: 2rem;
      color: #ffffff;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .social-icons {
      margin: 1rem 0 2rem;
    }

    .social-icons a {
      color: #ccc;
      font-size: 1.5rem;
      margin: 0 10px;
      display: inline-block;
      padding: 10px;
      background-color: #1a1a1a;
      border-radius: 50%;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .social-icons a:hover {
      background-color: #1da1f2;
      color: white;
      transform: scale(1.1);
    }

    .footer-nav {
      list-style: none;
      padding: 0;
    }

    .footer-nav li {
      display: inline-block;
      margin: 0 1.5rem;
    }

    .footer-nav a {
      color: #bbb;
      text-decoration: none;
      font-size: 1.1rem;
      transition: color 0.3s;
    }

    .footer-nav a:hover {
      color: #1da1f2;
    }

    .footer p {
      font-size: 0.9rem;
      color: #888;
    }

    @media (max-width: 600px) {
      .footer-nav li {
        display: block;
        margin: 10px 0;
      }

      .social-icons a {
        margin: 0.5rem;
      }

      .logo {
        font-size: 1.5rem;
      }
    }

    /* Optional column demo layout */
    .column-layout {
      display: flex;
      gap: 2rem;
    }

    .column {
      flex: 1;
      background: #eee;
      padding: 1.6rem;
      border-radius: 0.5rem;
      text-align: center;
    }

    @media (max-width: 768px) {
      .column-layout {
        flex-direction: column;
      }
    }


/* -- end of frist css from home -- */

/* Start of css from about page  */



@media screen and (max-width: 600px) {
  .topnav a {
    display: none;
    float: none;
    text-align: left;
    border-right: none;
  }

  .topnav a.icon {
    display: block;
    float: right;
  }

  .topnav.responsive {
    position: relative;
  }

  .topnav.responsive a {
    display: block;
  }

  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
}

    @media screen and (min-width: 600px) {
      .topnav {
        display: flex;
        justify-content: center;
      }
    }

    .filter-buttons {
      text-align: center;
      margin: 2rem 0;
    }

    #filter-btns {
      list-style: none;
      padding: 0;
      display: inline-block;
    }

    #filter-btns li {
      display: inline-block;
      padding: 0.8rem 1.6rem;
      background: #eee;
      margin: 0.5rem;
      border-radius: 0.5rem;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.3s;
    }

    #filter-btns li.active,
    #filter-btns li:hover {
      background: #333;
      color: white;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      justify-content: center;
      max-width: 80rem;
      margin: 0 auto;
    }

    .gallery-item img {
      width: 100%;
      height: auto;
      border-radius: 0.5rem;
      display: block;
      object-fit: cover;
      padding: 1rem;
    }

    @media (max-width: 1024px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .gallery-grid {
        grid-template-columns: 1fr;
      }
    }



/* About section */

 .about-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #333;
      max-width: 90rem;
      margin: 0 auto;    
  }

.about-block {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #ddd;
  }

  .about-block:last-child {
    border-bottom: none; /* No line after the last one */
  }

  .about-block.reverse {
    flex-direction: row-reverse;
  }

  .about-block img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
  }

  .about-text {
    flex: 1;
  }

  @media (max-width: 768px) {
    .about-block,
    .about-block.reverse {
      flex-direction: column;
    }

    .about-block img {
      margin: 0 auto;
    }
  }
 /* End About section */



     /* Contact form */

    .contact-section {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 0.5rem;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-section p {
  text-align: center;
  margin-bottom: 2rem;
  color: #444;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1rem;
  width: 100%;
  resize: vertical;
}

.contact-form button {
  background-color: #333;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #e10000;
}


    /* End of contact form */






/* Hover zoom effect */
.gallery-item img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Start of the light box */
    .lightbox {
      position: fixed !important;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      display: none;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,0.9);
      z-index: 99999;
      overflow: hidden;
    }
    .lightbox img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      border-radius: 0.5rem;
      box-shadow: 0 0 30px rgba(0,0,0,0.8);
    }
    .lightbox-close {
      position: absolute;
      top: 18px;
      right: 28px;
      font-size: 2.2rem;
      color: #fff;
      text-decoration: none;
      user-select: none;
    }
    /* Navigation arrows */
    .lightbox-prev,
    .lightbox-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 3rem;
      color: white;
      text-decoration: none;
      background: rgba(0,0,0,0.3);
      padding: 0.5rem 1rem;
      border-radius: 0.3rem;
      cursor: pointer;
      user-select: none;
    }
    .lightbox-prev:hover,
    .lightbox-next:hover {
      background: rgba(0,0,0,0.6);
    }
    .lightbox-prev { left: 20px; }
    .lightbox-next { right: 20px; }
/* End of the light box */    
