/* General Body Styles */
body {
    font-family: sans-serif;
    margin: 0;
    background-color: #f4f4f4;
}

/* Header Styles */
header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    border-bottom: 3px solid #555;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
}

.header-container h1 {
    margin: 0;
    font-size: 1.5em;
    text-align: center;
    flex-grow: 1;
}

.header-container h1 a {
    color: white;
    text-decoration: none;
}

.header-image img {
    height: 50px;
}

/* Main Content Styles */
.content-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

/* Navigation Styles */
nav {
    background-color: #444;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li a {
    display: block;
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    transition: background-color 0.3s;
}

nav ul li a:hover, .dropdown:hover .dropbtn {
    background-color: #555;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #444;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    padding: 12px 16px;
    text-align: left;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile Menu */
.mobile-menu-button {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        justify-content: center;
        position: relative;
    }

    .header-container h1 {
        order: 2;
        width: 100%;
        padding: 10px 0;
    }

    .left-image { order: 1; }
    .right-image { display: none; }

    .mobile-menu-button {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
        order: 4;
    }

    nav ul {
        flex-direction: column;
    }

    nav {
        display: none; /* Hidden by default on mobile */
    }

    nav.active {
        display: block; /* Shown when hamburger is clicked */
    }

    .dropdown-content {
        position: static;
        display: none; /* Sub-menu hidden by default */
        box-shadow: none;
        background-color: #505050;
    }
    
    .dropdown:hover .dropdown-content {
        display: none; /* Disable hover effect on mobile */
    }

    .dropbtn:after {
        content: ' +'; /* Indicate expandable */
    }

    .dropdown.active .dropdown-content {
        display: block; /* Show on click */
    }

    .dropdown.active .dropbtn:after {
        content: ' -'; /* Indicate collapsible */
    }
}



/* Symbols Container */
.symbols-container {
  display: flex;
  align-items: center;
}

.symbols-container img {
  max-width: 200px;
  margin-right: 20px;
}

/* Footer Styles (if needed) */
footer {
  text-align: center;
  padding: 10px;
  background-color: #333;
  color: white;
  margin-top: 20px;
}
/* Image box styling */
.image-box {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 16px;
  margin: 20px auto;
  max-width: 80%;
  text-align: center;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Image styling */
.image-box img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Caption styling */
.image-box p {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--dark);
}

/* History Page Styles */
.history-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 32px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  text-align: center;
}

.history-container h2,
.history-container h3 {
  text-align: center;
  margin-top: 0;
}

.history-container p {
  text-align: center;
  line-height: 1.7;
  margin: 18px 0;
  font-size: 1.1rem;
}

.history-image-space {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px 0;
  min-height: 180px;
  gap: 32px;
}

.history-image-space img {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background: #f4f4f4;
  padding: 8px;
}

/* Add spacing for images */
img {
  margin: 20px;
}