/* General Styling*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

i {
    overflow-y: hidden;
}

body {
    font-family: "Aclonica", serif;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
}


/* Header Styling*/
header {
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #1e2535 0%, #966964 50%, #FEA364 100%);
}

header h1 {
    color: white;
    font-size: 4rem;
    margin-top: 10%;
    margin-left: 5%;
}

header h2 {
    color: white;
    font-size: 2rem;
    margin-left: 5%;
}

.road {
    position: absolute;
    width: 100%;
    height: 20vh;
    bottom: 0;
    background-color: #1d1b1b;
}

.header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    margin-left: 5%;
    height: 50%;
    margin-top: 0;
}

#bus {
    position: absolute;
    bottom: 5vh;
    left: 0;
    z-index: 10;
    width: 600px;
    height: auto;
    animation: bus 10s linear infinite;
    overflow: hidden;
}

#bus-stop {
    width: 350px;
    height: auto;
    bottom: 75px;
    position: absolute;
    right: 10%;
    z-index: 5;
}

.cta-header {
    background-color: white;
    width: 20%;
    padding: 20px 10px;
    text-align: center;
    border-radius: 25px;
    margin-top: 20px;
    margin-left: 5%;
    transition: 0.5s ease-in-out;
}
.cta-header a {
    text-decoration: none;
    color: #1E2C35 ;
    font-size: 1.25rem;
    transition: 0.10s ease-in-out;
}

.cta-header:hover {
    background-color: #FEA364;
    transform: scale(1.05);
    transition: 0.10s ease-in-out;
}

.cta-header:hover a {
    color: #1E2C35;
    transition: 0.5s ease-in-out;
}

/* Music Player Styling*/
#music {
    height: auto;
    background-color: #2B3349;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

#music h2 {
    color: #FEA364;
    font-size: 2rem;
    margin: 5%;
}

.player-wrapper  {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.player {
    width: 25%;
    height: 35vh;
    border-radius: 25px;
    margin: 20px;
    position: relative;
    overflow-y: hidden;
}

.player img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
}


.player-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    background-color: rgba( 0, 0, 0, 0.7);    
    border-radius: 25px;
    overflow: hidden;
    opacity: 0;
    transition: 0.6s;
}

.player-content h3 {
    color: white;
    font-size: 1.5rem;
}

.player-content:hover {
    opacity: 1;
    transition: 0.6s;
    border: 1px solid #FEA364;
}

#music button {
    background-color: #FEA364;
    color: #1E2C35;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 1.25rem;
    margin: 20px;
    transition: 0.5s ease-in-out;
}
/* Map Styling */   
#map {
    height: 50vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #2B3349;
}

#map h2 {
    color: #FEA364;
    font-size: 3rem;
    margin: 5%;
}

#map button {
    background-color: #FEA364;
    color: #1E2C35;
    border: none;
    width: 30%;
    border-radius: 25px;
    padding: 20px 20px;
    font-size: 1.25rem;
    margin: 20px;
    transition: 0.5s ease-in-out;
}

#map button:hover {
    background-color: white;
    color: #FEA364;
    transition: 0.5s ease-in-out;
    transform: scale(1.05);
}

#map button a {
    text-decoration: none;
    color: #1E2C35;
    font-family: "Aclonica", serif;
    font-weight: 400;
}
/* Footer Styling */
footer {
    background-color: #1E2C35;
    color: white;
    text-align: center;
    padding: 20px;
}
footer p {
    transition: 0.5s ease-in-out;
    font-size: 1rem;
}

footer p:hover {
    transform: translateY(-5px);
    transition: 0.5s ease-in-out;
}

.fa-heart {
    color: red;
}
/* Animation Styling*/

@keyframes bus {
    0% {
        left: -50%;
    }
    100% {
        left: 100%;
    }
}