:root {
    --primary-color: #12C12D;
    --primary-hover: #0EA626;
    --secondary-color: #0A2417;
    --accent-color: #D1FAE5;
    --text-main: #1F2937;
    --text-muted: #6B7280;
    --bg-light: #f0fdf4;
    --white: #FFFFFF;
    --dark-bg: #1B261A;
    --header-height: 80px;
    --border-radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-light);
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header */
header {
    background: var(--white);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary-color);
}

.logo-text {
    display: block;
    line-height: 1.1;
    font-weight: 800;
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
}

.nav-links li a.active {
    position: relative;
    color: var(--primary-color);
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 20px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}


/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 2000;
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--secondary-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--secondary-color);
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0;
    background-image: linear-gradient(rgba(10, 36, 23, 0.75), rgba(10, 36, 23, 0.75)), url('https://images.unsplash.com/photo-1523348837708-15d4a09cfac2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 40px 40px;
    color: var(--white);
    text-align: center;
    margin-bottom: -60px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.2rem, 8vw, 4rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: clamp(1rem, 4vw, 1.25rem);
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Feature Cards */
.features {
    padding: 120px 0 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card img {
    border-radius: 10px;
    margin-bottom: 20px;
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.feature-card h3 {
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.learn-more {
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

/* Notice Board */
.notice-board {
    padding: 80px 0;
    background-color: #f0fdf4;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.notice-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary-hover);
}

.tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tag-event {
    background: #FEF3C7;
    color: #92400E;
}

.tag-urgent {
    background: #FEE2E2;
    color: #991B1B;
}

.tag-volunteer {
    background: #DCFCE7;
    color: #166534;
}

/* Seasonal Gallery */
.gallery {
    padding: 80px 0;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* CTA */
.cta {
    padding: 80px 0;
}

.cta-box {
    background-color: var(--secondary-color);
    border-radius: 24px;
    padding: 60px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: radial-gradient(circle at top right, rgba(18, 193, 45, 0.2), transparent);
}

.cta-content {
    max-width: 60%;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.cta-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
}

/* Footer Modernized */
footer {
    background: var(--dark-bg);
    padding: 100px 0 40px;
    color: var(--white);
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    max-width: 320px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    flex-grow: 1;
}

.newsletter-form button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: var(--primary-hover);
}

.footer-col h4 {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    margin-left: 20px;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Contact Page Enhancements */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    padding: 80px 0;
}

.contact-info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid #f0f0f0;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-card p,
.contact-card a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-form-card {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    background: #F9FAFB;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(18, 193, 45, 0.1);
}

/* Site Secretaries */
.site-secretaries {
    margin-top: 60px;
}

.secretary-title {
    margin-bottom: 30px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.secretary-list {
    display: grid;
    gap: 20px;
}

.secretary-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.secretary-card h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.secretary-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-main);
}

.secretary-email {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.secretary-email:hover {
    text-decoration: underline;
}

/* 404 Page */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.error-content h1 {
    font-size: 10rem;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.error-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.error-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page Additional Content Styling */
.contact-additional-content {
    padding: 80px 0;
    border-top: 1px solid #E5E7EB;
    background: var(--bg-light);
}

.content-styled {
    max-width: 900px;
    margin: 0 auto;
}

.content-styled h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-top: 60px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.content-styled h2:first-child {
    margin-top: 0;
}

.content-styled h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-styled p {
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-styled a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.content-styled a:hover {
    color: var(--primary-hover);
}

.content-styled ul,
.content-styled ol {
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.content-styled li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.content-styled strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.content-styled hr {
    border: none;
    border-top: 1px solid #E5E7EB;
    margin: 40px 0;
}

/* Newsletter Archive Styling */
.newsletter-archive {
    margin: 40px 0;
}

.newsletter-year-section {
    margin-bottom: 60px;
}

.newsletter-year {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.newsletter-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.newsletter-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.newsletter-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.newsletter-season {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.newsletter-download {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: auto;
}

.newsletter-card:hover .newsletter-download {
    color: var(--primary-color);
}

/* Single Page Layout */
.page-header.decorative-header {
    position: relative;
    background-image: linear-gradient(rgba(10, 36, 23, 0.7), rgba(10, 36, 23, 0.7)), url('/Eden/header-bg.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    text-align: center;
    color: white;
}

.page-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    margin-bottom: 10px;
    line-height: 1.1;
}

.page-subtitle {
    opacity: 0.8;
    font-size: clamp(1rem, 3vw, 1.2rem);
    max-width: 800px;
    margin: 0 auto;
}

.page-content-section {
    padding: 60px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.prose {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.sidebar-box {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.sidebar-title {
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 10px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list-item {
    margin-bottom: 10px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
}

.sidebar-cta {
    background: var(--primary-color);
    color: white;
}

.sidebar-cta-btn {
    background: white;
    color: var(--primary-color);
    display: block;
    text-align: center;
    font-size: 0.85rem;
    padding: 10px;
}

/* List Page Layout */
.list-page-title {
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.events-list-grid {
    grid-template-columns: 1fr !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.event-link-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    align-items: center;
}

.event-image {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-content {
    padding: 10px 0;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .event-link-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-image {
        height: 200px;
    }
}


.list-item {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: block;
    transition: all 0.3s ease;
}

.list-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.list-item-title {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.list-item-summary {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Social Media & Weather Section */
.social-weather {
    padding: 80px 0;
    background: var(--bg-light);
}

.social-weather-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.social-card,
.weather-card {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}

.social-card h3,
.weather-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.social-card p,
.weather-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.social-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: white;
}

.btn-facebook {
    background: #1877F2;
}

.btn-facebook:hover {
    background: #145dbf;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.btn-twitter {
    background: #000000;
}

.btn-twitter:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.weather-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.weather-link:hover {
    color: var(--primary-hover);
    transform: translateX(5px);
}

/* Modern CTA Section */
.cta-modern {
    padding: 80px 0;
}

.cta-box-modern {
    background: linear-gradient(135deg, #1B3A2F 0%, #0A2417 100%);
    border-radius: 24px;
    padding: 70px 60px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.cta-box-modern h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-box-modern p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary-green {
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-green:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(18, 193, 45, 0.4);
}

.btn-outline-dark {
    background: transparent;
    color: var(--white);
    padding: 16px 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cta-modern .cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .single-page-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .mobile-nav-toggle {
        display: block;
    }

    #primary-navigation {
        position: fixed;
        inset: 0 0 0 0;
        background: var(--white);
        z-index: 1500;
        padding-top: 120px;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        opacity: 0;
    }

    #primary-navigation.opened {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .nav-links li a {
        font-size: 1.8rem;
    }

    .logo-text {
        font-size: 1rem;
        max-width: 160px;
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .notice-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-box {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }

    .list-grid {
        grid-template-columns: 1fr;
    }

    .prose {
        padding: 30px 20px;
    }

    .cta-content {
        max-width: 100%;
        text-align: center;
    }

    .cta-btns {
        justify-content: center;
    }

    .cta-info {
        margin-top: 30px;
        text-align: center;
    }

    .social-weather-grid {
        grid-template-columns: 1fr;
    }

    .social-card,
    .weather-card {
        padding: 40px 30px;
    }

    .cta-box-modern {
        padding: 50px 30px;
    }

    .cta-box-modern h2 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    header {
        height: 70px;
    }

    .hero {
        border-radius: 0 0 20px 20px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-card {
        padding: 30px 20px;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .footer-brand h2 {
        font-size: 2.2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .newsletter-cards-grid {
        grid-template-columns: 1fr;
    }

    .content-styled {
        padding: 0 20px;
    }
}