/* Global Styles */
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

header {
    background-image: url('images/unnamed.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 50vh;
    padding: 40px 20px;
}

@media (max-width: 768px) {
    header {
        background-size: contain;
        height: 40vh;
        padding: 30px 15px;
    }
}

nav {
    background: #1f3448;
    text-align: center;
    padding: 15px 10px;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

section {
    padding: 27px 21px;
    max-width: 1100px;
    margin: auto;
}

h1 {
    color: black;
}

h2, h3 {
    color: #2f4f6f;
}

.cta {
    background: #f4f8fb;
    text-align: center;
    padding: 33px 20px;
}

.btn {
    display: inline-block;
    background: #2f4f6f;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
}

.btn:hover {
    background: #1f3448;
}

.about-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}

.about-image {
    width: 89px;   /* roughly text height size */
    height: auto;
    border-radius: 79px;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .about-header {
        flex-direction: column;
        text-align: center;
    }

.about-image {
    width: 101px;
    }
}

.image-section {
    text-align: center;
    padding: 19px 20px;
}

.feature-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.two-images {
    display: flex;
    justify-content: center;
    gap: 20px; /* space between images */
    flex-wrap: wrap; /* allows stacking on small screens */
}

.two-images .feature-image {
    flex: 1 1 40%;
    max-width: 101px;
}

/* Lightbox modal */
#lightbox-modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
}

#lightbox-modal img {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 80%;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

#close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.site-footer {
  background: rgb(20, 46, 123);
  padding: 50px 20px 0;
  font-family: Arial, sans-serif;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #fffbfb;
  text-decoration: underline;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #b08d57; /* soft professional accent */
}

.footer-bottom {
  background: #2e2e2e;
  color: #fff;
  text-align: center;
  padding: 1px;
  font-size: 12px;
}

.footer-bottom a {
  color: #ddd;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

.news-ticker-section {
  padding: 40px 20px;
  background: #f6f6f6;
  text-align: center;
}

.news-container h2 {
  margin-bottom: 15px;
}

.news-ticker {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

.news-track {
  display: inline-block;
  padding: 10px 0;
  animation: scrollNews 25s linear infinite;
}

.news-track span {
  margin-right: 80px;
  font-weight: 500;
}

.news-button {
  display: inline-block;
  padding: 10px 25px;
  background: #b48a5a;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.news-button:hover {
  background: #9b7448;
}

@keyframes scrollNews {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

.news-page{
max-width:900px;
margin:auto;
padding:40px 20px;
}

.news-intro{
margin-bottom:40px;
font-size:18px;
}

.news-post{
margin-bottom:40px;
padding-bottom:25px;
border-bottom:1px solid #ddd;
}

.news-post h2{
margin-bottom:5px;
}

.news-meta{
font-size:14px;
color:#777;
margin-bottom:10px;
}

.read-more{
font-weight:600;
text-decoration:none;
}

.read-more:hover{
text-decoration:underline;
}

.news-post summary {
  cursor: pointer;
  list-style: none;
}

.news-post summary h2 {
  display: inline;
}

.news-post details {
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.news-post details[open] summary h2 {
  color: #b48a5a;
}