body, h1, h2, p, img {
    margin: 0;
    padding: 0;
}


h1, h2, h3, h4, h5, h6, links {
    font-family: 'Bodoni Moda', serif;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff; 
    color: #333;
}

header {
    position: relative;
    height: 50vh; 
    overflow: hidden;
    margin-bottom: 100px; 
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); 
}

header img {
    width: 100%;
    height: 100%; 
    object-fit: cover; 
}

.logo { 
    position: absolute;
    top: 80px; 
    left: 50%;
    transform: translateX(-50%);
    color: #fff; 
    font-family: 'Bodoni Moda', serif;
    font-size: 24px;
    z-index: 1;
}
.header-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;

}
main {
    max-width: 75%; 
    margin: 0 auto; 
}

.text-section {
    text-align: center;
    margin-bottom: 150px; 
    line-height: 1.5;
}

.text-section h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
}

.wine-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;*/
    margin: 0 -10px;
}

.wine-container {
    flex: 0 0 48%; 
    margin: 0px 0px 0px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    background-color: #F2F2F2;
    margin-bottom: 60px;
}

.wine-image {
    flex: 0 0% 50%;
}

.wine-image img {
    width: 30%;
    height: auto;
    border-radius: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
}

.wine-info {
    flex: 1;
    margin-left: 20px;
    margin-right: 20px;
    text-align: left;
    line-height: 1.5;
}

.wine-info h3 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.wine-info p {
    margin-bottom: 50px;
}

.wine-info .technical-info {
    font-style: italic;
    margin-top: auto;
    color: #666;
    text-align: left;
    margin-bottom: 20px;
}

.contact {
    text-align: center;
    margin: 100px 0; 
}

.contact h2 {
    font-size: 3em; 
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.2em; 
}
.contact-buttons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.contact-button {
    display: inline-block;
    padding: 20px 30px;
    text-decoration: none;
    color: #fff;
    background-color: #333; 
    border-radius: 15px;
    font-size: 1em;
    margin: 0 10px; 
}

.contact-button:hover {
    background-color: #555;
}


/* Footer styles */
footer {
    background-color: #333;
    color: #fff; 
    text-align: center;
    padding: 20px;
}

.footer-contact {
    margin-bottom: 20px;
    color: #fff; 
}

.footer-contact h3 {
    font-size: 1em;
    margin-bottom: 10px;
}

.footer-contact p {
    margin: 5px 0;
}

footer a {
    color: #fff; 
    text-decoration: none; 
}

footer a:hover {
    color: #ccc; 
}

}

.footer-logo {
    margin-top: 20px; 
    text-align: center;
}

.footer-logo img {
    width: 10%;
}

.back-to-home {
    margin-top: 50px;
    text-align: center;
}

.back-to-home a {
    display: inline-block;
    padding: 20px 30px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
}

.back-to-home a:hover {
    background-color: #555; 
}

.image-section {
    display: flex;
    justify-content: center;
    margin-top: 10px; 
    margin-bottom: 80px;

}

.image-container {
    flex: 0 0 32%;
    margin: 0 5px;
}

.image-container img {
    width: 100%; 
    height: auto;
    border-radius: 10px; 
}

@media screen and (max-width: 768px) {
    .wine-container {
        flex: 0 0 100%;
    }
}