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

@font-face {
    font-family: 'Catamaran';
    src: url(../fonts/Catamaran-VariableFont_wght.ttf);
}

body {
    font-family: 'Catamaran', sans-serif; 
    line-height: 1.6;
    overflow-x: hidden; 
    position: relative;
    background-color: rgb(172, 207, 255);
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}

	h1 {
    display: flex;
    align-items: center;
    justify-content: center; 
    padding-top: 2rem;
    margin-bottom:-50px;
    margin-top:-40px;
    width: 100%;
    z-index: 10;
    font-size: 40pt;
 font-weight:900;

}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 2em;
    position: relative; 
    top: 0;
    width: 100%;
    z-index: 10; 
}

nav {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    padding: 1em;
    background: #ffffff00;
    position: relative;
}

nav a {
    color: navy; 
    text-decoration: none;
    font-size: 1.2em;
    position: relative;
}

header .logo img {
    width: 350px;
    margin: -50px;
}

.cart-icon {
    width: 24px;
    height: 24px;
}
 

.nav-item {
    position: relative;
    display: inline-block;
}





.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    width: 150px;
    z-index: 1000;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.dropdown a {
    display: block;
    padding: 10px;
    color: #051661;
    text-decoration: none;
    font-size: 1em;
}

.dropdown a:hover {
    background-color: #051661;
    color: white;
}

.nav-item:hover .dropdown {
    display: block;
}

.dropdown a {
    white-space: nowrap;
    padding: 0.5em;
}


.content-section {
    display: flex; 
    border-radius: 30px; 
    overflow: hidden; 
    background-color: white; 
    margin: 2rem; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    margin-left: 250px;
    margin-right: 250px;
    height: 500px; 
    margin-top: 60px; 
}

.image-content {
    flex: 1; 
    display: flex; 
    align-items: center; 
    height: 100%; 
}

.image-content img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 0 30px 30px 0; 
}

.text-content {
    flex: 1; 
    padding: 2rem; 
    color: #333; 
}

.footer {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 2rem;
    color:#051661;
    position: relative; 
    width: 100%; 
    height: 300px; 
    z-index: 100; 
    padding-top:10rem;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-top: auto; 
}

.footer-content {
    max-width: 1800px;
    margin: 0 auto;
    display: flex; 
    justify-content: space-between; 
    width: 100%; 
}

.footer-text {
    flex: 1; 
    text-align: left; 
    font-size: 16pt;  
}

.footer-logo {
    flex: 0 0 auto; 
}

.logo-image {
    width: 350px; 
    height: auto;
}