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

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f4f4f4;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

/* Sticky Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    z-index: 1000;
}

header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
}

/* Main Section */
main {
    margin-top: 150px; /* Prevent content from hiding behind sticky nav */
}

/* Accent Text */
.highlighted-text {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

a {
    color: #333;
    text-decoration: underline;
}

/* Gallery Grid */
.gallery-grid {
    display: inline-grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    justify-content: center;
}

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

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

/* styles.css */

/* Add this section to your existing CSS */

.gallery-padding {
    padding: 20px; /* Adjust the value as needed */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Adjust size for responsive design */
    gap: 10px; /* Space between images */
}

.gallery-grid img {
    width: 100%; /* Make images responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 5px; /* Optional: rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow for depth */
}

/* styles.css */

/* Center the header content (logo and name) */
header {
    text-align: center; /* Center-aligns the content */
    margin: 20px 0; /* Adds some vertical space */
    margin-top: 0px;
}

.header-content {
    display: inline-flex; /* Aligns the logo and name horizontally */
    align-items: center; /* Vertically centers the logo and text */
    justify-content: center; /* Ensures the content is centered */
}

.logo {
    width: 40px; /* Adjust the width of the logo */
    height: auto; /* Maintain aspect ratio */
    margin-right: 15px; /* Space between the logo and your name */
}

h1 {
    margin: 0;
    font-size: 24px;
}

/* Center the navigation */
nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center; /* Center-align the navigation */
}

nav ul li {
    display: inline-block;
    margin: 0 15px; /* Add space between the menu items */
}

nav ul li a {
    text-decoration: none;
    font-size: 18px;
    color: black;
}

#gallery-text {
 margin: 20 px;
 margin-left: 100px;
 margin-right: 100px;
}

#home {
  margin: 20px !important;
  margin-left: 70px !important;
  margin-right: 70px !important;
  }
