@charset "UTF-8";
/*Navigation Bar*/

*{
    margin: 0;
    padding: 0;
}
html, body{
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
}


.logo{
    display: flex;
width:45%;
z-index: 1;
}

h1 {
    display: flex;
    align-content: center;
    font-size: 4em;
    font-family:Magnolia;
    color:white;
    text-align: center;
    width:30em;
}
.navbar{
	display: flex;
	min-height: 10em;
    background-color: #22352D;
	padding: 10px;
	justify-content: space-between;
	align-items: center;
	z-index: 3;
}

.nav-links{
	display: flex;
	justify-content: space-between;
	list-style:none;
    text-align: center;
	gap:8px;
	margin: 0;
	padding: 0;
	color: aliceblue;
}
.nav-links li{
	display: inline;
	 font-size: 1.5em;
    font-family:Magnolia;
    font-weight: bold;
}
.nav-links li a{
    color:#f6eee4;
    padding: 0.5em 2em;
    text-decoration: none;
	font-size: 1em;
}
.nav-link:hover{
	color: ffdc7f;
	
}
.nav-link a:active{
	color: ffdc7f;
}
.nav-link{
	transition: 0.7s ease;
}
@media(max-width:768px){
	.hamburger{
		display: block;
		
	}
	.hamburger:active .bar:nth-child(2){
		transform: translateY(-8px)rotate(-45deg);
	}
		.hamburger:active .bar:nth-child(1){
		transform: translateY(8px)rotate(45deg);
	}
	.nav-links{
		position: fixed;
		left: -100%;
		top: 70px;
		gap:0;
		flex-direction: column;
		background-color:#191825;
		width: 100%;
		text-align: center;
		transition: 0.3s;
	}
	.nav-item{
		margin: 16px 0;
	}
	.nav-links.active{
		left: 0;
	}
	.content{
	background-color:#ffdc7f;
	width: 200px;
	height: 200px;

	}
/* Tablet view */
@media(min-width:1000) {
	.hamburger{
		display: block;
		
	}
	.hamburger:active .bar:nth-child(2){
		transform: translateY(-8px)rotate(-45deg);
	}
		.hamburger:active .bar:nth-child(1){
		transform: translateY(8px)rotate(45deg);
	}
	.nav-links{
		position: fixed;
		left: -100%;
		top: 70px;
		gap:0;
		flex-direction: column;
		background-color:#191825;
		width: 100%;
		text-align: center;
		transition: 0.3s;
	}
	.nav-item{
		margin: 16px 0;
	}
	.nav-links.active{
		left: 0;
	}
		
	}}
  
/* Product details section styling */
.product-details {
    max-width: 100%;
    max-height: auto;/* Constraining the width of the content */
    margin: 2rem auto; /* Centering the content */
    padding: 2rem;
    background-color: #E5C6CA; /* White background for product details */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
    border-radius: 8px; /* Rounded corners for better aesthetics */
    text-align: center;    
}

/* Styling for the product image */
.product-details img {
    width: 100%;
    height: auto;
    max-width: 400px; /* Limit the size of the product image */
    margin-bottom: 1rem;
    border-radius: 8px; /* Rounded corners for the image */
}

/* Product title */
.product-details h2 {
    font-size: 2rem;
    margin: 1rem 0;
     font-family:"Academy Engraved LET Plain:1.0", "American Typewriter", "American Typewriter Bold", "American Typewriter Condensed", "American Typewriter Condensed Bold", "American Typewriter Condensed Light", "American Typewriter Light", "American Typewriter Semibold";
    color: #22352D;
}

/* Product price */
.product-details p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
     font-family:"Academy Engraved LET Plain:1.0", "American Typewriter", "American Typewriter Bold", "American Typewriter Condensed", "American Typewriter Condensed Bold", "American Typewriter Condensed Light", "American Typewriter Light", "American Typewriter Semibold";
    color: #22352D;
}

/* Link to go back to catalog */
.back-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #22352D;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family:"Academy Engraved LET Plain:1.0", "American Typewriter", "American Typewriter Bold", "American Typewriter Condensed", "American Typewriter Condensed Bold", "American Typewriter Condensed Light", "American Typewriter Light", "American Typewriter Semibold";
}

.back-link:hover {
    background-color: #22352D; /* Darken the background on hover */
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    .product-details {
        padding: 1rem; /* Reduce padding on tablets */
    }

    .product-details h2 {
        font-size: 1.5rem; /* Smaller font for tablets */
    }
}

@media (max-width: 480px) {
    .product-details {
        padding: 1rem; /* Reduce padding further on mobile */
    }

    .product-details h2 {
        font-size: 1.25rem; /* Even smaller font for mobile */
    }}

.background-image {
    background-image: url('graphics/background.png'); /* Replace with your image path */
    background-size: cover; /* Cover the entire area */
    background-position: center;
    background-attachment: fixed; /* Center the image */
    height: 100vh; /* Full viewport height */
    width: 100%; 
    margin: 0; /* Avoid default body margin */
     padding: 0;
}

/* Optional: Media Queries for additional styling */
@media (max-width: 768px) {
    .background-image {
        background-image: url('graphics/background.png'); /* Mobile image */
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .background-image {
        background-image: url('graphics/background.png'); /* Tablet image */
    }
    }