@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

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

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat:ital", "Roboto", sans-serif;
}

.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

/* 
//////////////////////////////////////////////////////////////////////////////////////////////
HEADER SECTION

//////////////////////////////////////////////////////////////////////////////////////
*/
header {
  background: linear-gradient(#8e0e00, #1f1c18);

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.2rem;
}

.header-img {
  width: 25%;
}

.header-lists {
  display: flex;
  gap: 4.8rem;
  list-style: none;
}

.header-links:link,
.header-links:visited {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Montserrat:ital";
  text-decoration: none;
  color: #fff;
  transition: all 0.5 ease-out;
}

.header-links:hover,
.header-links:active {
  color: #e03131;
}

/* MOBILE NAV */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 4.8rem;
  color: #fff;

  display: none;
}

.btn-mobile-nav .fa-xmark {
  display: none;
}

/* 
//////////////////////////////////////////////////////////////////////////////////////////////
HERO SECTION

//////////////////////////////////////////////////////////////////////////////////////
*/

.section-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/cool.jpg");
  height: 80vh;
  background-size: cover;
  background-position: 50% 45%;
}

.hero-container {
  width: 50%;
  text-align: center;
  transform: translateY(15rem);
}

.hero-heading {
  font-size: 5.2rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #ffffff;
}

.hero-text {
  font-size: 2rem;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 8rem;
  color: #e6e6e6;
}

.btn:link,
.btn:visited {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #e03131;
  padding: 1.6rem 3.2rem;
  text-decoration: none;
  transition: all 0.3s ease-in;
  border-radius: 8px;
}

.btn:hover,
.btn:active {
  background-color: #8e0e00;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;

  color: #cccccc;
  padding: 1rem 0;
}

.marquee span {
  display: inline-block;
  padding-left: 100%; /* start off-screen */
  animation: scroll-text 30s linear infinite;
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: capitalize;
  margin-top: 8rem;
}

@keyframes scroll-text {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* 
//////////////////////////////////////////////////////////////////////////////////////////////
ABOUT US SECTION

//////////////////////////////////////////////////////////////////////////////////////
*/

.section-about {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../img/dove1.jpg);
  height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.about {
  color: #ffffff;
  width: 32%;
  position: absolute;
  top: 10rem;
  left: 20rem;
}

.about-heading {
  font-size: 3.2rem;
  font-weight: 500;
  font-family: "Roboto";
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.about-text {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.8;
  font-family: inherit;
  font-style: italic;
  color: #cccccc;
  margin-bottom: 6rem;
}

/* 
//////////////////////////////////////////////////////////////////////////////////////////////
INTRODUCTION  SECTION

//////////////////////////////////////////////////////////////////////////////////////
*/

.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 1fr 1fr 1fr */
  align-items: center;
  gap: 2rem; /* space between grid items */
  justify-items: center; /* optional – centers items horizontally inside cells */
}

.intro-box {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%; /* fills its grid cell */
  max-width: 80rem;
  height: 60rem;
}

.intro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.intro-box:hover .intro-img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.inner-container {
  position: absolute;
  top: 30rem;
  left: 20rem;
  z-index: 2;
}

.intro-heading {
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  font-family: "Montserrat";
  font-style: italic;
  margin-bottom: 1rem;
}

.intro-request {
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.1;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 4rem;
}

.intro-btn:link,
.intro-btn:visited {
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background-color: #c92a2a;
  padding: 1.2rem 2.4rem;
  text-transform: uppercase;
  transition: all 0.3s ease-in;
}

.intro-btn:hover,
.intro-btn:active {
  background-color: #8e0e00;
}

.intro-box:hover .intro-img {
  transform: scale(1.1);
}

/* 
//////////////////////////////////////////////////////////////////////////////////////////////
SALVATION SECTION

//////////////////////////////////////////////////////////////////////////////////////
*/

.section-salvation {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../img/dove1.jpg);
  background-size: cover;
  background-position: center;
  padding-bottom: 6rem;
}

.faq-container {
  max-width: 100rem;
}

.faq-heading {
  font-size: 3.6rem;
  font-weight: 500;
  color: #fff;
  font-family: "Montserrat";
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding-top: 6rem;
}

.faq-text {
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 3.2rem;
  color: #ccc;
  text-align: center;
  text-transform: uppercase;
}

.faq {
  border-bottom: 1px solid #ccc;
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 2.4rem;
  font-weight: 500;
  color: #e6e6e6;
  font-family: "Roboto";
  font-style: italic;
}

.question {
  font-size: 3.2rem;
  font-weight: 400;
  font-style: italic;
  color: #fff;
}

.toggle {
  transition: transform 0.3s ease;
  color: #e6e6e6;
  font-size: 3.2rem;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  padding: 1rem;
  font-size: 2rem;
  line-height: 1.6;
  color: #d6d6d6;
}

.faq.active .faq-content {
  max-height: 200px;
  opacity: 1;
}
.faq.active .toggle {
  transform: rotate(180deg);
}

/* 
//////////////////////////////////////////////////////////////////////////////////////////////
FOOTER SECTION

//////////////////////////////////////////////////////////////////////////////////////
*/

footer {
  background: linear-gradient(#8e0e00, #1f1c18);
  padding: 6rem 0 8rem 0;
}

.section-footer {
  display: grid;
  grid-template-columns: 20fr 35fr 20fr 25fr;
  column-gap: 5rem;
}

.footer-logo {
  width: 50%;
  cursor: pointer;
}

.footer-head {
  font-size: 2.2rem;
  font-weight: 500;
  font-family: "Montserrat";
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #ffffff;
}

.footer-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #e6e6e6;
  cursor: pointer;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-links:link,
.footer-links:visited {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  color: #e6e6e6;
  transition: color 0.3s ease;
}

.footer-links:hover,
.footer-links:active {
  color: #ffcc00;
}

.social-icons {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  margin-top: 2rem;
}

.icon {
  font-size: 4rem;
  color: #e6e6e6;
  transition: color 0.3s ease;
  text-decoration: none;
}

.icon:hover {
  color: #ffcc00;
}

.copyright {
  font-size: 1rem;
  font-weight: 400;
  color: #ccc;
  margin-top: 8rem;
}
