@charset "UTF-8";

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

html, body {
    height: 105%;
}

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


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;
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
}

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-row {
   	 display: flex;
   	 flex-direction: column;
   	 align-items: center;
   	 gap: 20px; 
   	 padding-top: 20px;
}

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


.image-small {
    width: 650px; 
    margin-top: -35px; 
}
.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: 20px;
    padding-top: 45px;
}

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

.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: 90vw; 
        margin-top: -20px;
    }

    .image-small {
        max-width: 90vw; 
        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;
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
	
}

.content p {
    font-size: 18px;
    line-height: 1.6;
	max-width:  2000px;
    color: black;
    text-align: justify;
    
    margin: 0px 0;
	margin-bottom: 35px;
}
.content p2 {
		font-style:italic;
}
@media (max-width: 768px) {
    .content {
        max-width: 95vw;
        padding: 10px; 
		margin: 20px auto;
		
    }
    .content p {
        font-size: 15px;
		
    }
}

.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;
    }
	}
body {
            font-family: Arial, sans-serif;
            margin: 0;
            height: 100%;
            background-color: #f4f4f4;
        }

       

       
        .container {
            text-align: center;
            position: relative;
            z-index: 1; 
        }

       
        .shop-now-button {
            padding: 15px 40px; 
			font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
            background-color: #6A2B0A;
            color: white;
            text-decoration: none;
			margin-top:50px;
            border: none;
            border-radius: 25px; 
            font-size: 20px;
            cursor: pointer;
            display: inline-block;
            z-index: 2; 
            position: relative;
            top: 50%; 
            left: 50%; 
            transform: translate(-50%, -50%); 
        }

        .shop-now-button:hover {
            background-color: #2C2924;
        }

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



