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

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f5f2e9;
      color: #2e2b26;
      line-height: 1.6;
    }

    header {
      background-color: #e5d9c5;
      border-bottom: 2px solid #c4b89d;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.5rem 1rem;
      flex-wrap: wrap;
      position: relative;
    }

    .logo img {
      height: 100px;
      max-width: 180px;
    }
	nav {
	  flex: 1;
	  display: flex;
	  justify-content: flex-end;
	}
    nav ul {
      display: flex;
  	  justify-content: space-evenly;
  	  align-items: center;
  	  list-style: none;
  	  flex: 1;    }

nav a {
  position: relative;
  color: #4b3d2a;
  font-family: 'Georgia', serif;
  font-weight: 600;
  font-size: 1.5rem;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background-color: #8b5e3c;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #8b5e3c;
}

nav a:hover::after {
  width: 100%;
}
    
    .hamburger {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
    }

    .mobile-nav {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      right: 0;
      background: #e5d9c5;
      width: 100%;
      padding: 1rem 2rem;
      z-index: 99;
    }

    .mobile-nav a {
      padding: 0.5rem 0;
      border-top: 1px solid #c4b89d;
    }

    main {
      padding: 2rem;
    }

    .hero {
  position: relative;
  background: url('../images/hero_image_1.png') no-repeat center center / cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  margin-bottom: 2rem;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.7); /* semi-transparent black */
  box-shadow: 0 0 25px 12px rgba(0, 0, 0, 0.85);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 1rem;
}

.hero-overlay h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: 1.1rem;
  line-height: 1.5;
}

    .exhibits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      padding: 1rem 0;
    }

    .exhibit-card {
      background: #fffdf8;
      border: 1px solid #c4b89d;
      border-radius: 8px;
      padding: 1rem;
      box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
      text-align: center;
    }

    .exhibit-card img {
      
      height: 150px;
      object-fit: cover;
      border-radius: 4px;
      margin-bottom: 0.5rem;
    }
.article-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.article-section article {
  background-color: #fffdf8;
  border: 1px solid #e0d8c2;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1.5rem 2rem;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.article-section article:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.article-section article h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #4b3d2a;
  font-family: 'Georgia', serif;
  border-bottom: 1px solid #c4b89d;
  padding-bottom: 0.5rem;
}

.article-section article p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2e2b26;
}

.article-section article img:not(.unstyled-img) {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}
.unstyled-img {
  all: unset !important;
  display: block;
  margin: 1rem auto;
  max-width: 100%;
  height: auto;
}

.gallery-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 2rem auto;
  padding: 1rem;
  max-width: 1000px;
}

.gallery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fffdf8;
  border: 1px solid #e0d8c2;
  border-radius: 12px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.08);
  padding: 0.5rem;
  height: 250px; /* Fixed height container */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 3px 3px 16px rgba(0,0,0,0.12);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

   footer {
      background-color: #c4b89d;
      padding: 1rem;
      text-align: center;
      font-size: 0.9rem;
    }
    
    footer a {
  		color: #6e4f3a; /* warm brown tone */
  		text-decoration: underline;
  		font-weight: 600;
 	 	transition: color 0.3s ease;
	}

footer a:hover {
  color: #a57c55; /* amber/ochre on hover */
  text-decoration: none;
}

    @media (max-width: 768px) {
      nav ul {
        display: none;
      }

      .hamburger {
        display: block;
      }

      .mobile-nav.show {
        display: flex;
      }
    }
    @media (max-width: 1100px) {
  	nav a {
    	font-size: 1rem;
  		}
	}
	