/* Body styling */
body {
    overflow-x: hidden;
    font-family: 'Century Gothic', sans-serif;
    background-image: url('../img/geometry.jpg'); /* Make sure this path is correct */
    background-size: cover;
    background-attachment: fixed;
}

/* Main container for slideshow and metadata */
#photoBooth {
    padding: 25px;
    max-width: 500px;
    width: 90%;
    margin: auto;
    background-color: rgba(255, 123, 123, 0.9);
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Image holder */
.photoHolder {
    width: 100%;
    text-align: center;
}

/* Slideshow image */
.thumbnail {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Banner styling */
.banner {
    font-size: 2rem;
    font-weight: bold;
    color: #a70000;
}

/* 'More Content' icon */
.moreIndicator {
    height: 50px;
    width: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Navigation buttons */
#nav img {
    height: 50px;
    width: 50px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

/* Metadata details */
.details {
    border: 1px dashed #ff8787;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
    color: #333;
    font-size: 1rem;
}

/* Each paragraph in details */
.details p {
    margin: 10px 0;
}

/* Rotate icons */
.rot90 {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.rot180 {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.rot270 {
    transform: rotate(270deg);
    transition: transform 0.3s ease;
}