:root {
  --primary: #ff4343;
  --bg: #ffffff;
  --secondary: #060270;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  font-family: "poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "poppins" sans-serif;
  background-color: #fffdd7;
  color: transparent;
  min-height: 2000px;
}

/*Intro Screen*/
.intro {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  transition: 2s;
  animation: coloranimation 7s;
}

.logo-header {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  animation: coloranimation 7s;
}

@keyframes coloranimation {
  0% {
    background-color: #000;
    color: #fff;
  }

  20% {
    background-color: #000;
    color: #fff;
  }

  100% {
    background-color: #fff;
    color: #fff;
  }
}

.logo {
  position: relative;
  display: flexbox;
  bottom: -20px;
  opacity: 0;
}

.logo.active {
  bottom: 0;
  opacity: 1;
  transition: ease-in-out 0.5s;
}

.logo.fade {
  bottom: 150px;
  opacity: 0;
  transition: ease-in-out 0.5s;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 7%;
  background-color: rgba(255, 217, 0, 0.8);
  border-bottom: 1px solid #ff3a3a;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  animation: opacity 4s;
}

@keyframes opacity {
  0% {
    opacity: 0%;
  }
  50% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}

.navbar .navbar-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.navbar .navbar-logo span {
  color: var(--primary);
}

.navbar .navbar-nav a {
  color: #800000;
  display: inline-block;
  font-size: 1.3rem;
  margin: 0 1rem;
}

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

.navbar .navbar-nav a::after {
  content: "";
  display: block;
  padding-bottom: 0.5rem;
  border-bottom: 0.1rem solid var(--primary);
  transform: scaleX(0);
  transition: 0.2s linear;
}

.navbar .navbar-nav a:hover::after {
  transform: scaleX(0.5);
}

.navbar .navbar-extra a {
  color: #800000;
  margin: 0 0.5rem;
}

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

#menu {
  display: none;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("../img/header-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 20%;
  bottom: 0;
  background: linear-gradient(0deg, #fffdd7 8%, rgba(255, 255, 255, 0) 50%);
}

.hero .content {
  padding: 1.4rem 7%;
  max-width: 60rem;
}

.hero .content h1 {
  font-size: 4em;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0);
  line-height: 1.2;
}

.hero .content h1 span {
  color: var(--primary);
}

.hero .content p {
  color: #fff;
  font-size: 1.4rem;
  margin-top: 1rem;
  line-height: 1.4;
  font-weight: 300;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0);
}

.hero .content .cta {
  margin-top: 1rem;
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.4rem;
  color: #fff;
  background-color: var(--primary);
  border-radius: 0.5rem;
  box-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
  transition: all 0.3s ease;
}

.hero .content .cta:hover {
  background-color: #a82a2a;
}

/* Tabs */
.container {
  max-width: 100%;
  height: 100%;
  background-color: #fffdd7;
  border-radius: 10px;
  box-shadow: 0 8px 24px;
  margin-bottom: 3rem;
}

.wrapper {
  display: flex;
}

.indicator {
  padding: 1.5rem 0;
  color: #000;
  border-right: 3px solid rgb(255, 0, 0);
  padding: 6rem 0% 1.4rem;
}

.indicator li {
  display: flex;
  align-items: center;
  grid-gap: 0.5rem;
  padding: 10px 2rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  border-right: 3px solid transparent;
}

.indicator li i {
  font-size: 1rem;
}

.indicator li:hover {
  background: #ffbdbd;
  transition: all 0.3s ease;
}

.indicator li.active {
  border-right-color: red;
  color: rgb(73, 0, 0);
  background-color: #ff9292;
  transition: all 0.3s ease;
}

.content section {
  display: none;
}

.content section.active {
  display: block;
}

/* About Section */
.about {
  padding: 6rem 7% 1.4rem;
}

.about .atitle {
  color: #000;
  font-size: 1.5rem;
  text-align: center;
}

.about .atitle span {
  color: #ff4343;
}

.aimg {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 2rem 1rem;
}

.aimg img {
  width: 50%;
  align-items: center;
}

.about .acontent {
  text-align: justify;
  color: #000;
  list-style: none;
  font-size: 1.15rem;
}

.apengantar p {
  padding-bottom: 2rem;
  text-indent: 50px;
}

.apengantar ul {
  margin-left: 3rem;
}

.apengantar li {
  padding: 0.3rem;
  padding-left: 1rem;
}

.agkiibengkulu ul {
  margin-left: 3rem;
}

.agkiibengkulu h4 {
  padding-top: 2rem;
}

.agkiibengkulu li {
  padding: 0.3rem;
}
/* Struktur Organisasi Section */
.so {
  padding: 1rem 7% 1.4rem;
}

.so h2 {
  color: #060270;
}

.so .soimg {
  display: flex;
  justify-content: center;
  padding-bottom: 3rem;
}

.so .soimg img {
  max-width: 90%;
  align-items: center;
}

.so h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 3rem;
}

.so h2 span {
  color: var(--primary);
}

/* Profile So */
.profile-pemimpin {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.profile-pemimpin .container p {
  text-align: center;
  margin: 30px 0 10px 0;
  color: #800000;
  letter-spacing: 2px;
  font-weight: 400;
}

.profile-pemimpin .container h1,
.departemen h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: var(--secondary);
}

.profile-pemimpin .container .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.profile-pemimpin .container .wrapper .card {
  background-color: #2d2f83;
  padding: 40px 50px 0 50px;
  width: 400px;
  height: 205px;
  margin: 10px;
  border-radius: 10px;
  text-align: center;
}

.profile-pemimpin .container .wrapper .card .content h3 {
  font-size: 1.4rem;
  margin-top: 0px;
  color: #fff;
}

.profile-pemimpin .container .wrapper .card .content p {
  color: #ffffff;
  letter-spacing: 1px;
  margin: 0px;
}

/* Jadwal Pelayanan & Warta Jemaat Section */
.jpwj {
  text-align: center;
  padding: 6rem 7% 1.4rem;
}

.jpwj .jpwj-content {
  display: flex;
}

.jpwj .jpwj-img h1 {
  color: var(--secondary);
}

.jpwj .jpwj-img {
  flex: 1 1 1rem;
}

.jpwj .jpwj-img img {
  max-width: 650px;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
}

.jpwj .jpwj-img a {
  text-decoration: none;
  margin-left: 2rem;
  margin-top: 1rem;
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.4rem;
  color: #fff;
  background-color: var(--primary);
  border-radius: 0.5rem;
  box-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}

/* Kegiatan Terbaru */
.kt-title {
  margin-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  padding: 1rem 7% 1.4rem;
}

.slide-container {
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
}

.slide-content {
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}

.card {
  width: 320px;
  border-radius: 25px;
  background-color: #ffd2d2;
}

.image-content,
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}

.image-content {
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #752727;
  border-radius: 25px 25px 0 25px;
}

.overlay::before,
.overlay::after {
  content: " ";
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #752727;
}

.overlay::after {
  border-radius: 0 25px 0 0;
  background-color: #ffd2d2;
}

.card-image {
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}

.card-image .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #752727;
}

.name {
  font-size: 18px;
  font-weight: 700;
  color: #522e00;
}

.description {
  font-size: 14px;
  color: #8f5100;
}

.button {
  border: none;
  font-size: 16px;
  color: #fff;
  padding: 8px 16px;
  background-color: #a70000;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #ff0000;
}

.swiper-navBtn {
  color: #a70000;
  transition: color 0.3s ease;
}

.swiper-navBtn:hover {
  color: #ff0000;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 40px;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

/* Footer */
.layanan-pengaduan {
  margin-top: 3rem;
  background-color: #ffd2d2;
  color: var(--secondary);
  text-align: center;
  padding: 2rem;
  text-decoration: none;
}

.layanan-pengaduan a {
  color: var(--secondary);
  text-decoration: none;
}

.layanan-pengaduan .credit p {
  color: var(--secondary);
  font-weight: 500;
}

.layanan-pengaduan .credit a {
  color: var(--secondary);
  font-weight: 700;
}

/* Media Queries */

/* Laptop */
@media (max-width: 1440px) {
  html {
    font-size: 75%;
  }

  #menu {
    display: inline-block;
  }

  .navbar .navbar-nav {
    position: absolute;
    top: 100%;
    right: -100%;
    background-color: rgba(255, 217, 0, 0.8);
    width: 20rem;
    height: 100vh;
    transition: 0.3s;
  }

  .navbar .navbar-nav.active {
    right: 0;
  }

  .navbar .navbar-nav a {
    color: #800000;
    display: block;
    margin: 1.5rem;
    padding: 0.5rem;
    font-size: 2rem;
  }

  .navbar .navbar-nav a::after {
    transform-origin: 0 0;
  }

  .so {
    height: 550px;
    min-height: 100vh;
    display: contents;
    position: relative;
  }

  .profile-pemimpin .container .wrapper .card {
    padding: 30px 50px 0 50px;
    height: 125px;
  }

  .jpwj {
    height: 550px;
    min-height: 100vh;
    display: contents;
    position: relative;
    text-align: center;
  }

  .jpwj .jpwj-content {
    flex-wrap: wrap;
  }

  .jpwj .jpwj-content h1 {
    padding-top: 3rem;
  }
  .jpwj .jpwj-content .jpwj-img img {
    max-width: 400px;
  }

  .jpwj .jpwj-img a {
    margin-left: 20.5rem;
    margin-top: 1rem;
    padding: 1rem 3rem;
    width: 225px;
    display: flex;
  }
}

/* Laptop */
@media (max-width: 1024px) {
  html {
    font-size: 75%;
  }

  #menu {
    display: inline-block;
  }

  .navbar .navbar-nav {
    position: absolute;
    top: 100%;
    right: -100%;
    background-color: rgba(255, 217, 0, 0.8);
    width: 20rem;
    height: 100vh;
    transition: 0.3s;
  }

  .navbar .navbar-nav.active {
    right: 0;
  }

  .navbar .navbar-nav a {
    color: #800000;
    display: block;
    margin: 1.5rem;
    padding: 0.5rem;
    font-size: 2rem;
  }

  .navbar .navbar-nav a::after {
    transform-origin: 0 0;
  }

  .so {
    height: 550px;
    min-height: 100vh;
    display: contents;
    position: relative;
  }

  .profile-pemimpin .container .wrapper .card {
    height: 125px;
    width: 300px;
  }

  .profile-pemimpin .container .wrapper .card .content h3 {
    font-size: 1.2rem;
  }

  .profile-pemimpin .container .wrapper .card .content p {
    font-size: 0.75rem;
  }

  .jpwj {
    height: 550px;
    min-height: 100vh;
    display: contents;
    position: relative;
    text-align: center;
  }

  .jpwj .jpwj-content {
    flex-wrap: wrap;
  }

  .jpwj .jpwj-content h1 {
    padding-top: 3rem;
  }

  .jpwj .jpwj-content .jpwj-img img {
    max-width: 400px;
  }

  .jpwj .jpwj-img a {
    margin-left: 12rem;
    margin-top: 1rem;
    padding: 1rem 3rem;
    width: 225px;
    display: flex;
  }
}
/* Tablet */
@media (max-width: 768px) {
  html {
    font-size: 60%;
  }

  .so {
    min-height: 100vh;
    display: contents;
    position: relative;
  }

  .profile-pemimpin .container .wrapper .card {
    height: 200px;
    width: 250px;
  }

  .profile-pemimpin .container .wrapper .card .content h3 {
    font-size: 1.2rem;
  }

  .profile-pemimpin .container .wrapper .card .content p {
    font-size: 0.75rem;
  }

  .profile-pemimpin .container .wrapper .card {
    height: 110px;
  }

  .jpwj {
    height: 550px;
    min-height: 100vh;
    display: contents;
    position: relative;
    text-align: center;
  }

  .jpwj .jpwj-content {
    flex-wrap: wrap;
  }

  .jpwj .jpwj-content h1 {
    padding-top: 3rem;
  }
  .jpwj .jpwj-content .jpwj-img img {
    max-width: 600px;
  }

  .jpwj .jpwj-img a {
    margin-left: 30rem;
    margin-top: 1rem;
    padding: 1rem 3rem;
    width: 175px;
    display: flex;
  }
}

/* Mobile Phone 1 */
@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .so {
    min-height: 100vh;
    display: contents;
    position: relative;
  }

  .profile-pemimpin .container .wrapper .card {
    padding: 20px 50px 0 50px;
    margin: 10px;
    height: 75px;
  }

  .profile-pemimpin .container .wrapper .card .content h3 {
    font-size: 1.2rem;
  }

  .profile-pemimpin .container .wrapper .card .content p {
    font-size: 0.75rem;
  }

  .apengantar p {
    text-indent: 20px;
  }

  .jpwj {
    height: 550px;
    min-height: 100vh;
    display: contents;
    position: relative;
    text-align: center;
  }

  .jpwj .jpwj-content {
    flex-wrap: wrap;
  }

  .jpwj .jpwj-content h1 {
    padding-top: 3rem;
  }

  .jpwj .jpwj-content .jpwj-img img {
    max-width: 325px;
  }

  .jpwj .jpwj-img a {
    margin-left: 17rem;
    margin-top: 1rem;
    padding: 1rem 3rem;
    width: 147px;
    display: flex;
  }
}

/* Mobile Phone 2 */
@media (max-width: 412px) {
  html {
    font-size: 50%;
  }

  .so {
    min-height: 100vh;
    display: contents;
    position: relative;
  }

  .so .soimg img {
    width: 200px;
  }

  .profile-pemimpin .container .wrapper .card .profile-img {
    width: 50px;
    height: 50px;
  }

  .profile-pemimpin .container .wrapper .card .profile-img img {
    width: 100%;
    height: 100%;
  }

  .profile-pemimpin .container .wrapper .card {
    padding: 10px 50px 0 50px;
    height: 60px;
  }

  .profile-pemimpin .container .wrapper .card .content h3 {
    font-size: 1.2rem;
  }

  .profile-pemimpin .container .wrapper .card .content p {
    font-size: 0.75rem;
  }

  .apengantar p {
    text-indent: 20px;
  }

  .jpwj {
    height: 550px;
    min-height: 100vh;
    display: contents;
    position: relative;
    text-align: center;
  }

  .jpwj .jpwj-content {
    flex-wrap: wrap;
  }

  .jpwj .jpwj-content h1 {
    padding-top: 3rem;
  }
  .jpwj .jpwj-content .jpwj-img img {
    max-width: 225px;
    border-radius: 20px;
  }

  .jpwj .jpwj-img a {
    margin-left: 14rem;
    margin-top: 1rem;
    padding: 1rem 3rem;
    width: 147px;
    display: flex;
  }
}

/* Mobile Phone 3 */
@media (max-width: 344px) {
  html {
    font-size: 50%;
  }

  .container .wrapper ul li {
    font-size: 1rem;
  }

  .so {
    display: contents;
    position: relative;
  }

  .so .soimg img {
    width: 100px;
  }

  .profile-pemimpin .container .wrapper .card .profile-img {
    width: 50px;
    height: 50px;
  }

  .profile-pemimpin .container .wrapper .card .profile-img img {
    width: 100%;
    height: 100%;
  }

  .profile-pemimpin .container .wrapper .card {
    height: 60px;
  }

  .profile-pemimpin .container .wrapper .card .content h3 {
    font-size: 1.2rem;
  }

  .profile-pemimpin .container .wrapper .card .content p {
    font-size: 0.75rem;
  }

  .apengantar p {
    text-indent: 20px;
  }

  .so .so-gs {
    height: 575px;
  }

  .so .so-km {
    height: 1175px;
  }

  .so .so-mpj {
    height: 1825px;
  }

  .so .so-apmj {
    height: 2350px;
  }

  .jpwj {
    height: 550px;
    min-height: 100vh;
    display: contents;
    position: relative;
    text-align: center;
  }

  .jpwj .jpwj-content {
    flex-wrap: wrap;
  }

  .jpwj .jpwj-content h1 {
    padding-top: 3rem;
  }
  .jpwj .jpwj-content .jpwj-img img {
    max-width: 225px;
    border-radius: 20px;
  }

  .jpwj .jpwj-img a {
    margin-left: 11rem;
    margin-top: 1rem;
    padding: 1rem 3rem;
    width: 147px;
    display: flex;
  }
}

/* Surface Duo */
@media (max-width: 540px min-width: 451px) {
  html {
    font-size: 50%;
  }

  .so {
    min-height: 100vh;
    display: contents;
    position: relative;
  }

  .profile-pemimpin .container .wrapper .card {
    height: 125px;
    width: 250px;
  }

  .profile-pemimpin .container .wrapper .card .content h3 {
    font-size: 1.2rem;
  }

  .profile-pemimpin .container .wrapper .card .content p {
    font-size: 0.75rem;
  }

  .apengantar p {
    text-indent: 20px;
  }

  .jpwj {
    height: 550px;
    min-height: 100vh;
    display: contents;
    position: relative;
    text-align: center;
  }

  .jpwj .jpwj-content {
    flex-wrap: wrap;
  }

  .jpwj .jpwj-content h1 {
    padding-top: 3rem;
  }
  .jpwj .jpwj-content .jpwj-img img {
    max-width: 125px;
  }

  .card .card-content h2 {
    font-size: 1.25rem;
  }

  .card .card-content p {
    font-size: 1rem;
  }
}
