/* General Page Styling for ABOUT PAGE*/
body {
    font-family: 'Futura', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #000000;
    background-color: #ffffff;
}

header {
    background: #ffffff;
    color: black;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0;
    margin-top: 1rem;
}

nav a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
    color: #f0a500;
}

/* About Intro Section */
.about-intro {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.about-intro h2 {
    text-align: center;
    font-size: 2rem;
    color: #444;
}

.about-intro p {
    margin: 1rem 0;
    text-align: justify;
    font-size: 1.1rem;
    color: #555;
}

/* Gallery Section */
.about-gallery {
    margin: 2rem auto;
    padding: 1rem;
    text-align: center;
}

.about-gallery h2 {
    font-size: 2rem;
    color: #444;
    margin-bottom: 1rem;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.gallery-item {
    width: calc(50% - 1rem);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: white;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}

.gallery-item img {
    width: 30%;
    height: auto;
    display: block;
    border-bottom: 1px solid #ddd;
    object-fit: cover;
}

.gallery-item p {
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #666;
    padding: 0 1rem;
}

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

/* Footer */
footer {
    text-align: center;
    background: #ffffff;
    color: black;
    padding: 1rem 0;
    margin-top: 2rem;
}
