@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;
}



.image-large {
    width: 1300px; 
	margin-top:-40px;
	margin-right:60px;
}


.image-small {
    width: 650px; 
    margin-top: 20px; 
}
.image-small img:hover {
    transform: scale(1.05); 
}


.image-container img {
   	 width: 100%;
   	 height: auto;
   	 border-radius: 8px;
   	 transition: transform 0.3s ease;
}
.image-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding-top: 35px;
}

.image-large {
    width: 65%; 
    max-width: 90vw; 
    margin-top: -40px;
	margin-left: 60px;
}

.image-small {
    width: 30%; 
    max-width: 50vw;
    margin-top: -35px;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.image-small img:hover {
    transform: scale(1.05);
}


@media (max-width: 768px) {
    .image-large {
        max-width: 85vw; 
        margin-top: -20px;
    }

    .image-small {
        max-width: 70vw; 
        margin-top: -5px;
    }
}

@media (max-width: 768px) {
    .image-large, .image-small {
        max-width: 95vw; 
        margin-top: 0;
    }
}
.content {
    max-width: 950px;
    margin: 20px auto;
    padding: -3px;
	
}

.content {
    max-width: 950px;
    margin: 0 auto;
    padding: -3px;
	
}

.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;
}
.content p2 {
		font-style:italic;
}
.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    margin-top: 10px;
    margin-left: auto;
}


@media (max-width: 768px) {
    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;
    }
	}

