@font-face {
  font-family: "Inria Serif";
  src: url("../fonts/InriaSerif-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}

/* ==============================
   CSS Variables
   ============================== */
:root {
  --color-primary: #7ea8c9;
  --color-primary-dark: #5d8fb3;
  --color-primary-light: #a3c4db;
  --color-primary-glow: rgba(126, 168, 201, 0.35);
  --color-dark: #1a1918;
  --color-dark-light: #2a2925;
  --color-dark-surface: #333230;
  --color-white: #ffffff;
  --color-gray: #666;
  --color-gray-light: #f4f6f8;
  --color-text: #2c2b28;
  --color-text-muted: #8a8a8a;
  --gradient-primary: linear-gradient(135deg, #7ea8c9 0%, #5d8fb3 100%);
  --gradient-dark: linear-gradient(180deg, #1a1918 0%, #2a2925 100%);
  --gradient-hero: linear-gradient(135deg, #5d8fb3 0%, #7ea8c9 40%, #a3c4db 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 50px rgba(0,0,0,0.18);
  --shadow-glow: 0 4px 20px var(--color-primary-glow);
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==============================
   Reset & Base
   ============================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inria Serif", Georgia, "Times New Roman", serif;
  line-height: 1.6;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark);
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) var(--color-dark);
  scroll-behavior: smooth;
}

/* Post Category Badges (detail page) */
.postCategoriaBadges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

/* ==============================
   Container
   ============================== */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  background: var(--gradient-hero);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ==============================
   Header
   ============================== */
.headerContainer {
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.topHeader {
  background: var(--gradient-dark);
  display: flex;
  justify-content: center;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  width: 100%;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
}

.topHeader img {
  object-fit: contain;
  height: auto;
  width: 3.5rem;
  transition: transform 0.4s var(--ease-spring);
  filter: drop-shadow(0 2px 8px rgba(126, 168, 201, 0.4));
}

.topHeader img:hover {
  transform: scale(1.12) rotate(5deg);
}

.topHeader h1 {
  color: white;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.topHeader h1:hover {
  color: var(--color-primary-light);
}

.bottomHeader {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  width: 100%;
  padding: 0.5rem 2rem;
  font-weight: bold;
  position: relative;
}

/* ==============================
   Navigation
   ============================== */
.navMenu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.25rem;
}

.navMenu a {
  color: var(--color-dark);
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  position: relative;
  padding: 0.5rem 0.75rem;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
}

.navMenu a::after {
  content: '';
  position: absolute;
  bottom: 0.15rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s var(--ease-out);
  border-radius: 1px;
}

.navMenu a:hover::after {
  width: 70%;
}

.navMenu a:hover {
  color: var(--color-primary-dark);
}

.dropdown {
  position: relative;
}

.dropdownToggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  color: var(--color-dark);
  padding: 0.5rem 0.75rem;
  transition: all 0.3s ease;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
}

.dropdownToggle i {
  font-size: 0.6rem;
  transition: transform 0.3s var(--ease-out);
}

.dropdown:hover .dropdownToggle i {
  transform: rotate(180deg);
}

.dropdown:hover .dropdownToggle {
  color: var(--color-primary-dark);
}

.dropdownMenu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  min-width: 280px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(126, 168, 201, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-out);
  z-index: 100;
  padding: 0.5rem;
}

.dropdown:hover .dropdownMenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdownMenu a {
  display: block;
  padding: 0.65rem 1rem;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.25s var(--ease-out);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

.dropdownMenu a::after {
  display: none;
}

.dropdownMenu a:hover {
  background: rgba(126, 168, 201, 0.12);
  color: var(--color-primary-dark);
  padding-left: 1.25rem;
}

/* Hamburger */
.menuHamburger {
  display: none;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  z-index: 1001;
}

.hamburgerIcon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
}

.hamburgerIcon span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.menuText {
  display: none;
  color: var(--color-dark);
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.menuHamburger.active .hamburgerIcon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menuHamburger.active .hamburgerIcon span:nth-child(2) {
  opacity: 0;
}

.menuHamburger.active .hamburgerIcon span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.menuHamburger.active .menuText {
  color: white;
}

/* ==============================
   Hero
   ============================== */
.homeHero {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  width: 100%;
  margin: 0;
  padding: 3rem 2rem;
  gap: 2rem;
}

.homeHeroLeft {
  width: 45%;
}

.homeHeroLeft h1 {
  color: white;
  width: 100%;
  font-size: 2.2rem;
  text-align: left;
  line-height: 1.35;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.01em;
}

.homeHeroRight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 55%;
  gap: 1.25rem;
}

.homeHeroRight h2 {
  color: white;
  font-size: 1.6rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
}

.homeHeroRight h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: white;
  margin: 0.6rem auto 0;
  border-radius: 2px;
  opacity: 0.7;
}

/* ==============================
   Posts Grid (Hero)
   ============================== */
.postsGrid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.postCard {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.75rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: all 0.35s var(--ease-out);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.postCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: white;
}

.postImage {
  width: 90px;
  height: 90px;
  min-width: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.postImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.postCard:hover .postImage img {
  transform: scale(1.1);
}

.postInfo {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.postInfo h3 {
  font-size: 0.95rem;
  color: var(--color-dark);
  line-height: 1.35;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.postCard:hover .postInfo h3 {
  color: var(--color-primary-dark);
}

.postDate {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.postDate i {
  font-size: 0.7rem;
  color: var(--color-primary);
}

.btnAllPosts {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  transition: all 0.35s var(--ease-out);
  margin-top: 0.5rem;
  align-self: center;
}

.btnAllPosts:hover {
  background: white;
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btnAllPosts i {
  transition: transform 0.3s var(--ease-out);
}

.btnAllPosts:hover i {
  transform: translateX(4px);
}

.text-muted {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* ==============================
   Banner Section
   ============================== */
.bannerSection {
  max-width: 100%;
  width: 100%;
  height: 18rem;
  overflow: hidden;
  position: relative;
}

.bannerSection::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(126,168,201,0.15) 0%, transparent 40%, transparent 60%, rgba(26,25,24,0.2) 100%);
  pointer-events: none;
}

.bannerSection img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.bannerSection:hover img {
  transform: scale(1.06);
}

/* ==============================
   Section: Demetrio
   ============================== */
.demetrioSection {
  width: 100%;
  background: var(--gradient-dark);
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.demetrioContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  gap: 3rem;
}

.demetrioLeft {
  max-width: 100%;
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demetrioLeft img {
  object-fit: cover;
  height: auto;
  width: 100%;
  max-width: 22rem;
  transition: transform 0.6s var(--ease-out);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.demetrioLeft img:hover {
  transform: scale(1.03) translateY(-4px);
}

.demetrioRight {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  width: 65%;
  gap: 1.25rem;
}

.demetrioRight a:nth-child(1) {
  color: white;
  font-size: 1.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.demetrioRight a:nth-child(1):hover {
  color: var(--color-primary-light);
}

.demetrioRight p {
  font-size: 1.1rem;
  text-align: justify;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.demetrioRight a:nth-last-child(1) {
  color: white;
  background: var(--gradient-primary);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-xl);
  align-self: flex-start;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.4s var(--ease-out);
  box-shadow: var(--shadow-glow);
  letter-spacing: 0.02em;
}

.demetrioRight a:nth-last-child(1):hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--color-primary-glow);
  filter: brightness(1.1);
}

/* ==============================
   Section: Maximo
   ============================== */
.maximoSection {
  width: 100%;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}

.maximoContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  gap: 3rem;
}

.maximoLeft {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  width: 65%;
  gap: 1.25rem;
}

.maximoLeft a:nth-child(1) {
  color: white;
  font-size: 1.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.maximoLeft a:nth-child(1):hover {
  color: var(--color-dark);
}

.maximoLeft p {
  font-size: 1.1rem;
  text-align: justify;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.disclaimer {
  font-style: italic;
  opacity: 0.8;
  border-left: 3px solid rgba(255, 255, 255, 0.5);
  padding-left: 1.25rem;
  font-size: 1rem !important;
}

.maximoRight {
  max-width: 100%;
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.maximoRight img {
  object-fit: cover;
  height: auto;
  width: 100%;
  max-width: 22rem;
  transition: transform 0.6s var(--ease-out);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.maximoRight img:hover {
  transform: scale(1.03) translateY(-4px);
}

/* ==============================
   Section: Donate
   ============================== */
.donateSection {
  width: 100%;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-dark);
  position: relative;
}

.donateContainer {
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 1.5rem;
}

.donateContainer > img {
  transition: transform 0.6s var(--ease-out);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
}

.donateContainer > img:hover {
  transform: scale(1.02);
}

.donateContainer a:nth-child(2) {
  color: white;
  background: var(--gradient-primary);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-xl);
  align-self: center;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.4s var(--ease-out);
  box-shadow: var(--shadow-glow);
  letter-spacing: 0.02em;
}

.donateContainer a:nth-child(2):hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--color-primary-glow);
  filter: brightness(1.1);
}

.donateContainer p {
  width: 85%;
  text-align: justify;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.historyButton {
  background-image: url("../img/button-banner.png");
  background-position: center;
  background-size: cover;
  width: 70%;
  text-align: center;
  color: white;
  font-size: 1.2rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.5s var(--ease-out);
  box-shadow: var(--shadow-md);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.05em;
}

.historyButton::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(126, 168, 201, 0.3) 0%, transparent 50%);
  transition: opacity 0.5s ease;
  opacity: 0;
}

.historyButton:hover::before {
  opacity: 1;
}

.historyButton:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

/* ==============================
   Footer
   ============================== */
footer {
  display: flex;
  gap: 3rem;
  padding: 3rem 2rem;
  color: white;
  max-width: 1200px;
  width: 100%;
}

footer p {
  font-weight: bold;
}

.footerLeft {
  max-width: 100%;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.75rem;
}

.footerLeft h1 {
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footerLeft h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.footerLeft p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.footerRight {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 100%;
  width: 70%;
  margin-top: 0.5rem;
}

.footerRightColumn {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footerCard {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
}

.footerCard:hover {
  background: rgba(126, 168, 201, 0.15);
  color: white;
  transform: translateX(4px);
}

.footerCard p {
  font-weight: normal;
  font-size: 0.88rem;
}

.footerCard i {
  font-size: 0.8rem;
  color: var(--color-primary);
  transition: transform 0.3s var(--ease-spring);
  opacity: 0.7;
}

.footerCard:hover i {
  transform: scale(1.2);
  opacity: 1;
}

/* ==============================
   Responsive: Tablet (1024px)
   ============================== */
@media (max-width: 1024px) {
  .bottomHeader {
    padding: 0.5rem 1.5rem;
  }

  .navMenu {
    gap: 0;
  }

  .navMenu a,
  .dropdownToggle {
    font-size: 0.82rem;
    padding: 0.4rem 0.5rem;
  }

  .homeHero {
    padding: 2rem 1.5rem;
  }

  .homeHeroLeft h1 {
    font-size: 1.7rem;
  }
}

/* ==============================
   Responsive: Mobile (768px)
   ============================== */
@media (max-width: 768px) {
  .topHeader h1 {
    font-size: 0.95rem;
    text-align: center;
  }

  .bottomHeader {
    justify-content: center;
    padding: 0.75rem 1.5rem;
    min-height: 48px;
  }

  .menuHamburger {
    display: flex;
  }

  .menuText {
    display: block;
  }

  .menuHamburger.active {
    position: fixed;
    top: 1rem;
    right: 1.5rem;
  }

  .menuHamburger.active .hamburgerIcon span {
    background: white;
  }

  .navMenu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(26, 25, 24, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 9999;
  }

  .navMenu.active {
    display: flex;
  }

  .menuHamburger {
    z-index: 10000;
  }

  .navMenu a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    padding: 0.9rem 2rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
  }

  .navMenu a:hover {
    background: rgba(126, 168, 201, 0.15);
    color: var(--color-primary-light);
  }

  .navMenu a::after {
    display: none;
  }

  .dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dropdownToggle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    padding: 0.9rem 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .dropdownToggle i {
    font-size: 0.7rem;
    position: static;
  }

  .dropdown.open .dropdownToggle {
    background: rgba(126, 168, 201, 0.12);
    color: white;
  }

  .dropdownMenu {
    position: static;
    transform: none;
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    min-width: 100%;
    border-radius: 0;
    box-shadow: none;
    border: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    padding: 0;
    transition: max-height 0.35s var(--ease-out);
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: none;
  }

  .dropdown.open .dropdownMenu {
    max-height: 500px;
  }

  .dropdown.open .dropdownToggle i {
    transform: rotate(180deg);
  }

  .dropdownMenu a {
    color: rgba(255, 255, 255, 0.75);
    padding: 0.7rem 1rem;
    font-size: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    justify-content: center;
  }

  .dropdownMenu a:hover {
    background: rgba(126, 168, 201, 0.15);
    color: var(--color-primary-light);
    padding-left: 1rem;
  }

  /* Hero */
  .homeHero {
    flex-direction: column;
    padding: 2rem 1.25rem;
    gap: 1.5rem;
  }

  .homeHeroLeft,
  .homeHeroRight {
    width: 100%;
    padding: 0;
  }

  .homeHeroLeft h1 {
    font-size: 1.4rem;
    width: 100%;
    text-align: center;
  }

  .homeHeroRight h2 {
    font-size: 1.4rem;
  }

  .postCard {
    padding: 0.6rem;
    gap: 0.75rem;
  }

  .postImage {
    width: 75px;
    height: 75px;
    min-width: 75px;
  }

  .postInfo h3 {
    font-size: 0.88rem;
  }

  /* Banner */
  .bannerSection {
    height: 10rem;
  }

  /* Sections */
  .demetrioSection,
  .maximoSection,
  .donateSection {
    padding: 2.5rem 1.25rem;
  }

  .demetrioContainer,
  .maximoContainer {
    flex-direction: column;
    gap: 1.5rem;
  }

  .demetrioLeft,
  .demetrioRight,
  .maximoLeft,
  .maximoRight {
    width: 100%;
  }

  .demetrioLeft img,
  .maximoRight img {
    max-width: 14rem;
  }

  .maximoContainer {
    flex-direction: column-reverse;
  }

  .demetrioRight a:nth-child(1),
  .maximoLeft a:nth-child(1) {
    font-size: 1.3rem;
    text-align: center;
  }

  .demetrioRight p,
  .maximoLeft p {
    font-size: 0.95rem;
  }

  .demetrioRight a:nth-last-child(1) {
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
    align-self: center;
  }

  /* Donate */
  .donateContainer a:nth-child(2) {
    font-size: 1rem;
    padding: 0.85rem 1.5rem;
    text-align: center;
  }

  .donateContainer > img {
    width: 100%;
  }

  .donateContainer p {
    width: 100%;
    font-size: 0.95rem;
  }

  .historyButton {
    width: 100%;
    font-size: 1rem;
    height: 5rem;
  }

  /* Footer */
  footer {
    flex-direction: column;
    padding: 2rem 1.25rem;
    gap: 2rem;
  }

  .footerLeft,
  .footerRight {
    width: 100%;
  }

  .footerRight {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ==============================
   Responsive: Small (480px)
   ============================== */
@media (max-width: 480px) {
  .topHeader {
    padding: 0.5rem;
    gap: 0.5rem;
  }

  .topHeader img {
    width: 2.5rem;
  }

  .topHeader h1 {
    font-size: 0.8rem;
  }

  .homeHeroLeft h1 {
    font-size: 1.2rem;
  }

  .homeHeroRight h2 {
    font-size: 1.2rem;
  }

  .demetrioRight a:nth-child(1),
  .maximoLeft a:nth-child(1) {
    font-size: 1.1rem;
  }
}
