* {
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Hero Content */
.cont {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    background-color: #af5218;
    color: #4b2107;
    text-align: center;
    padding: 40px 20px;
}

.cont h1 {
    margin: 0;
    padding: 0;
}

.ctext1 {
    font-size: clamp(3rem, 10vw, 150px);
}

.ctext2 {
    font-size: clamp(1.5rem, 5vw, 41px);
}

.cont2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    min-height: 100vh;
    background-color: #4b2107;
    color: #af5218;
    padding: 40px 20px;
    text-align: center;
}

.cont2 h1 {
    margin: 0;
    padding: 0;
}

.ctext3 {
    font-size: clamp(5rem, 18vw, 200px);
    line-height: 1;
}

.ctext4 {
    font-size: clamp(2rem, 6vw, 80px);
}

.cont2-img {
    margin-left: 30px;
    max-width: 100%;
}

/* Menu */
.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    background-color: #af5218;
    width: 100%;
    z-index: 1000;
}

.menu a {
    padding: 10px 28px;
    color: #4b2107;
    text-decoration: none;
}

.menu a:hover {
    color: #351400;
    cursor: pointer;
}

/* Posters */
.main {
    width: 100%;
    color: #af5218;
    text-align: center;
    padding: 40px 20px;
}

.main h1 {
    margin: 0;
    font-size: clamp(5rem, 15vw, 200px);
    line-height: 1;
}

.main-carrousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.main-carrousel img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
}

/* Products */
.main-carrousel2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 40px 20px;
}

.main-carrousel2 .card {
    flex: 1 1 250px;
    max-width: 300px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid #af5218;
    padding: 22px;
}

.card .image-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card .content {
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.card button {
    background-color: #4b2107;
    color: #af5218;
    border-radius: 4px;
    padding: 12px 35px;
    margin: auto;
    cursor: pointer;
    border: none;
}

.card button:hover {
    background-color: #351400;
}

.products .h1 {
    font-size: clamp(3rem, 10vw, 120px);
    padding: 0 30px;
}

/* About */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(1rem, 2vw, 22px);
    gap: 30px;
    margin-top: 10px;
    flex-wrap: wrap;
    padding: 20px;
    text-align: center;
}

/* Footer */
.footer {
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    color: #af5218;
    background: #4b2107;
    font-size: clamp(2rem, 7vw, 80px);
}

/* Media Queries */
@media screen and (max-width: 950px) {
    .cont2 {
        flex-direction: column;
    }

    .cont2-img {
        margin-left: 0;
    }

    .about {
        flex-direction: column;
    }
}

@media screen and (max-width: 750px) {
    .menu a:not(.logo) {
        display: none;
    }

    .main-carrousel img {
        max-width: 100%;
    }
}
