/* Reset & Base */
@font-face {
  font-family: 'Fields';
  src: url('../content/Fields-SemiBold.otf') format('opentype');
  font-weight: 600; /* semibold */
  font-style: normal;
}

body {
      padding: 2px;
      background: #F7F1E4; 
      background-repeat: no-repeat;
      background-attachment: fixed;
    }

.main-nav {
  position: relative;
  z-index: 1000;
}
    .main-header {
	position: sticky;
	top: 0;
       background-color: #F7F1E4;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
	z-index: 9999;
    }

    .main-nav ul {
      display: flex;
      gap: 1rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .main-nav li {
      position: relative;
    }

    .main-nav a {
      color: #C6803D;
      text-decoration: none;
      font-weight: bold;
      font-size: 18px;
      padding: 0.5rem 1rem;
      display: block;
    }

/* Drop down menus */

    .dropdown {
      position: relative;
      display: block !important;
    }

    .dropdown-toggle {
      background-color: #BAAF69;
      color: white;
      padding: 8px 12px;
      border: none;
      cursor: pointer;
      border-radius: 4px;
    }

    .dropdown-menu {
	display: block !important;
      position: absolute;
      top: 100%;
      left: 0;
      visibility: hidden;
      background-color: #68672B;
      list-style: none;
      padding: 0;
      margin: 0;
      min-width: 150px;
      border-radius: 4px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      z-index: 1000;
    }

    .dropdown:hover .dropdown-menu {
      visibility: visible;
    }

    .dropdown-menu li {
      margin: 0;
      padding: 0;
    }

    .dropdown-menu li a {
      display: block !important;
      padding: 4px 10px;
      font-size: 16px;
      line-height: 16px;
      color: white;
      text-decoration: none;
      background-color: #BAAF69;
      box-sizing: border-box;
      white-space: nowrap;
    }

    .dropdown-menu li a:hover {
      background-color: #68672B;
      color: #F7F1E4;
    }
a:hover {
  color:#F4C5B4;
}



.logo-rounded {
  width: 220px; /* adjust to your image width */
  height: 100px; /* adjust to your image height */
  border-radius: 100px; /* makes it pill-shaped */
  overflow: hidden;
  display: inline-block;
}
.logo-rounded img { 
width: 100%; 
height: 100%; 
object-fit: cover; /* fills the rounded shape */ 
display: block; /* removes extra whitespace */ 
}

.logo-rounded-sm {
  width: 170px; /* adjust to your image width */
  height: 40px; /* adjust to your image height */
  overflow: hidden;
  display: inline-block;
}




/* Responsive */
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .hero {
    flex-direction: column;
  }

  .hero-video video,
  .portrait img {
    width: 100%;
    max-width: 90vw;
  }
}


