/* Custom font import for Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa; /* Light background for initial content */
    color: #020202; /* Black for body text */
    min-height: 200vh; /* Ensure page is scrollable for demonstration */
}

html, body {
  height: 100%;
  margin: 0;
}

#site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.menu-header li {
  list-style: none;
}

.menu-header li a {
  @apply nav-link text-gray-700 hover:text-[#005667] font-medium;
}



/* --- Header Styles (Default Visible State) --- */
.main-header {
    width: 100%;
    padding: 1.5rem 0; /* Larger padding when at the top */
    background-color: #ffffff; /* White background always */
    position: fixed; /* Always fixed at the top */
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: none; /* No shadow initially */
    /* Smooth transition for padding and shadow changes */
    transition: padding 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Styles for when the header is "scrolled" (JavaScript adds this class) */
.main-header.scrolled {
    padding: 0.75rem 0; /* Smaller padding when scrolled */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow when scrolled */
    /* Background color remains white, as requested */
}

.main-header .nav-link {
    color: #020202; /* Black links (color remains same) */
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.main-header .nav-link:hover {
    color: #288896; /* Teal on hover */
}

/* Spacing below header to prevent content from jumping */
.header-spacer {
    height: 6rem; /* Matches initial header height (1.5rem top + 1.5rem bottom padding + logo/content height) */
    transition: height 0.3s ease-in-out;
}
.header-spacer.scrolled {
    height: 3.5rem; /* Matches scrolled header height (0.75rem top + 0.75rem bottom padding + logo/content height) */
}

/* Mobile menu button styling */
.mobile-menu-button {
    color: #020202; /* Black initially and remains black */
    transition: color 0.3s ease-in-out;
}