
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  @font-face {
    font-family:catamaran ;
    src: url(../font/Catamaran-VariableFont_wght.ttf);
  }
  body {
    font-family:catamaran;
    line-height: 1.6;
    overflow-x: hidden; 
    position: relative;
  }

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 2em;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    font-family: Arial, Helvetica, sans-serif;
   
}









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;
}
nav a.indicator {
    font-weight: bold;
}


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









  .hero {
    height: 100vh; 
    background-image: url('../images/aboutbg.jpg'); 
    background-size: cover; 
    background-position: center; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
  }

  .profile-images {
    display: flex;
    justify-content: center;
    gap: 1rem; 
    background:  #E3DABF;
    padding: 2rem 0; 
  }
  
  .profile-images img {
    width: 400px; 
    height: 400px; 
    object-fit: cover; 
}

  .profile-image-wrapper {
    display: inline-block;
    text-align: left;
  }
  
  .profile-image-wrapper img {
    display: block;
    margin: 0 auto;
  }
  
  .caption {
    margin-top: 0.5rem;
    font-size: 0.8rem; 
    color: #333; 
    font-family: catamaran;
  }


  
  .hero-text {
    font-size: 15rem;
    margin-top: 240px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); 
    font-family: Arial, Helvetica, sans-serif;
  }
  

  .content {
    padding-left: 19rem;
    padding-right: 19rem;
    padding-top: 2rem;
    padding-bottom: 30rem;
    background: #E3DABF; 
    color: #333;
    font-size: 18pt;
    font-family: catamaran;
    
    
  }

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

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

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

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

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