* {
  box-sizing: border-box;
}

body {
      background: transparent;
}

header {
  background-color: #D4AF37;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  padding: 1rem;
}

.header-inner {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  height: 50px;
  cursor: pointer;
}

.burger-menu {
  font-size: 2rem;
  cursor: pointer;
}

/* Mobile dropdown nav styles */
#mobile-menu {
  position: static;
  display: flex;
  flex-direction: row;              
  justify-content: center;
  gap: 2rem;                         
  background-color: transparent;
  padding: 0;
  z-index: 999;
  display: none;
}

#mobile-menu a {
  color: black;
  text-decoration: none;
  padding: 0.75rem 0;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

#mobile-menu a:hover {
  background-color: #eee293;
}

/* Show the menu when active */
#mobile-menu.active {
  display: flex;
}

.static-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-item {
    transition: transform 0.3s ease-in-out;
}

.portfolio-item:hover {
    transform: scale(1.05);
}


@media (max-width: 500px) {
    .content-box {
        margin: 1rem;
    }

    .logo {
        height: 60px;
    }

    #mobile-menu a {
        color: black;
        padding: 0.75rem 1rem;
        text-align: center;
    }

    #mobile-menu a:hover {
        background-color: #eee293;
        color: black;
    }
    
}
