/* HERO */
.hero-image {
    background-image: url('hexx.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* dark overlay so text is readable */
.hero-image::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-image {
    position: relative;
}

.hero-text h1 {
    color: white;
    font-size: 80px;
    letter-spacing: 10px;
    font-family: 'Anton SC', sans-serif;
}

.hero-text p {
    color: white;
    font-size: 20px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.hero-text {
    position: relative;
    z-index: 1;
}
/* 
NAVEBAR */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 40px;
    z-index: 100;
    display: flex; 
    align-items: center;
}
nav a {
    color: white;
    text-decoration: none;
    margin-right: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

nav a:hover {
    color: #66D3FA;
}
nav span {
    margin-right: auto;
    padding-right: 20px;
}


/* .photo-banner {
    background-image: url('hexx-stage.jpg');
    background-size: cover;
    background-position: center top;
    height: 400px;
} */

/* SECTIONS */

#about, #schedule, #contact {
    scroll-margin-top: 70px;
}

#about {
    padding: 60px 40px;
    background-color: #f8f8f8;
    color: #333;
    padding: 80px 40px;
    background-image: url('hexx-stage.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

#about::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
}

#about .container {
    position: relative;
    z-index: 1;
} 

#about p, #about h2 {
    font-size: 18px;
    line-height: 1.8;
    color: white;
}

#schedule {
    padding: 60px 40px;
    background-color: #1a1a2e;
    color: white;
}

#contact {
    padding: 80px 40px;
    background-image: url('MF_crowd.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
}

#contact .container {
    position: relative;
    z-index: 1;
}

#schedule table {
    color: white;
}

#about table td {
    padding: 8px 12px;
    border: 1px solid #444;
}

#about table thead td {
    background-color: rgba(255, 255, 255, 0.15);
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    color: #66D3FA;
}


/* FOOTER */
footer {
    background-color: #0a0a0a;
    color: #999;
    text-align: center;
    padding: 30px;
}

@media (max-width: 768px) {
    #about table,
    #schedule table {
        width: 100%;
        font-size: 13px;
    }
    
    #about table td,
    #schedule table td,
    #schedule table th {
        padding: 6px 4px;
    }
}