/* ====== Global Styles ====== */
* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

#panel{
    align-content: center;
    position: absolute;
    z-index: 10;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #262626;
    transition: all 1.2s;
}

body {
    font-family: Arial, sans-serif;
    background-color: #262626;
    color: #8C8B8C;
    line-height: 1.6;
    text-align: center;
}

/* ====== Header Section ====== */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color:#0D0C0D ;
    padding: 20px;
}

header h1 {
    font-size: 36px;
    text-transform: uppercase;
    color: #D9D9D9;
}

/* ====== Navigation ====== */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 10px;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #d1d1d1;
}

/* ====== Full-Width Skinny Banner ====== */
.banner {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ====== Sections Styling ====== */


section h2 {
    font-size: 30px;
    color: white;
    margin-bottom: 10px;
}

section h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

section h4 {
    font-size: 20px;
    margin: bottom 10px;
    text-align: center;
}

section p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: left;
}

/* ====== Image Grid Styles ====== */
.image-grid {
    display: grid; /* Turns it into a grid */
    grid-template-columns: repeat(3, 1fr); /* Creates 3 equal columns */
    gap: 20px; /* Adds space between items */
    margin-top: 20px; /* Adds space above */
}

.image-grid-shotlist {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    grid-template-rows: 1fr 1fr;
}

/* ====== Figure Styles ====== */
figure {
    overflow: hidden;
    height: 300px;
    position: relative;
    border-radius: 8px;
}

figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

figure img:hover {
    transform: scale(1.05);
}

figcaption {
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
    color: #ccc;
}

footer {
    position: relative;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-top: 20px; /* Adds space between content and footer */
}

/* ====== Responsive Design ====== */
@media screen and (max-width: 768px) {
    nav ul {
        gap: 10px;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    section {
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {
    nav ul {
        flex-direction: column;
        gap: 5px;
    }

    .image-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ====== Smooth Scrolling ====== */
html {
    scroll-behavior: smooth;
}

