/* Colors */
:root {
  --green: #228b22;
  --gold: #daa520;
  --pink: #ffc0cb;
  --light: #f9f9f9;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Open Sans", sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  color: #228b22;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px; /* Tighter on mobile for full-width feel */
  }
}

.text-center {
  text-align: center;
}

/* Header */
/* ─────────────── Modern & Fully Responsive Header ─────────────── */

/* Header */
.header {
  background: var(--gold);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: background 0.3s ease;
}

/* Container */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Logo */
.logo img {
  height: 70px; /* Smaller for better balance */
  width: auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

.logo img:hover {
  transform: scale(1.08);
}

/* Navigation */
.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-list a {
  color: #111;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding: 8px 4px;
  transition: color 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--green);
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 60%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 12px 0;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-size: 0.95rem;
}

.dropdown-menu li a:hover {
  background: #f8f9fa;
  color: var(--green);
}

/* Right Side: Donate + Toggle */
.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-donate {
  padding: 12px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  background: var(--green);
  color: white;
  border-radius: 9999px;
  box-shadow: 0 6px 20px rgba(30,77,30,0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.nav-donate:hover {
  background: #164016;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(30,77,30,0.3);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--green);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.nav-toggle:hover {
  transform: rotate(90deg);
}

/* ─────────────── Mobile Menu ─────────────── */
/* ─────────────── Mobile Menu – Fixed, Smooth, No Overlap, Clean Icon ─────────────── */

@media (max-width: 992px) {
  /* Hide desktop nav layout */
  .nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: 
      transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.45s ease,
      visibility 0.45s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .nav.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
    list-style: none;
    padding: 0 24px;
    margin: 0;
    width: 100%;
    max-width: 420px;
  }

  .nav-list a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    padding: 18px 0;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s, background 0.3s;
    border-radius: 12px;
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--green);
    background: rgba(30, 77, 30, 0.08);
  }

  /* Dropdown in mobile – tap to expand with arrow */
  .dropdown > a::after {
    content: " ▼";
    font-size: 0.9rem;
    margin-left: 12px;
    transition: transform 0.3s;
  }

  .dropdown.active > a::after {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 16px 0 0 0;
    margin: 0;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    font-size: 1.8rem;
    padding: 14px 0;
  }

  /* Hamburger button – no rotation, only icon swap */
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--green);
    cursor: pointer;
    z-index: 10001;
    padding: 12px;
    transition: transform 0.3s ease;
  }

  .nav-toggle:hover,
  .nav-toggle.active {
    transform: scale(1.12);
  }

  /* Force solid FA icons – fixes upside-down/broken × */
  .nav-toggle i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
  }

  /* Hamburger → clean × when active */
  .nav-toggle.active i::before {
    content: "\f00d" !important; /* fa-times */
  }
}

/* Very small phones (< 480px) */
@media (max-width: 480px) {
  .nav-list a {
    font-size: 2rem;
    padding: 16px 0;
  }

  .nav-toggle {
    font-size: 2.2rem;
  }
}

/* Hero */
.hero {
  position: relative;
  background: url("../images/wog-003.jpeg") center/cover no-repeat;
  height: 110vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: bolder;
  color: #fff;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.4rem;
  font-weight: bolder;
  color: #fff;
  margin: 1.5rem 0;
  padding-bottom: 2.5rem;
}

/* Buttons */
.btn {
  padding: 15px 65px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.4s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: #f5aa1d;
  color: white;
}

.btn-primary:hover {
  background: #fda502;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(34, 139, 34, 0.4);
}

.btn-secondary {
  background: var(--gold);
  color: #333;
}

.btn-secondary:hover {
  background: #c4941b;
  transform: translateY(-5px);
}

.btn-outline {
  border: 3px solid white;
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background: white;
  color: var(--green);
}

/* Mobile – Stack buttons, full-width */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 60px 0;
  }

  /* .hero h1 {
    font-size: clamp(2.2rem, 7vw, 3.8rem);
  }

  .hero p {
    font-size: clamp(1rem, 3.5vw, 1.3rem);
  } */

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .btn {
    width: 100%;
    max-width: 320px;           /* Buttons don't stretch too wide on phones */
    padding: 16px 32px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 16px 26px;
    font-size: 1rem;
  }
}

/* Contact Page – Fully Responsive & Modern */
.contact-hero {
  position: relative;
  min-height: 60vh;                     /* Reduced for phones – less scrolling */
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 80px 0 60px;
}

.contact-hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.contact-hero p {
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  max-width: 720px;
  margin: 0 auto;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: white;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 70px 0 50px;
  }
}

/* Contact Info */
.contact-info {
  margin-top: 40px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.info-item i {
  color: var(--gold);
  font-size: 2rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.info-item div h4 {
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

/* Map */
.map-container {
  margin-top: 40px;
}

.map-container iframe {
  width: 100%;
  height: 400px;                        /* Fixed height for consistency */
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Contact Form */
.contact-form {
  margin-top: 40px;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #444;
  font-size: 1.05rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 1.05rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

/* Form Message */
.form-message {
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
}

.form-success {
  background: rgba(30,77,30,0.1);
  color: var(--green);
}

.form-error {
  background: rgba(200,0,0,0.1);
  color: #c00;
}

.cta-section .cta-content .btn {
    margin-top: 40px;
}

/* ─────────────── Mobile Fixes (all small screens) ─────────────── */

@media (max-width: 768px) {
  .contact-hero {
    min-height: 50vh;
    padding: 60px 0 40px;
  }

  .grid.md\\:grid-cols-2 {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .info-item i {
    font-size: 2.4rem;
    margin: 0;
  }

  .map-container iframe {
    height: 300px; /* Shorter on mobile */
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .form-group label {
    font-size: 1rem;
  }
}

/* Extra small phones (< 480px) */
@media (max-width: 480px) {
  .contact-section {
    padding: 60px 0 40px;
  }

  .map-container iframe {
    height: 250px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 14px;
  }
}

/* Footer */
.footer {
  background: #1a3d1a; /* Deep green for elegance */
  color: white;
  padding: 80px 0 30px;
  margin-top: 50px;
}

.footer-container {
  max-width: 1400px;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.footer-logo img {
  height: 100px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.8rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 15px;
}

.tax-info {
  font-size: 0.6rem;
  opacity: 0.8;
  font-style: italic;
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links a,
.footer-contact li {
  margin-bottom: 12px;
  display: block;
  color: #ddd;
  transition: color 0.3s;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact i {
  color: var(--gold);
  margin-right: 10px;
  width: 20px;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--gold);
  color: #333;
  transform: translateY(-5px);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.newsletter-form input {
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  outline: none;
}

.newsletter-form .btn {
  padding: 14px;
  font-size: 1.1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: underline;
}

.footer-credit {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-credit a {
  color: var(--gold);
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }
  .footer-grid {
    gap: 40px;
    text-align: center;
  }
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .newsletter-form {
    align-items: center;
  }
  .newsletter-form input {
    width: 100%;
    max-width: 300px;
  }
}
