* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: "Open Sans", sans-serif;
}


:root {
  --text-color: #000;
  --header-text-color: #fff;
  --bg-color: #fff;
  --bg-color-faint: #f4f4f4;
  --main-color: #e5b80b;

  --main-color-start: #ffd700;
  --main-color-middle: #ffb400;
  --main-color-end: #d4af37;

  --primary-bg: linear-gradient(
    45deg,
    var(--main-color-start),
    var(--main-color-middle),
    var(--main-color-end)
  );

  --h1-font: 6rem;
  --h2-font: 3rem;
  --p-font: 1rem;
}

body {
  color: var(--text-color);
  background: var(--bg-color);
  padding: auto;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  margin: 0;
}

.gold-text {
  color: transparent;
  background: var(--primary-bg);
  -webkit-background-clip: text;
  background-clip: text;
}

.icon-gradient {
  color: transparent;
  background: var(--primary-bg);
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
}

section {
  padding: 10px 5%;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.header-section {
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 10;
  transition: all 0.5s ease;
  padding: 16px;
  gap: 5px;
}


.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.h-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.h-right a:hover {
  color: var(--main-color);
  transform: translateY(-3px);
}

.header-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#menu-icon {
  display: flex;
  align-items: center;
  color: var(--header-text-color);
}

.h-right a:first-child {
  color: var(--header-text-color);
  font-size: var(--p-font);
  margin-right: 8px;
}

.h-right a {
  vertical-align: middle;
  margin-right: 18px;
  margin-left: 5px;
  color: var(--header-text-color);
  font-size: 20px;
  transition: all 0.5s ease;
}



header .logo img {
  max-height: 60px;
}

.navbar {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  padding: 20px 0;
  gap: 20px;
  transition: right 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.navbar.active {
  display: flex;
  justify-content: center;
  align-items: center;
  right: 0;
  position: fixed;
  top: 0;
  /* right: -100%; */
  width: 50%; 
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column; 
  z-index: 999;
  gap: 50px;
}

header.sticky {
  background: rgba(0, 0, 0, 0.925);
}

.navbar a {
  color: var(--header-text-color);
  font-size: var(--p-font);
  font-weight: 500;
  margin: 15px 22px;
}

.navbar a:hover {
  color: var(--main-color);
}

.activePage a {
  background: var(--primary-bg);
  color: var(--text-color);
  font-weight: 600;
  border-radius: 5px;
  padding: 10px 20px;
}

.activePage a:hover {
  color: var(--header-text-color);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* button */


.btn:hover {
  transform: translateX(10px);
  border: 2px solid var(--text-color);
  background: transparent;
  color: var(--text-color);
}

.btn:hover {
  transform: translateX(10px);
  border: 2px solid var(--text-color);
  background: transparent;
  color: var(--text-color);
}

.donate-btn:hover {
  transform: translateX(10px);
  border: 2px solid var(--bg-color);
  background: transparent;
  color: var(--header-text-color);
}






/* hero section */


#hero-section {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: bottom center;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to left,
      rgba(0, 0, 0, 0.769),
      rgba(0, 0, 0, 0.61)),
    url("../img/gallery/IMG_6987.png");
}

.hero-card {
  margin: var(--base-margin);
  display: flex;
  flex-direction: column;
  padding-top: 64px;
  justify-items: center;
  align-items: start;
  gap: 10px;
  justify-content: center;
}

#hero-subtitle {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}

#hero-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--header-text-color);
  animation: fadeIn 1s ease-in-out;
}

#hero-description {
  font-size: var(--p-font);
  font-weight: 500;
  line-height: 30px;
  color: #ffffffab;
  margin-bottom: 35px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* Responsive Styles */

@media (min-width: 768px) {

  section {
    padding: 15px 15%;
  }

  header .logo img {
    max-height: 70px;
  }

  .h-right a:first-child {
    font-size:24px;
 
  }

  #menu-icon {
    font-size: 40px;
  }

  .h-right a {
    font-size:24px;
   
  }

  
  .hero-card {
    margin:32px;
  }
  

  #hero-subtitle {
    font-size: 18px;
    letter-spacing: 6px;
  }


  #hero-title {
    font-size: 54px;
    line-height: 1.7;
  }
  

  #hero-description {
    font-size: 28px;
    line-height: 2.0;
  }
}

@media (min-width: 1024px) {

  section {
    padding: 70px 17% 60px;
    width: 100%;
  }

  header.sticky {
    padding: 17px 5%;
    background: rgba(0, 0, 0, 0.666);
    backdrop-filter: blur(35px);
  }

  .header-section {
    top: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 5%;
  }

  header .logo img {
    max-height: 70px;
  }

  .logo {
    justify-content: center;
  }
  

  #menu-icon {
    display: none;
  }

  .h-right a:first-child {
    font-size:14px;
  }

  .h-right a {
    font-size: 14px;
  }

  .navbar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: static;
    background: transparent;
    padding: 0;
    flex: 2;
    gap: .05rem;
  }

  .h-right {
    gap:.5rem;
  }

  #hero-section {
   
    height: 90vh;

  }

  
  .hero {
    height: 100%;
  }

  .hero-card {
    padding: 27px 10%;
  }

  #hero-subtitle {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 12px;
  }

  #hero-title {
    font-size: 3.5rem;
    line-height: 1.4;
  }

  #hero-description {
    font-size: 1.2rem;
    line-height: 2.0;
  }
}
