
/* Premium Color Palette Variables */
:root {
  --bg-primary: #faf8f3;
  --text-primary: #2a2520;
  --text-secondary: #6b6459;
  --accent-primary: #8b7d5b;
  --accent-light: #a89968;
  --shadow-md: 0 4px 16px rgba(42, 37, 32, 0.12);
  --shadow-lg: 0 8px 24px rgba(42, 37, 32, 0.15);
}

.icons {
  display: inline;
  float: right;
  margin-top: 10px;
  margin-right: 30px;
  transition: all 0.3s ease;
}

.icons img {
  width: 50px;
  opacity: 0.8;
  box-shadow: 0 2px 6px rgba(42, 37, 32, 0.1);
  transition: all 0.3s ease;
  border-radius: 4px;
}

.icons img:hover {
  width: 52px;
  opacity: 1;
  box-shadow: 0 6px 16px rgba(42, 37, 32, 0.15);
  transform: translateY(-2px);
}

nav {
  color: var(--text-secondary);
  position: fixed;
  top: 0px;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 15px;
  transition: all 0.3s ease;
  z-index: 5;
  background: linear-gradient(135deg, rgba(250, 248, 243, 0.98) 0%, rgba(245, 243, 237, 0.98) 100%);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(42, 37, 32, 0.06);
}

nav ul {
  text-align: center;
  transition: all 0.3s ease;
  padding: 0;
  margin: 0;
}

nav ul li {
  display: inline;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'Roboto', sans-serif;
  padding-left: 15px;
  padding-right: 15px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

nav ul li:hover {
  border-bottom: 2px solid var(--accent-primary);
  color: var(--text-primary);
}

nav ul li.navopen {
  border-bottom: 2px solid var(--accent-primary);
  color: var(--text-primary);
  font-weight: 600;
}

#topmenu{
padding:0;
margin:0;
z-index:10;
position:fixed;
top:0;
right:0;
}


@media all and (orientation:portrait){

    header {
        visibility:hidden;
    }    
         /* Style the navigation menu */
.topnav {
  overflow: hidden;
  background-color: #333;
  position: fixed;
  width:100%;
  z-index:12;
    font-size:24px;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
    font-size:24px;
  
}

/* Style navigation menu links */
.topnav a {
  color: white;
  padding: 30px 16px;
  text-decoration: none;
  display: block;
      font-size:24px;
  
}

/* Style the hamburger menu */
.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active link (or home/logo) */
.active {
  background-color: #04AA6D;
  color: white;
} 

}
