* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #f5f0e6;
  color: #2e2e2e;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.45);
  padding: 20px;
}

.hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  max-width: 800px;
}

.hero-overlay p {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-primary {
  background-color: #6b4226;
  color: white;
}

.btn-secondary {
  background-color: #2e5339;
  color: white;
}

/* ABOUT PAGE */
.about-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 30px;
  line-height: 1.8;
  font-size: 1.05rem;
  color: #2e2e2e;
}

.about-section h1 {
  font-size: 2.8rem;
  color: #2e5339;
  margin-bottom: 30px;
  text-align: center;
}

.about-section h2 {
  font-size: 1.8rem;
  color: #6b4226;
  margin-top: 50px;
  margin-bottom: 20px;
  border-bottom: 3px solid #6b4226;
  padding-bottom: 8px;
  display: inline-block;
}

.about-section p {
  margin-bottom: 22px;
  color: #3a3a3a;
}

.about-section ul {
  margin: 20px 0 30px 20px;
}

.about-section ul li {
  margin-bottom: 12px;
  padding-left: 10px;
}

.about-section ul li::marker {
  color: #2e5339;
  font-weight: bold;
}

/* GALLERY PAGE */
.gallery-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 30px;
  text-align: center;
}

.gallery-section h1 {
  font-size: 2.8rem;
  color: #2e5339;
  margin-bottom: 15px;
}

.gallery-intro {
  font-size: 1.1rem;
  color: #3a3a3a;
  margin-bottom: 50px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 70px;
}

.gallery-video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.gallery-section h2 {
  font-size: 1.8rem;
  color: #6b4226;
  margin-bottom: 30px;
  border-bottom: 3px solid #6b4226;
  padding-bottom: 8px;
  display: inline-block;
}

.platform-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.platform-card {
  background: #f5f0e6;
  border: 2px solid #6b4226;
  border-radius: 12px;
  padding: 25px;
  width: 200px;
}

.platform-card h3 {
  color: #2e5339;
  margin-bottom: 8px;
}

.platform-card .handle {
  color: #3a3a3a;
  margin-bottom: 12px;
}

.platform-card a {
  color: #6b4226;
  font-weight: bold;
  text-decoration: none;
}

.platform-card a:hover {
  text-decoration: underline;
}

/* SUPPORT PAGE */
.support-section {
  max-width: 750px;
  margin: 0 auto;
  padding: 80px 30px;
  text-align: center;
}

.support-section h1 {
  font-size: 2.8rem;
  color: #2e5339;
  margin-bottom: 20px;
}

.support-intro {
  font-size: 1.1rem;
  color: #3a3a3a;
  margin-bottom: 50px;
  line-height: 1.7;
}

.support-card {
  background: #f5f0e6;
  border: 2px solid #6b4226;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  margin-bottom: 50px;
}

.support-card h2 {
  color: #6b4226;
  margin-bottom: 15px;
}

.support-card ul {
  margin-left: 20px;
  line-height: 1.8;
}

.donate-box {
  margin-bottom: 40px;
}

.donate-box p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.donate-btn {
  font-size: 1.1rem;
  padding: 16px 40px;
}

.thank-you {
  font-style: italic;
  color: #6b4226;
}

/* CONTACT PAGE */
.contact-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 30px;
  text-align: center;
}

.contact-section h1 {
  font-size: 2.8rem;
  color: #2e5339;
  margin-bottom: 20px;
}

.contact-intro {
  font-size: 1.1rem;
  color: #3a3a3a;
  margin-bottom: 50px;
}

.contact-card {
  background: #f5f0e6;
  border: 2px solid #6b4226;
  border-radius: 12px;
  padding: 35px;
}

.contact-card h2 {
  color: #6b4226;
  margin-bottom: 10px;
  margin-top: 25px;
}

.contact-card a {
  color: #2e5339;
  font-weight: bold;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 10px;
}

/* CONTACT PAGE (UPDATED) */
.contact-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-bottom: 50px;
}

.contact-grid .contact-card {
  flex: 1;
  min-width: 260px;
  text-align: left;
}

.contact-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.contact-photo {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* NAV BAR */
.main-nav {
  display: flex;
  gap: 25px;
  justify-content: center;
  padding: 20px;
  background: #2e5339;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.main-nav a:hover {
  text-decoration: underline;
}/* CONTACT ICONS & WARMER STYLE */
.contact-icon {
  font-size: 2rem;
  color: #6b4226;
  margin-bottom: 12px;
  display: block;
}

.contact-socials a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-socials i {
  font-size: 1.2rem;
}@media (max-width: 600px) {
  .main-nav {
    flex-wrap: wrap;
    padding: 10px;
  }
  .main-nav a {
    font-size: 14px;
    margin: 5px;
  }
  .gallery-video {
    width: 100%;
    height: auto;
  }
}