@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  --maroon: #800020;
  --maroon-light: #a04060;
  --maroon-dark: #600018;
  --white: #ffffff;
  --off-white: #f9f9f9;
  --light-grey: #e0e0e0;
  --text-dark: #333;
}

/* ======== GLOBAL STYLES ========== */
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
}

h1, h2, h3, h4, h5 {
  color: var(--maroon);
  margin-top: 0;
}

a {
  color: var(--maroon);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--maroon-light);
}

/* ======== HEADER & NAVIGATION ========== */
.simple-header {
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--light-grey);
}

.logo-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-left img {
  height: 50px;
  object-fit: contain;
}

.logo-left h1 {
  font-size: 1.5rem;
  font-style: italic;
  margin: 0;
  color: var(--maroon);
}

.nav-right ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav-right a {
  color: var(--maroon);
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.nav-right a:hover {
  color: var(--maroon-light);
}

/* ======== DONATE BUTTON ========== */
.donate-btn {
  background-color: var(--maroon);
  color: var(--white) !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.donate-btn:hover {
  background-color: var(--maroon-dark);
  color: var(--white) !important;
}

/* ======== SLIDESHOW ========== */
.slideshow-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.slide {
  display: none;
  width: 100%;
}

.slide img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

/* ======== CONTENT SECTIONS ========== */
section {
  padding: 3rem 2rem;
  text-align: center;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

section p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  color: #555;
}

/* ======== FEATURE CARDS ========== */
.feature-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--off-white);
}

.feature-card {
  width: 280px;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  background: var(--white);
  border: 2px solid var(--maroon);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.feature-card h3 {
  color: var(--maroon);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

.feature-icon i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--maroon);
}

/* ======== BUTTONS ========== */
.btn-container {
  text-align: center;
  margin-top: 2rem;
}

.view-gallery-btn, .primary-btn {
  display: inline-block;
  background-color: var(--maroon);
  color: var(--white) !important;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.view-gallery-btn:hover, .primary-btn:hover {
  background-color: var(--maroon-dark);
  color: var(--white) !important;
}

/* ======== FOOTER ========== */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: var(--maroon);
  color: var(--white);
}

footer a {
  color: var(--white);
}

footer a:hover {
  color: var(--light-grey);
  text-decoration: underline;
}

/* ======== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  .simple-header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .nav-right ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  section {
    padding: 2rem 1rem;
  }
  
  section h2 {
    font-size: 2rem;
  }
  
  .logo-left h1 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .logo-left img {
    height: 40px;
  }
  
  .logo-left h1 {
    font-size: 1.1rem;
  }
  
  .nav-right a {
    font-size: 0.9rem;
  }
  
  .donate-btn, .view-gallery-btn, .primary-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}