:root {
  --text-color: #2E2E2E; 
  --headline-font: 'Playfair Display', serif; 
  --body-font: "Open Sans", sans-serif;
  --accent-color: #88c1cb;
  --accent-color2: #6B4F3A;
  --background-color: #F5EFE6;
}

html, body{
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--body-font);
    margin: 0; 
    padding-top: 0px; 
    color: var(--text-color);
    background-color: var(--background-color);
}

header {
    font-family: var(--headline-font);
    position: sticky;
    top: 0;
    z-index: 10; 
    background-color: var(--accent-color); 
    color: var(--text-color);          
    padding: 10px 20px;     
    display: flex;         
    justify-content: space-between;
    align-items: center;    
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

.navbar {
    color: var(--text-color);
    font-family: var(--body-font);
    padding: 10px 20px;
}

.nav-menu {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    font-size: 20px;
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 15px;
    display: block; 
}



footer{
    text-align: center; 
    padding: 20px; 
    background-color: var(--accent-color); 
    color: var(--text-color); 
    width: 100%; 
}
footer a{
    color: var(--text-color);
    text-decoration: none;
}
footer a:hover{
    color: blue;
}
.footerNav {
    color: var(--text-color);
    font-family: var(--body-font);
    padding: 10px 20px;
}

.footerNav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.footerNav-menu li a {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 15px;
    display: block; 
}
/* ===== News Page Styles ===== */

.page-hero {
  background: url('images/aboutHeroImg.jpg') center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.page-hero .hero-text {
  background: rgba(0,0,0,0.4);
  padding: 2rem;
  border-radius: 6px;
}

.news-feed {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
}

.news-post {
  background: white;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.news-post img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.news-post h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.news-date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .news-post img {
    height: 220px;
  }

  .news-post h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    height: 30vh;
  }

  .news-post img {
    height: 180px;
  }
}
.btn {
  background: var(--accent-color2);
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

.btn:hover {
  background: #4E3929;
}