body {
    background-color: #000000;
    color: #f3f4f6;
    font-family: 'Inter', sans-serif;
    padding-top: 110px; /* space for fixed navbar */
}



/* ---------------- Gallery ---------------- */
.gallery-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: transform 0.5s, box-shadow 0.5s;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 25px -5px rgba(25, 30, 60, 0.7), 0 10px 10px -5px rgba(25, 30, 60, 0.7);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2) 30%, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ---------------- Header ---------------- */
header {
    text-align: center;
    margin-bottom: 60px;
    /* border-bottom: 1px solid #ffac05; */
    
    padding-bottom: 0px;
}

header h1 {
    margin-top: 12px;
    font-size: 3rem;
    font-weight: 800;
    color: #ffac05;
    margin-bottom: 15px;
}

header p {
    font-size: 1.25rem;
    color: #d1d5db;
}