/* Single Photo Container */
.single-photo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 40px 0;
    padding: 20px;
    box-sizing: border-box;
}

.single-photo {
    width: 900px;
    height: 600px;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.single-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.single-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.single-photo:hover img {
    transform: scale(1.03);
}

/* Responsive adjustments */
@media (max-width: 1240px) {
    .single-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 1200/630;
    }
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    animation: fadeIn 0.3s;
}

.lightbox-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 4px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close:hover {
    color: #ccc;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
* General Layout */
body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header adjustments */
.header {
    margin-bottom: 0;
}

/* Main content area */
.about-main {
    padding: 20px;
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

.about-main h1 {
    margin-top: 0;
    padding-top: 20px;
}

.about-main p {
    margin: 15px 0;
} 
/* Footer styles */
footer {
    background-color: #f8f9fa;
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid #e9ecef;
}

.list-inline {
    padding: 0;
    list-style: none;
    margin-bottom: 20px;
}

.list-inline-item {
    display: inline-block;
    margin: 0 15px;
}

.list-inline-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s;
}

.list-inline-item a:hover {
    color: #343a40;
    text-decoration: underline;
}

.copyright {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

/* Footer styling */
.site-footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

/* If you have a photo in the about page */
.about-photo {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    display: block;
}

.random {
    display :flex; 
    flex-direction: column;
    justify-content:space-between;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.about-content h1 {
    margin-bottom: 20px;
    width: 100%;
}

.about-content p {
    width: 100%;
    line-height: 1.6;
    margin: 0 auto;
}

