/*
Theme Name: DeKalb Utility District
Theme URI: https://dekalbutility.nexbillpayonline.com/
Author: DeKalb Utility District
Author URI: https://dekalbutility.nexbillpayonline.com/
Description: A custom WordPress theme for DeKalb Utility District - clean water, clear communication.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dekalb-utility
Tags: utility, water-district, municipal, one-column, custom-menu
*/

/* ===================================================
   DESIGN SYSTEM — DeKalb Utility District
   Aesthetic: Civic Industrial — bold, trustworthy, modern
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --navy: #0B1D3A;
  --navy-deep: #061325;
  --navy-light: #132D54;
  --slate: #3A4F6F;
  --amber: #D4922A;
  --amber-light: #E8B04A;
  --amber-glow: rgba(212, 146, 42, 0.15);
  --water-blue: #2B7A9E;
  --water-light: #3A9BC5;
  --cream: #F5F0E8;
  --cream-dark: #E8E0D2;
  --white: #FAFAF8;
  --text-dark: #1A1A1A;
  --text-body: #3D3D3D;
  --text-muted: #6B7280;
  --success: #2D8A4E;
  --alert-red: #C23B3B;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(3rem, 8vw, 6rem);
  --container-max: 1200px;
  --radius: 6px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11, 29, 58, 0.08);
  --shadow-md: 0 4px 16px rgba(11, 29, 58, 0.1);
  --shadow-lg: 0 12px 40px rgba(11, 29, 58, 0.15);
  --shadow-amber: 0 4px 20px rgba(212, 146, 42, 0.25);
}

/* ===================================================
   RESET & BASE
   =================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--water-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--amber);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 400;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

/* ===================================================
   GRAIN OVERLAY — adds subtle texture to page
   =================================================== */

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ===================================================
   HEADER
   =================================================== */

.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-top {
  background: var(--navy-deep);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.header-top a {
  color: var(--amber-light);
  font-weight: 500;
}

.header-top a:hover {
  color: var(--amber);
}

.header-main {
  padding: 0.75rem 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.site-logo img {
  height: 55px;
  width: auto;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
}

.site-logo-title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.site-logo-tagline {
  font-size: 0.75rem;
  color: var(--amber-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-top: 2px;
}

/* Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  display: block;
  padding: 0.6rem 1rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

/* Dropdown */
.main-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-light);
  min-width: 260px;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  z-index: 100;
  border-top: 2px solid var(--amber);
}

.main-nav li:hover > .sub-menu {
  display: flex;
}

.main-nav .sub-menu a {
  padding: 0.65rem 1.25rem;
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.main-nav .sub-menu a::after {
  display: none;
}

.main-nav .sub-menu a:hover {
  background: rgba(212, 146, 42, 0.12);
  color: var(--amber-light);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  color: white;
  padding: 0.5rem 0.75rem;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s;
}

.menu-toggle:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* ===================================================
   HERO SECTION
   =================================================== */

.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 50%, var(--water-blue) 100%);
  padding: clamp(4rem, 10vw, 7rem) 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(212, 146, 42, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
  pointer-events: none;
}

/* Geometric decoration */
.hero .geo-line {
  position: absolute;
  top: 2rem;
  right: 5%;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(212, 146, 42, 0.15);
  border-radius: 50%;
  animation: pulse-ring 4s ease-in-out infinite;
}

.hero .geo-line-2 {
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(255,255,255,0.06);
  transform: rotate(45deg);
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.6; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 146, 42, 0.15);
  border: 1px solid rgba(212, 146, 42, 0.3);
  border-radius: 50px;
  padding: 0.4rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease both;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.8s 0.15s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--amber-light);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 550px;
  animation: fadeInUp 0.8s 0.3s ease both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.45s ease both;
}

/* ===================================================
   BUTTONS
   =================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--amber);
  color: var(--navy-deep);
  box-shadow: var(--shadow-amber);
}

.btn-primary:hover {
  background: var(--amber-light);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 146, 42, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===================================================
   NOTICES BANNER
   =================================================== */

.notices-banner {
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber-light) 100%);
  padding: 1rem 0;
  position: relative;
  overflow: hidden;
}

.notices-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.05) 10px,
    rgba(255,255,255,0.05) 20px
  );
}

.notices-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.notices-banner .notice-icon {
  font-size: 1.5rem;
}

.notices-banner a {
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.notices-banner a:hover {
  color: var(--white);
}

/* ===================================================
   PAYMENT OPTIONS — 3-COLUMN CARDS
   =================================================== */

.payment-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.payment-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.payment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.payment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.payment-card:hover::before {
  transform: scaleX(1);
}

.payment-card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--amber-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
}

.payment-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.payment-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.payment-card .card-detail {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

/* ===================================================
   INFO STRIP — Hours / Phone / Address
   =================================================== */

.info-strip {
  background: var(--cream);
  padding: 3rem 0;
  position: relative;
}

.info-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cream-dark), transparent);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.info-item .info-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--amber-light);
}

.info-item h4 {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.info-item .info-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
}

.info-item .info-detail {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ===================================================
   BOARD MEETINGS SECTION
   =================================================== */

.meetings-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.meetings-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.meetings-info {
  position: sticky;
  top: 120px;
}

.meetings-info h2 {
  margin-bottom: 1rem;
}

.meetings-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.meeting-schedule-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber-glow);
  border: 1px solid rgba(212, 146, 42, 0.2);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

.agenda-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.agenda-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--amber);
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

.agenda-item:hover {
  background: var(--amber-glow);
  transform: translateX(4px);
  color: var(--navy);
}

.agenda-item .agenda-icon {
  font-size: 1rem;
  color: var(--amber);
}

/* ===================================================
   WATER QUALITY
   =================================================== */

.water-section {
  padding: var(--section-pad) 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.water-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(43, 122, 158, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 146, 42, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.water-section .section-header {
  position: relative;
  z-index: 1;
}

.water-section .section-label {
  color: var(--water-light);
}

.water-section h2 {
  color: var(--white);
}

.water-section .section-header p {
  color: rgba(255,255,255,0.6);
}

.water-reports {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.water-report-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.water-report-link:hover {
  background: rgba(212, 146, 42, 0.15);
  border-color: var(--amber);
  color: var(--amber-light);
  transform: translateY(-2px);
}

/* ===================================================
   CONTACT SECTION
   =================================================== */

.contact-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-item .cd-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-item h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.contact-detail-item .cd-value {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 500;
}

.contact-map {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 350px;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* ===================================================
   FOOTER
   =================================================== */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.55);
  padding: 3rem 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .site-logo {
  margin-bottom: 1.25rem;
}

.footer-brand .site-logo img {
  height: 45px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-body);
  color: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

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

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.footer-col a:hover {
  color: var(--amber-light);
  padding-left: 4px;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ===================================================
   PAGE TEMPLATES
   =================================================== */

.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
}

.page-hero h1 {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumbs {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.75rem;
}

.page-hero .breadcrumbs a {
  color: var(--amber-light);
}

.page-content {
  padding: var(--section-pad) 0;
}

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

/* ===================================================
   WORDPRESS SPECIFIC — Widget, Search, Comments
   =================================================== */

.widget-area {
  padding: 2rem 0;
}

.widget {
  margin-bottom: 2rem;
}

.widget-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--navy);
}

.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }

.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; }

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ===================================================
   RESPONSIVE
   =================================================== */

@media (max-width: 1024px) {
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .meetings-layout {
    grid-template-columns: 1fr;
  }
  .meetings-info {
    position: static;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-light);
    border-top: 2px solid var(--amber);
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
  }

  .main-nav a {
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .main-nav .sub-menu {
    position: static;
    background: rgba(0,0,0,0.15);
    border-top: none;
    border-radius: 0;
    box-shadow: none;
  }

  .header-top {
    display: none;
  }

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

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

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-logo-text {
    display: none;
  }
}

@media (max-width: 480px) {
  .water-reports {
    grid-template-columns: 1fr 1fr;
  }

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