/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #c62828;
  --red-dark: #a31d1d;
  --black: #1a1a1a;
  --white: #fff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-600: #666;
  --gray-800: #333;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 2px solid var(--red);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--red); }
.btn-sm { padding: 8px 20px; font-size: 0.9rem; }
.btn-large { padding: 16px 40px; font-size: 1.15rem; }

/* === Nav === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled { background: rgba(26,26,26,0.95); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; }
.nav-logo img { border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(26,26,26,0.97); flex-direction: column; padding: 20px 24px; gap: 16px;
  }
  .nav-links.open { display: flex; }
}

/* === Hero === */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: url('images/camp-front.jpg') center/cover no-repeat;
  text-align: center; color: var(--white);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 20px; }
.hero-logo { border-radius: 50%; margin: 0 auto 24px; border: 4px solid rgba(255,255,255,0.3); }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em;
  line-height: 1; margin-bottom: 8px;
}
.hero-tagline { font-size: 1.2rem; font-weight: 500; opacity: 0.9; margin-bottom: 16px; letter-spacing: 0.05em; text-transform: uppercase; }
.hero-sub { font-size: 1.3rem; opacity: 0.85; margin-bottom: 36px; max-width: 550px; margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === Sections === */
.section { padding: 80px 0; }
.section-alt { background: var(--gray-50); }
.section-title {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.02em;
  text-align: center; margin-bottom: 48px;
  position: relative;
}
.section-title::after {
  content: ''; display: block; width: 60px; height: 4px;
  background: var(--red); margin: 12px auto 0; border-radius: 2px;
}

/* === About === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-text p { margin-bottom: 16px; font-size: 1.05rem; }
.about-text h3 { font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; margin: 24px 0 12px; color: var(--red); }
.about-text ul { list-style: none; padding: 0; }
.about-text li { padding: 8px 0 8px 20px; position: relative; font-size: 1.02rem; }
.about-text li::before { content: ''; position: absolute; left: 0; top: 16px; width: 8px; height: 8px; background: var(--red); border-radius: 50%; }
.about-image img { border-radius: 8px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }

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

/* === Info Cards === */
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.card {
  background: var(--white); border-radius: 8px; padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.card-icon { font-size: 2.2rem; margin-bottom: 16px; }
.card h3 { font-family: var(--font-display); font-size: 1.3rem; text-transform: uppercase; margin-bottom: 8px; color: var(--red); }
.card p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.6; }
.card a { font-weight: 600; }

/* === Gallery === */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.gallery-item { overflow: hidden; border-radius: 8px; }
.gallery-item img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }

/* === Donate === */
.donate-content { max-width: 650px; margin: 0 auto; text-align: center; }
.donate-content p { font-size: 1.1rem; margin-bottom: 20px; }
.donate-content .btn { margin-top: 12px; }

/* === Join === */
.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.join-text p { font-size: 1.05rem; margin-bottom: 16px; }
.join-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group label { font-weight: 600; font-size: 0.9rem; color: var(--gray-800); }
.form-group input, .form-group textarea {
  padding: 12px 14px; border: 2px solid var(--gray-200); border-radius: 4px;
  font-family: var(--font-body); font-size: 1rem; transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
.join-form .btn { align-self: flex-start; border: none; }

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

/* === Footer === */
.footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 48px 0; text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; text-transform: uppercase; }
.footer-logo img { border-radius: 50%; }
.footer-tagline { font-style: italic; font-size: 1.05rem; }
.footer-email a { color: var(--red); font-weight: 600; }
.footer-copy { font-size: 0.85rem; margin-top: 8px; opacity: 0.5; }
