@charset "utf-8";
/* CSS Document */


/* HERO */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('./../images/nighttime/IMG_exp0001.jpg') center/cover no-repeat;
    color: #fff;
    padding: 120px 20px 80px;
    margin-top: 19px;
}

/* SECTIONS */
.section {
    padding: 70px 0;
}

.section h2 {
    margin-bottom: 25px;
}

/* CARDS */
.event-card {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s;
}
.event-card:hover {
    transform: translateY(-5px);
}

/* BACKGROUND */
.highlight {
    background: #f8f8f8;
}

/* GALLERY */
.gallery img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: 0.3s;
}
.gallery img:hover {
    transform: scale(1.02);
}

/* CTA */
.cta {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}
.btn-orange {
    background: #ff7a00;
    color: #fff;
    border: none;
}

/* FIX SPACING */
ul {
    padding-left: 20px;
}