/* ───────── Hamburger Button ───────── */
#hamburger {
    width: 30px;
    height: 22px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4px 0;
}

#hamburger span {
    display: block;
    height: 4px;
    background-color: white;
    border-radius: 2px;
    width: 100%;
    transition: all 0.3s ease;
}

.important-message {
    color: #b22222;
    font-weight: bold;
    margin-top: 1.5rem;
}

/* ───────── Card Component ───────── */
.card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
}

/* ───────── Image Container ───────── */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    min-width: auto;
    margin: 0 auto;
    justify-items: center;
}

.image-list {
    width: 100% !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: visible !important;
    float: none;
    z-index: 1;
}

.image-list img {
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 10;
}

.image-list img:hover {
    box-shadow:
        0 0 15px 5px white,
        0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 11;
}

.image-container {
    float: right;
    width: 40vw;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.image-container img {
    display: block;
    width: 100%;
    height: auto;
}

.image-container-wide {
    width: 100%;
    max-width: 800px;
    /* adjust as needed */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem auto;
    /* centers it in its parent */
}

.image-container-wide img {
    display: block;
    width: 100%;
    height: auto;
}

.section-container::after {
    content: "";
    display: table;
    clear: both;
}

/* ───────── Lightbox Styling ───────── */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* The expanded image */
.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 15px #000;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
}

/* Close button */
.lightbox .close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    user-select: none;
}

/* ───────── Button Styling ───────── */
.btn {
    display: inline-block;
    background-color: #6b008b;
    color: #f0f0f0;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    user-select: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.btn:hover,
.btn:focus {
    background-color: #00ac09;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.4);
    outline: none;
}

.btn:active {
    background-color: #ff0000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}