@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
.kaushan-script-regular {
  font-weight: 400;
  font-style: normal;
}



*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  
}

/* Define CSS variables for maintainability */
:root {
  --header-bg: #0c0816ad;
  --header-z-index: 999;
  --content-z-index: 888;
  --overlay-z-index: 777;
  --img-z-index: 0;
  --padding-large: 200px;
  --padding-small: 20px;
  --button-bg: rgba(234, 238, 8, 0.712);
  --button-hover-bg: gold;
  --button-hover-color: #ffffff;
  --media-icon-color: #e3e3e7;
  --media-icon-hover-color: gold;
  --media-icon-hover-scale: 1.3;
  --slider-nav-btn-bg: #fff;
  --slider-nav-btn-active-bg: rgb(69, 160, 221);
  --slider-nav-btn-hover-scale: 1.2;
  --primary-color: #ffffff;
  --hamburger-color: #dbd819;
  --link:#071ff1;
  --font-family: "Montserrat", sans-serif;

}

/* Reset default styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
  font-family: var(--font-family);
}

/* Header styles */
header {
  z-index: var(--header-z-index);
  position: fixed;
  background-color: var(--header-bg);
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px var(--padding-large);
  transition: 0.5s ease;
}

.Logo {
  text-indent: -999999px;
  width: 160px;
  height: 107px;
  background: url("images/log.png") no-repeat center center;
}


section {
  padding: 100px var(--padding-large);
}

.home {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.home:before {
  z-index: var(--overlay-z-index);
  content: '';
  position: absolute;
  background: rgba(251, 3, 3, 0.034);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.home .content {
  z-index: var(--content-z-index);
  color: #fff;
  width: 40%;
  margin-top: 50px;
  display: none;
}

.home .content.active {
  display:block;
}

.home .content h1 {
  font-size: 2.5em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.4%;
  line-height: 120%;
  margin-bottom: 7%;
  font-style: italic;
  color: white;
}

.home .content h1 span {
  font-size: 0.8em;
  font-weight: 600;
  font-style: italic;
}

.home .content p {
  margin-bottom: 25px;
}

.home .content a {
  background: var(--button-bg);
  padding: 1rem;  
  color: rgb(3, 10, 36);
  font-size: 1em;
  font-weight: 400;
  text-decoration: none;
  border-radius: 25px;
}

.home .content a:hover {
  background: var(--button-hover-bg);
  color: var(--button-hover-color);
}

.home .media-icons {
  z-index: var(--content-z-index);
  position: absolute;
  right: 30px;
  display: flex;
  flex-direction: column;
  transition: 0.5s ease;
}

.home .media-icons a {
  color: var(--media-icon-color);
  font-size: 1.5em;
  transition: 0.3s ease;
}

.home .media-icons a:not(:last-child) {
  margin-bottom: 25px;
}

.home .media-icons a:hover {
  transform: scale(var(--media-icon-hover-scale));
  color: var(--media-icon-hover-color);
}

.home img {
  z-index: var(--img-z-index);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-navigation {
  z-index: var(--content-z-index);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(80px);
  margin-bottom: 12px;
}

.slider-navigation .nav-btn {
  width: 12px;
  height: 12px;
  background: var(--slider-nav-btn-bg);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
  transition: 0.1s ease;
}

.slider-navigation .nav-btn.active {
  background: var(--slider-nav-btn-active-bg);
}

.slider-navigation .nav-btn:not(:last-child) {
  margin-right: 20px;
}

.slider-navigation .nav-btn:hover {
  transform: scale(var(--slider-nav-btn-hover-scale));
}

.img-slide {
  position: relative; 
  width: 100%;
  clip-path: circle(0% at 0 50%);
}

.img-slide.active {
  clip-path: circle(200% at 0 50%);
  transition: transform 200ms;
 
}

@media (max-width: 1920px) {
  header {
    padding: 12px var(--padding-small);
  }
  section {
    padding: 100px var(--padding-small);
  }
  .home .media-icons {
    right: 15px;
  }
}

@media (max-width: 320px) {
  header {
    padding: 10px 15px;
  }
  section {
    padding: 70px 15px;
  }
  .home .media-icons {
    right: 15px;
  }
  .home .content h1 {
    font-size: 2em;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 75px;
    margin-bottom: -10px;
    font-style: italic;
  }
  .home .content h1 span {
    font-size: 0.5em;
    font-weight: 600;
    font-style: italic;
  }
  .home .content p {
    margin-bottom: 20px;
  }
}


.footer {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 4rem 2rem 2rem; 
}

/* Back to Top Button Styles */
#backToTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #e5ddf3;
  color: #0e35e0;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#backToTop:hover {
  background-color: #e6cf00;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-section {
  display: flex;
  flex-direction:column;
  gap: 1.5rem;
}

.footer-logo {
  width: 50%;
  height: auto;
  margin-bottom:1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #ffffff;
  background-color: #333;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #f3db08;
  color: #1a1a1a;
  transform: translateY(-3px);
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.8rem;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: #f3db08;
}

.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn-donate {
  background-color: #f3db08;
  color: #1a1a1a;
}

.btn-subscribe {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #f3db08;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(243, 219, 8, 0.2);
}

.btn-donate:hover {
  background-color: #e6cf00;
}

.btn-subscribe:hover {
  background-color: #f3db08;
  color: #1a1a1a;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #333;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}

.footer-bottom p {
  margin: 0.5rem 0;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #f3db08;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.subscribe-form input {
  padding: 0.8rem;
  border: 1px solid #333;
  border-radius: 5px;
  background-color: #222;
  color: #ffffff;
}

.subscribe-form button {
  background-color: #f3db08;
  color: #1a1a1a;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #e6cf00;
}

@media (max-width: 768px) {
  .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .footer-section {
      align-items: flex;
      flex: 2 2 calc(50% - 4rem);
  }

  .social-links {
      justify-content: center;
  }

  .footer-buttons {
      align-items: stretch;
  }
}





