/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Rumaila';
    src: url('./fonts/Rumaila.otf') format('opentype');
    font-weight: normal; /* Ajuste conforme necessário */
    font-style: normal;  /* Ajuste conforme necessário */
}

/* Global Styles */
body {
    font-family: 'Rumaila', sans-serif; /* Exemplo de uso */
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Container Utility */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    max-height: 80vh;
    overflow: auto;
}

.about, .preparation, .contact, .shop-online {
    h3{
        color:#a78755;
        font-weight: bold;
    } 
    ul {
        color:#333;
        margin-bottom: 20px;
        li {
            display: block;
        }
    }
    a {
        background-color: #772e47;
        color: white;
        padding: 8px 20px;
        margin: 10px;
        border: none;
        text-decoration: none;
        border-radius: 5px;
    }
}



header {
    background: #772e47;
    width: 100%;
    .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    h1 {
        font-size: 2rem;
    }
    nav {
        width: 100%;
        display: flex;
        justify-content: center;
        ul {
            list-style: none;
            display: flex;
            gap: 20px;
            li a {
                color: white;
                text-decoration: none;
                font-size: 1.1rem;
                text-transform: uppercase;
            }
            li a:hover {
                text-decoration: none;
                opacity: 0.8;
            }
        }
    }
}

main { 
    .container {
        background-color: #ffffffed;
        padding: 30px;
        border-radius: 0;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border: 2px solid #dbc1ac;
        outline: 4px solid #ffffff5e;
    }
    h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #5a1e1e;
    }
    p, main ul, main form {
        margin-bottom: 20px;
        line-height: 1.6;
        color: #333;
    }

    .hero {
        display: flex;
        justify-content: center;
        height: 80vh;
        color: white;
        text-align: center;    
        background: url('img/banner-fabene-home.jpg') no-repeat center center/cover;
    }
}

.pages {
    display: flex;
    justify-content: center;
    min-height: 80vh;
    color: white;
    padding: 10vh;
    text-align: center;    
    background: url('img/banner-fabene-paginas.jpg') no-repeat center center/cover;
}

.banner-home {
    width: 100%;
}

.hero-text {
    background-color: rgba(90, 30, 30, 0.7); /* Transparente bordô */
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 1.2rem;
}

.btn {
    background-color: #d4a95a; /* Cor dourada para botões */
    color: white;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
}

.btn:hover {
    background-color: #b88948;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #5a1e1e;
    text-transform: uppercase;
}
/* Featured Section */
.featured {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 20px;
    gap: 20px;
    background-color: #D8D4CF;
}

.feature-item {
    background-color: #f5f5f5e0;
    padding: 20px;
    flex: 1;
    text-align: center;
    border: 2px solid #dbc1ac;
    outline: 4px solid #ffffff5e;
}
.feature-item h2 {
    font-size: 1.35rem;
    text-transform: uppercase;
}

.feature-item h3 {
    font-size: 1.35rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1rem;
    color: #555;
}

#product-container {
    h3 {
        text-transform: uppercase;
        color:#333;
        font-size: 26px;
        margin: 40px 20px 10px;
    }
    
    .feature-item h4 {
        color: #5a1e1e; /* Título com cor vinho */
        font-size: 1.4rem;
        margin-bottom: 10px;
        text-transform: uppercase;
    }
    
    .feature-item img {
        width: 100%;
        height: auto;
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .feature-item p {
        font-size: 1rem;
        color: #333;
    }

    .featured-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        .feature-item {
            background-color: white;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            border-radius: 0;
            border: none;
            outline: none;
        }
    }

    

    .feature-item h4 {
        color: #5a1e1e;
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .feature-item img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 10px;
    }
}


form label {
    font-size: 1rem;
    color: #333;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 0;
}

form button {
    background-color: #5a1e1e;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 0;
}

form button:hover {
    background-color: #b88948;
}

/* Footer Styles */
footer {
    background: #772e47;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.9rem;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .featured {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 100%;
        margin-bottom: 20px;
    }

    main {
        .pages {
            padding: 0;
            .container {
                width: 100%;
    
            }
        }

    }
}
