@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@100;300;400;700&display=swap');

body {
    font-family: 'Unybody Pro', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #ffffff;
    color: #000;
    padding: 10px 0;
    text-align: center;
    font-size: 2em;
    font-family: 'Libre Franklin', serif;
}

/* Applying Unybody Pro font to the h1 element */
h1 {
    font-family: 'Unybody Pro', Arial, sans-serif; /* Ensure this is correctly applied */
    font-size: small; /* Adjust size if needed */
    margin: 10px;
    color: #000;
}

.intro {
  text-align: center;
  margin: 5px auto;
  max-width: 800px;
  padding: 5px;
}
.intro p {
  font-family: 'Libre Franklin', serif;
  font-size: 1.2em;
  color: #333;
}


nav {
    background-color: rgba(0, 0, 0, 0); /* Fully transparent */
    overflow: hidden;
}

/* Resize the image */
nav img {
    width: 150px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional: adds rounded corners */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 0 10px;
}

nav ul li a {
    color: #f8f6ff;
    text-decoration: none;
    padding: 5px 10px;
    font-family: 'Libre Franklin', serif;
    transition: text-shadow 0.3s ease; /* Smooth transition for glow effect */
}

nav ul li a:hover {
    background-color: #ffffff;
    color: #000000;
   
    text-shadow: 7px 7px #3f3f3f;
}

.gallery-container {
    flex: 1; /* Takes up remaining space */
    overflow-y: auto; /* Enables vertical scrolling */
    padding: 10px;
    border: 2px solid #ccc; /* Creates a clear frame */
    border-radius: 10px; /* Rounded corners */
    margin: 10px;
    background: #f9f9f9; /* Light background for contrast */
    scroll-behavior: smooth; /* Smooth scrolling */
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    margin-bottom: 100px;
}

.gallery img {
    width: 100%;
    max-width: 200px;
    height: auto;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s;
    object-fit: cover;
}

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

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    text-align: center;
}

.modal img {
    max-height: 80%;
    max-width: 80%;
    border-radius: 10px;
}

.modal .caption {
    color: #fff;
    font-family: 'Libre Franklin', serif;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    border-radius: 5px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
}

.modal p {
    color: #fff;
    margin-top: 10px;
    font-family: 'Libre Franklin', serif;
}

.modal span {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

    /* Footer styles */
    footer {
        background-color: #000000;
        color: #fff;
        padding: 20px 0;
        text-align: center;
      }
      
      footer .container {
        max-width: 1200px;
        margin: auto;
        padding: 0 20px;
      }
      
      footer .container .footer-section {
        flex: 1 1 300px;
        margin-bottom: 20px;
      }
      
      footer h4 {
        margin-bottom: 15px;
      }
      
      footer p, footer a {
        color: #ccc;
        line-height: 1.6;
        text-decoration: none;
      }
      
      footer a:hover {
        color: #fffd6b;
      }
      
      footer ul {
        list-style-type: none;
        padding: 0;
      }
      
      footer ul li {
        margin-bottom: 10px;
      }
      
      footer hr {
        border: 1px solid #00ffea;
      }
      
      footer .social-links a {
        color: #fff;
        margin-right: 10px;
        text-decoration: none;
      }
      
      footer .social-links a:hover {
        color: #ea00ff;
      }
    
/* Mobile Styles */
@media (max-width: 768px) {
    .gallery {
        display: flex;
        flex-direction: row; /* Vertical scrolling layout for mobile */
        align-items: center;
        gap: 10px;
        padding: 20px;
        margin-bottom: 100px;
    }

    .gallery img {
        width: 90%; /* Ensures images fit well on small screens */
        max-width: 400px;
    }
}