/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    background-color: #333;
    font-family: "Francois One", sans-serif;
  }
  
  /* Navbar Styles */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #333;
  }
  
  .navbar-title {
    font-size: 24px;
    color: #fff;
  }
  
  .navbar-links {
    list-style-type: none;
  }
  
  .navbar-links li {
    display: inline;
    margin-left: 20px;
  }
  
  .navbar-links a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
  }
  
  .navbar-links a:hover {
    color: #ddd;
  }
  
  /* Hero Section */
  .hero-image {
    background-image: linear-gradient(to bottom, rgba(245, 246, 252, 0), #333333), url("./img/IMG_0065.jpg");
    height: 60%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  
  .hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
  }
  
  .hero-text h1 {
    font-size: 350%;
  }

  .hero-text p {
    margin-top: 5%;
    font-size: x-large;
  }

  .hero-text button {
    margin-top: 5%;
    width: 40%;
    font-size: xx-large;
    font-family: "Francois One", sans-serif;
    border-radius: 5vh;
    border: black 3px solid;
    color: white;
    background-color: black;
  }

  button:hover {
    background-color: white;
    color: black;
    border: white 3px solid;
  }

  .about-container {
    width: 80%;
    text-align: center;
    color: white;
    margin: auto;
    margin-top: 10%;
  }

  .grid-container {
    text-align: center;
    color: white;
    margin-top: 10%;
  }

      /* Basic Reset */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
  
      body {
        font-family: Arial, sans-serif;
      }
  
      /* Container for the entire section */
      .grid-container {
        padding: 20px;
        text-align: center;
        background-color: azure;
        padding-top: 10%;
        padding-bottom: 10%;
      }
  
      .grid-container h1 {
        font-size: 32px;
        color: white;
      }
  
      .grid-container h2 {
        font-size: 32px;
        color: black;
      }

      /* Image Grid */
      .image-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
        margin: auto;
        width: 45%;
        height: 100%;
        padding: 10px;
        text-align: center;
        
      }
  
      /* Each Category Item */
      .image-item {
        position: relative;
        width: 100%;
        height: 200px; /* Adjust height as needed */
        text-decoration: none;
        color: white;
        overflow: hidden;
        display: flex;
        text-align: center;
        align-items: center;
        justify-content: center;
        background-size: cover;
        background-position: center;
        transition: transform 0.3s ease;
        
      }
  
      .image-item:hover {
        transform: scale(1.05);
      }
  
      /* Text Overlay */
      .image-item h1 {
        font-size: 24px;
        background-color: rgba(0, 0, 0, 0.6);
        padding: 10px 20px;
        border-radius: 5px;
      }
  

      .contact-container {
        text-align: center;
        color: white;
        margin-top: 10%;
      }


  /* Footer */
  footer {
    margin-top: 10%;
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .footer-contact {
    font-size: 16px;
  }
  
  .footer-social {
    list-style: none;
    display: flex;
    gap: 15px;
  }
  
  .footer-social a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-social a:hover {
    color: #ddd;
  }
  
  .footer-copyright {
    font-size: 14px;
    color: #bbb;
  }
  
  .header {
    margin-top: 5%;
    margin-bottom: 5%;
    text-align: center;
    padding: 5%;
    color: white;
  }

  .header p {
    margin-top: 4%;
    margin-bottom: 2%;
  }
  
  .row {
    display: -ms-flexbox; /* IE 10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE 10 */
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
  /* Create two equal columns that sits next to each other */
  .column {
    -ms-flex: 50%; /* IE 10 */
    flex: 50%;
    padding: 0 4px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
  }
  
  /* Style the buttons */
  .btn {
    border: none;
    outline: none;
    padding: 10px 16px;
    background-color: #f1f1f1;
    cursor: pointer;
    font-size: 18px;
  }
  
  .btn:hover {
    background-color: #ddd;
  }
  
  .btn.active {
    background-color: #666;
    color: white;
  }