@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
    line-height: 1.6;
}

footer {
    text-align: center;
    padding: 40px;
    background-color: #010F19;
    color: white;
    font-style: italic;
}


header {
    background-color: #2C2924;
    color: white;
    display: flex;
    justify-content: center; 
    align-items: center;
    padding: 0px 7vw;
    width: 100%;
}


.logo {
    margin-right: auto; 
}

.logo img {
    height: 120px;
    max-height: 15vw;
}


nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 2vw; 
}

nav ul li {
    padding: 10px 1vw;
}

nav ul li a {
    color: #8B8476;
    text-decoration: none;
    font-size: .8vw;
}

nav ul li a:hover {
    color: #FDFAF4;
}


nav ul li.cart img {
    height: 3vh;
    width: auto;
    vertical-align: middle;
}


@media (max-width: 1024px) {
    .logo img {
        height: 80px;
    }

    nav ul li a {
        font-size: 1.5vw;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 10px 3vw;
    }

    .logo img {
        height: 60px;
    }

    nav ul {
        flex-direction: column; 
        width: 100%;
        gap: 10px;
    }

    .menu-icon {
        display: block;
        font-size: 16px;
        color: white;
        cursor: pointer;
        margin-top: 20px;
    }

    nav ul.active {
        display: flex;
    }
}

main {
    flex: 1;
    padding: 20px;
    background-image: url('../images/background_story.png');
    background-size: cover;
    background-position: center;
    color: white;
}

.product-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #B2C2D8; 
    border-radius: 15px;
    padding: 100px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	margin-top: 30px;
	margin-bottom: 60px;
}

.product-image img {
    width: 100%;
    max-width: 500px;
   
}

.product-info {
    text-align: center;
    color: #2C2924;
}

.product-info h1 {
    font-size: 2.5em;
    margin-bottom: 5px;
	margin-top: 35px;
	
}

.product-info p {
    font-size: 1em;
    color: #666;
    margin-bottom: 10px;
	max-width: 500px; 
margin-left: 20px;
}

.product-info .price {
    font-size: 2.2em;
    font-weight: bold;
    color: #333;
}

button {
    background-color: #2C2924;
    border: none;
    color: white;
    padding: 20px 50px;
    border-radius: 25px;
    font-size: 1.4em;
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
    cursor: pointer;
    transition: background-color 0.3s;
	margin-top: 30px;
}

button :hover {
    color: white;
}


@media (max-width: 768px) {
    .product-container {
        max-width: 90%;
    }

    .product-info h1 {
        font-size: 1.4em;
		
    }

    .product-info p,
    .price {
        font-size: 1em;
    }

    button {
        font-size: 1em;
        padding: 8px 15px;
    }
}
.content {
    max-width: 950px;
    margin: 0 auto;
    padding: -5px;
	
}

.content p {
    font-size: 18px;
    line-height: 1.6;
	max-width:  2000px;
    color: black;
    text-align: justify;
    font-family: Constantia italic, "Lucida Bright", "DejaVu Serif", Georgia, "serif"sans-serif;
    margin: 0px 0;
	margin-bottom: 35px;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    margin-left: auto;
}


@media (max-width: 768px) {
   
    header {
        flex-direction: column;
        padding: 10px 3vw;
    }

    .logo img {
        height: 60px;
    }

   
    nav ul {
        display: none; 
        flex-direction: column;
        width: 100%;
        background-color: #2C2924;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 0;
    }

    nav ul.active {
        display: flex; 
    }

    nav ul li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    nav ul li a {
        font-size: 18px;
    }

   
    .menu-icon {
        display: block;
    }
}
