@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Montserrat:wght@400;500;700&display=swap);

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
li {
    list-style-type: none;
}

a {
    color: white;
    text-decoration: none;
}

body {
    background-color: rgba(11, 11, 11);
    color: white;
    font-family: 'Montserrat';
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 1rem;
    margin-right: 1rem;
}
header h1 {
    padding: 1rem 0;
}

header nav ul {
    display: flex;
    gap: 1rem;
}

.hero-section {
    background-image: url(./img/movies/city-under-the-fire-bg.webp);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 6rem 3rem;
    margin:0 2rem;
    border-radius: 8px;
    border: none;
    overflow: hidden;
}
.hero-section h1 {
    padding-bottom: 1rem;
}
.hero-section p:first-of-type {
    padding-bottom: 1rem;
}

.red-text {
    color: red;
    font-size: 0.8rem;
    font-weight: 500;
    padding-bottom: 0.5rem;
}

.hero-section h3 {
    padding-bottom: 1rem;
    text-transform: uppercase;
}
.genres { 
    display: flex;
    gap: 0.5rem;
    font-size: 0.8rem;
    padding-bottom: 0.5rem;
}

.genres span {
    background-color: rgba(128, 128, 128, 0.326);
    padding: 4px 8px;
    border: none;
    border-radius: 16px;
}
.imdb-score{
    padding-bottom: 2rem;
}
.red-button {
    background-color: red;
    padding: 1rem 2rem;
    border-radius: 8px;
    border: none;
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
}

.movies {
    display: flex;
    flex-direction: column;
}
.continue {
    padding: 2rem;
}
.continue h2 {
    padding-bottom: 1rem;
    font-weight: 300;
}
.img-wrapper {
    width: 15rem;
    /* height: 10rem; */
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;

}

.top-picks {
    display: flex;
    flex-direction: column;
}

.top-picks h2 {
    padding: 2rem 0 1rem 2rem;
    font-weight: 300;
}
.img-ctr {
    display: flex;
    gap: 1.5rem;
    padding-left: 2rem;
}
.coming-soon {
    padding: 2rem;
}

.coming-soon h2 {
    font-weight: 300;
    padding-bottom: 1rem;
}
.wrapper {
    padding: 1rem;
    background-color: rgba(151, 151, 151, 0.111);
    border-radius: 10px;
    display: flex;

}
.img-wrapper-small {
    width: 8rem;
    border-radius: 10px;
    overflow: hidden;
}
.img-wrapper-small img {
    width: 100%;
    height: auto;
}
.reminder {
    padding: 0.5rem 1rem;
    display: flex;
    flex-flow: column wrap;
    gap: 4px;
}
.reminder .red-button {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    align-self: first baseline;
}
.reminder p {
    font-size: 0.75rem;
    font-weight: 200;
}
.browse-genres {
    margin: 2rem;
    border-bottom: 2px solid rgba(128, 128, 128, 0.41);
}
.icon-ctr {
    padding: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.icon-wrapper img {
    background-color: rgba(128, 128, 128, 0.068);
    border-radius: 50%;
}
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
}
.footer h3 {
    font-weight: 300;

}
.footer p {
    font-size: 0.9rem;
}
.footer .red-button {
    font-weight: 300;
    font-size: 1rem;
}
