
.hero-section {
    position: relative;
    width: 100%;
    background: none;
    background-image: url('../Images/NewsBG.svg');
    background-size: cover;
    background-position: center;
    padding: 22rem 0; /* Increase height */
    text-align: center;
    font-size: 2rem;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.news-section {
    max-width: 1400px;
    margin: 4rem auto 3rem auto;
    background: rgb(1, 39, 14);
    color: #fff;
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgb(0, 0, 0);
    font-family: 'Crimson Text', serif;
    position: relative;
    z-index: auto;
}
.news-section::before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    background: rgba(1, 39, 14, 0.85);
    z-index: -1;
    pointer-events: none;
}

.news-title {
    color: #ffe7a0;
    font-size: 2.2rem;
    margin-top: 0;
    border-bottom: 2px solid #ab8d44;
    padding-bottom: 0.5rem;
    margin-bottom: 2.5rem;
    font-weight: bold;
    text-align: center;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    justify-items: center;
}
.news-card {
    background: rgba(255,255,255,0.10);
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(171, 141, 68, 0.18);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    text-align: left;
    position: relative;
    overflow: visible;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
    border: 2px solid transparent;
}
.news-card:hover {
    transform: translateY(-10px) scale(1.03) rotate(-0.5deg);
    box-shadow: 0 8px 32px #ffe7a0cc, 0 2px 16px rgba(171, 141, 68, 0.18);
    border: 2px solid #ffe7a0;
    z-index: 2;
}
.news-date {
    color: #ffe7a0;
    font-size: 1rem;
    margin-bottom: 0.7rem;
    font-family: 'Crimson Text', serif;
    font-weight: 600;
}
.news-divider {
    border-bottom: 2px solid #ab8d44;
    margin-bottom: 1.2rem;
}
.news-headline {
    font-size: 1.35rem;
    font-weight: bold;
    color: #ffe7a0;
    margin-bottom: 1rem;
    font-family: 'Crimson Text', serif;
}
.news-body {
    font-size: 1.08rem;
    color: #fff;
    margin-bottom: 1.5rem;
    opacity: 0.92;
}
.news-more {
    color: #ffe7a0;
    text-decoration: underline;
    font-weight: bold;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}
.news-more:hover {
    color: #ab8d44;
}
.news-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}
.news-overlay-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(1, 39, 14, 0.92);
    z-index: 1;
    cursor: pointer;
}
.news-overlay-content {
    position: relative;
    z-index: 2;
    background: #fff;
    color: #01270e;
    border-radius: 24px;
    max-width: 700px;
    width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 40px #ffe7a0cc, 0 2px 16px rgba(171, 141, 68, 0.18);
    padding: 2.5rem 2rem 2rem 2rem;
    font-family: 'Crimson Text', serif;
    animation: overlayIn 0.4s cubic-bezier(.77,0,.18,1) both;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@keyframes overlayIn {
    0% { opacity: 0; transform: scale(0.92) translateY(40px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}
.news-overlay-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #ab8d44;
    cursor: pointer;
    z-index: 3;
    transition: color 0.2s;
}
.news-overlay-close:hover {
    color: #ffe7a0;
}
.news-overlay-date {
    color: #ab8d44;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}
.news-overlay-headline {
    font-size: 1.6rem;
    font-weight: bold;
    color: #01270e;
    margin-bottom: 1.2rem;
    font-family: 'Crimson Text', serif;
}
.news-overlay-body p {
    margin-bottom: 1.1rem;
    font-size: 1.08rem;
    color: #01270e;
}
.news-overlay-pics {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}
.news-overlay-pics figure {
    margin: 0;
    text-align: center;
    max-width: 180px;
}
.news-overlay-pics img {
    width: 100%;
    max-width: 180px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(171, 141, 68, 0.18);
    border: 2px solid #ab8d44;
    margin-bottom: 0.5rem;
}
.news-overlay-pics figcaption {
    font-size: 0.95rem;
    color: #ab8d44;
    margin-top: 0.2rem;
}
/* Mobile & Tablet Responsive Styles */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .hero-section {
    padding: 18rem 0;
  }
  .news-section {
    padding: 2rem 1.5rem;
    margin: 3rem auto 2rem auto;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .news-card {
    padding: 1.8rem 1.3rem;
  }
}

@media (max-width: 700px) {
  .hero-section {
    padding: 15rem 0;
  }
  .news-section {
    padding: 1.5rem 1rem;
    margin: 2rem auto 1.5rem auto;
  }
  .news-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .news-card {
    padding: 1.5rem 1.2rem;
  }
  .news-headline {
    font-size: 1.2rem;
  }
  .news-body {
    font-size: 1rem;
  }
  .news-overlay-content {
    padding: 2rem 1.5rem;
    font-size: 1rem;
    max-width: 95vw;
  }
  .news-overlay-headline {
    font-size: 1.3rem;
  }
  .news-overlay-pics {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 12rem 0;
    font-size: 1.5rem;
  }
  .news-section {
    padding: 1.2rem 0.8rem;
  }
  .news-title {
    font-size: 1.5rem;
  }
  .news-card {
    padding: 1.2rem 1rem;
  }
  .news-headline {
    font-size: 1.1rem;
  }
  .news-overlay-content {
    padding: 1.5rem 1rem;
  }
  .news-overlay-headline {
    font-size: 1.2rem;
  }
}

/* Mobile Navigation Toggle Button */
.mobile-nav-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 40000;
  background: linear-gradient(135deg, #1a3a24 0%, #ab8d44 100%);
  border: 2px solid #ffe7a0;
  border-radius: 12px;
  width: 56px;
  height: 56px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(171, 141, 68, 0.4);
  transition: all 0.3s ease;
}

.mobile-nav-toggle .material-icons {
  color: #ffe7a0;
  font-size: 32px;
  transition: transform 0.3s ease;
}

.mobile-nav-toggle:hover {
  background: linear-gradient(135deg, #ab8d44 0%, #1a3a24 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 231, 160, 0.5);
}

.mobile-nav-toggle:active {
  transform: scale(0.95);
}

.mobile-nav-toggle.active .material-icons {
  transform: rotate(90deg);
}

.hero-nav-btns-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-90%);
    z-index: 30000;
    max-width: 340px;
    width: 100%;
    padding-left: 2.2vw;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    pointer-events: auto;
}
.hero-nav-fadein-btn.hero-nav-fadein-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.77,0.2,0.05,1.0), transform 0.8s cubic-bezier(0.77,0.2,0.05,1.0);
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    font-family: 'Crimson Text', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.08em;
    box-shadow: none;
    margin: 0;
    padding: 0.3rem 1.2rem 0.3rem 0.2rem;
    border-radius: 0 32px 32px 0;
    cursor: pointer;
    overflow: visible;
    background: none;
}
.hero-nav-fadein-btn.hero-nav-fadein-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.hero-nav-fadein-btn .gold-vert-line {
    display: inline-block;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #ffe7a0 0%, #ab8d44 100%);
    margin-right: 1.1rem;
    border-radius: 2px;
    transition: height 0.7s cubic-bezier(0.77,0.2,0.05,1.0);
    vertical-align: middle;
    box-shadow: 0 0 6px #ab8d44a0;
}
.hero-nav-fadein-btn.hero-nav-fadein-left.visible .gold-vert-line {
    height: 2.1rem;
}
.hero-nav-fadein-btn .hero-nav-btn-text {
    color: #fff;
    font-family: 'Crimson Text', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: color 0.2s;
}
.hero-nav-fadein-btn:hover .hero-nav-btn-text {
    color: #ffe7a0;
}
.hero-nav-fadein-btn:hover .gold-vert-line {
    box-shadow: 0 0 16px #ffe7a0;
}