/* Page background & fonts */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: #000066;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header-container {
    width: 100%;
    max-width: 1255px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.main-headerimage {
    width: 90%;
    max-width: 1255px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Clickable phone button */
.click-box {
    display: block;
    width: 90%;
    max-width: 400px;
    margin: 10px auto;
    padding: 12px;
    text-align: center;
    background-color: #fafaf4;
    color: #000066;
    border: 2px solid #bdc476;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.1s, box-shadow 0.1s;
}

.click-box:active {
    transform: translateY(2px);
    box-shadow: 0 2px 3px rgba(0,0,0,0.4);
}

/* Hamburger */
.hamburger-menu {
    width: 40px;
    margin: 10px auto;
    cursor: pointer;
}
.hamburger-menu .bar {
    height: 4px;
    width: 100%;
    background-color: #fafaf4;
    margin: 6px 0;
    border-radius: 2px;
}

/* Menu bar */
.menu-bar {
    display: none;
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
    gap: 8px;
}

.menu-bar.open {
    display: flex;
}

.menu-button {
    background-color: #fafaf4;
    color: #000066;
    border: 2px solid #bdc476;
    border-radius: 6px;
    padding: 8px 12px;
    text-align: center;
    width: 80%;
    max-width: 250px;
    font-weight: bold;
    transition: transform 0.1s, box-shadow 0.1s;
}

.menu-button.active {
    background-color: #000066;
    color: #ffffff;
}

.menu-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 3px rgba(0,0,0,0.4);
}

/* Main content */
.main-container {
  width: 97%;
  max-width: 970px;
  margin: 20px auto;
  border: 4px solid #bdc476;
  background-color: #fafaf4;
  padding: 15px;
  box-sizing: border-box;
}

/* Alert boxes */
.alert-box {
    border: 2px solid #324158;
    border-radius: 8px;
    background-color: #ffffff;
    padding: 5px 11px; /* 5px top/bottom, 10px left/right */
    margin-bottom: 15px;
    text-align: center;
    font-size: 16px;
}
.alert-box p {
    margin: 5px 0; /* 5px top/bottom, 0 left/right */
}

/* Title and subtitle */
.text-title {
    text-align: center;
    font-family: "Cormorant Garamond Light", serif;
    font-size: 24px;
    margin: 20px 0 10px;
}

.text-sub {
    font-family: "Cormorant Garamond Light", serif;
    font-size: 20px;
    font-weight: bold;
    color: #000066;
    margin: 15px 0 5px;
}

/* Date */
.text-date {
    font-size: 14px;
    margin-bottom: 15px;
    text-align: left;
}

/* Main text content */
.text-main {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Footer Box */
.footer-box {
    display: flex;
    flex-direction: column; /* stack links vertically */
    background-color: #fafaf4;
    border: 2px solid #bdc476;
    border-radius: 8px;
    padding: 12px 15px; /* compact padding */
    font-family: Arial, sans-serif;
    color: #000066;
    box-sizing: border-box;
    max-width: 390px; /* smaller width */
    margin: 20px auto; /* center outside main container */
    text-align: center;
}

.footer-box ul {
    list-style: none; /* remove bullets */
    padding-left: 0;
    margin: 0;
}

.footer-box li {
    margin: 6px 0; /* spacing between links */
}

.footer-box a {
    text-decoration: none;
    color: #000066;
    font-weight: bold;
    transition: color 0.2s ease;
}

.footer-box a:hover {
    color: #bdc476;
}


/* Copyright */
.copyright-image {
    display: block;
    width: 80%;
    max-width: 663px;
    height: auto;
    margin: 20px auto;
}

/* Responsive tweaks */
@media (max-width: 480px) {
    .text-block {
        font-size: 14px;
    }
}
