/* selfies.css - Styles for Selfies Section */

/* Merchandise Selfies: */
.container {
    font-family: Arial, sans-serif;
    margin: 20px auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.selfie-list {
    margin-top: 10px;
}

/* Fancy glow effect for selfies section boxes */
.selfie {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    max-width: 800px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(128, 0, 128, 0.4); /* Purple glow */
    background-color: #fff;
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

.selfie:hover {
    transform: translateY(-5px); /* Lift on hover */
    box-shadow: 0 0 20px rgba(128, 0, 128, 0.6); /* Brighter purple glow on hover */
}

.selfie img {
    width: 100px;
    height: auto;
    margin-right: 20px;
}
.selfie p {
    margin: 0;
    color: #666;
}
h1 {
    text-align: center;
    color: #333;
    margin: 10px 0;
}
.redirect-button {
    margin: 20px auto; /* Center the button horizontally */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: block; /* Ensure it's displayed as a block element for margin auto to work */
}

.redirect-button:hover {
    background-color: #0056b3;
}
/* Popup image styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 5px;
}

.popup:target {
    display: flex;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
}

.close-btn:hover {
    background-color: #ddd;
}