*{
box-sizing: border-box;
padding: 0;
margin: 0;
}
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
body{
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    background: #fff8e8;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
h1, p {
    margin-bottom: 0;
    padding: 0;
}
h1 {
    font-size: 3em;
    text-align: left;
    position: top;
    margin-top: 25px;
    margin-left: 65px;
}
h1.regular-title {
    font-size: 3em;
    text-align: left;
    position: top;
    margin-top: 40px;
    margin-left: 75px;
}
h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    margin-top: 10px;
    margin-right: 80px;
}
p {
    font-size: 1em;
    margin: 10px 0;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
    cursor: pointer;
}
header{
    background: #fff8e8;
    color: black;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 70px;
    justify-content: flex-start; 
    padding: 4px;
    position: sticky;
    top: 0;
    border: black 2px solid;
    margin: 0;
}
div.logo {
    max-width: 200px;
    max-height: 70px;
    display: flex;
    margin-left: 70px;
}
div.logo img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
}
.nav-container {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
}
.menu {
    padding: 0;
    margin-left: auto;
    align-items: center;
    margin-right: 60px;
    padding-right: 10px;
}
.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
}
.menu ul li {
    margin: 0 5px;
    text-align: center;
    padding: 5px 5px 5px 5px;
}
.menu ul li a {
    color: #100f0f;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}
.menu ul li a:hover {
    background-color: black;
    color: #fff8e8;
    text-decoration: underline;
    padding: 5px 5px 5px 5px;
    transition: padding 0.3s;
}
/*main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    height: auto;
    margin:0;
    padding:0;
}*/
.hero {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
    gap: 5px;
}
.hero img {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    display:block;
    margin: 0;
}
button.hero-button {
    background-color: transparent;
    color: black;
    border: black 2px solid;
    margin-bottom: 60px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}
button.hero-button:hover {
    background-color: black;
    color: #fff8e8;
}
#HFilmButton {
    margin-right: 20px;
}
#HSobreButton {
    margin-left: 20px;
}


/*Filmes Gallery page styling */
.filmes-img {
    display:block;
    max-width: 100%;
    height: auto;
}
/* Gallery styling */
.gallery-section {
    margin:0;
    padding:0;
    height: auto;
    margin-left: 25px;
}
.filmes-img {
    width: 80%;
    padding: 20px;
}
.gallery-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-left: 33px;
    margin-right: 33px;
    height: auto;
}
.column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}

@media only screen and (max-width: 768px) {
    .gallery-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}
/*Destaques section styling */
h1.destaque-title {
    text-align: left;
    margin-top: 40px;
    margin-right: auto;
    font-size: 3em;
    letter-spacing: 0;
}
.destaque-subtitle {
    font-size: 1.2em;
    margin-bottom: 20px;
    margin-right: auto;
    text-align: left;
    margin-left: 70px;
}
.filme-section {
    max-width: 100%;
    margin: 40px auto;
    padding: 0 20px;
    display:flex;
    flex-direction: column;
}
.filme-title-section {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.filme-tags {
    text-align: right;
    justify-content: flex-end;
    margin-left: auto;
    margin-top: 60px;
    font-size: 0.9em;
    margin-right: 70px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.filme-type,
.filme-maker {
    margin: 0;
}
.filme-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    margin-left: 70px;
    margin-right: 70px;
}
.filme-text {
    width: 100%;
}
.filme-text p {
    margin-bottom: 20px;
    line-height: 1.5;
    color: black;
    margin-top: 20px;
}
.filme-galleria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    min-width: 300px;
    margin-top: 15px;
    gap: 20px;
}
.filme-galleria img {
    width: 100%;
    height: auto;
}
/* Contact and About page styling */
.introduction {
    max-width: 800px;
    font-size: 1.1em;
    line-height: 1.5;
    color: black;
    margin-left: 75px;
}
#about-text-container {
    height: 70vh;
}
/*Footer styling */
.footer-grid-container {
                display: grid;
                grid-template-columns: 1fr 1fr 1fr 1fr;
                grid-gap: 2px;
                margin: 0;
                margin-top: 5px;
                margin-bottom: 5px;
                margin-left: 75px;
            }

            .grid-item {
                justify-content: center;
                gap: 1em;
                margin-top: 0px;
                margin-bottom: 0px;
                flex: 1;
            }
            .footer-logo {
                height: 50px;
                width: auto;
            }   
            .grid-item:first-child {
                margin-right: 20px;
            }
            footer p {
                color: black;
                font-size: 0.9em;
                font-weight: bold;
            }

            footer .copyright {
                text-align: center;
                color: black;
                font-size: 0.9em;
            }