/*
--- 01 TYPOGRAPHY SYSTEM

( 1rem = 16 px -> 500rem )

-Font Size (PX)
10 / 12 / 14 / 16 / 18 / 80 / 24 / 30 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights
2.4rem text
3.8rem title
- Line Heights
Default: 1

- SPACING SYSTEM (PX)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

--- 02 COLORS 

-Primary:
#A15818
#e67e22
#FAE5D3
#eee3c6d2
#fae5d3
#555
#160303be

-Tints:
#88C491
#69A085
#589206
-Shades:
#e3ffe8
#f1f7f2
-Accents: 

-Greys:
#555

--- 03 SHADOWS

--- 04 BORDER-RADIUS

--- 05 WHITESPACE

- SPACING SYSTEM (PX)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/
/*
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;

  overflow-x: hidden;
}
body {
  font-family: "Bona Nova", serif;
  line-height: 1;
  font-weight: 400;
  overflow-x: hidden;
}
html,
body {
  overflow-x: hidden;
}
*/

/* ////////// ===>>         Header        <<=== \\\\\\\\\\ */

* {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
}

/* ////////// ===>>         Menu        <<=== \\\\\\\\\\ */
.navbar {
  background-color: transparent;
  position: fixed;
  top: 0;
  padding: 0 105px;
  width: 90%;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
}

.navbar a {
  float: left;
  display: block;
  text-align: center;
  padding: 16px 22px;
  text-decoration: none;
  font-size: 18px;
}
.navbar .logo {
  float: left;
  margin-right: 20px;
  font-weight: bold;
  line-height: 5;
}
.logo {
  color: #ffcc00;
}
.sub-title {
  font-weight: 600;
  font-size: 18px;
}

.navbar a:hover {
  background-color: #fff;
  color: #202020;
  border-radius: 5px;
}

/* ////////// ===>>       Scrolled Navbar        <<=== \\\\\\\\\\ */
.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  transition: background-color 0.3s ease;
}
/* ////////// ===>>       Scrolled Navbar       <<=== \\\\\\\\\\ */

/* ////////// ===>>        Drop Down       <<=== \\\\\\\\\\ */

/* Dropdown */

.dropdown {
  position: relative;
  display: inline-block;
  z-index: 9999;
}

.dropbtn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 16px 22px;
  color: #fff;
  display: flex;
  align-items: center;
}

.dropbtn span {
  margin-right: 10px;
}

.dropbtn img {
  width: 20px;
  height: 15px;
  margin-left: 10px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  border-radius: 5px;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  color: #202020;
  padding: 12px 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
}

.dropdown-content a img {
  height: 15px;
  margin-left: 10px;
}

.dropdown-content a:hover {
  background-color: #eee;
}

.dropdown-content.show {
  display: block;
}

.dropbtn:hover {
  background-color: #fff;
  color: #202020;
  border-radius: 5px;
}

.dropbtn:hover .dropbtn-main {
  color: #202020;
}

.dropbtn:hover {
  background-color: #fff;
  color: #202020;
  border-radius: 5px;
}

.dropbtn:hover span {
  color: #202020;
}
/* ////////// ===>>        Drop Down       <<=== \\\\\\\\\\ */

/* ////////// ===>>          Menu           <<=== \\\\\\\\\\ */

.header-text {
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  display: grid;
  place-items: center;
  height: 100vh;
  position: relative;
  z-index: 9998;
}
.text-content h1 {
  font-size: 80px;
  text-transform: uppercase;
}

.text-content p {
  width: 75%;
  margin: auto;
  line-height: 1.9;
}

.text-content a {
  background: #fff;
  display: inline-block;
  text-decoration: none;
  padding: 10px 30px;
  color: #202020;
  margin-top: 30px;
  border-radius: 50px;
  transition: all 0.5s ease;
}

.text-content a:hover {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.slides {
  list-style: none;
  margin-top: 0;
}

.slides,
.slides::after {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.slides li span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: transparent;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 0;
  animation: animate 25s linear infinite 0s;
}
.slides li:nth-child(1) span {
  background-image: url(Img/a1.jpg);
}
.slides li:nth-child(2) span {
  background-image: url(Img/a2.jpg);
  animation-delay: 5s;
}
.slides li:nth-child(3) span {
  background-image: url(Img/a3.jpg);
  animation-delay: 10s;
}
.slides li:nth-child(4) span {
  background-image: url(Img/a4.jpg);
  animation-delay: 15s;
}
.slides li:nth-child(5) span {
  background-image: url(Img/a5.jpg);
  animation-delay: 20s;
}
.slides li:nth-child(6) span {
  background-image: url(Img/a6.jpg);
  animation-delay: 25s;
}

@keyframes animate {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
    transform: scale(1.05);
  }
  17% {
    opacity: 1;
    transform: scale(1.1);
  }
  25% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 800px) {
  .navbar .logo {
    float: none;
    margin-right: 0;
    font-size: 35px;
  }
  .navbar {
    flex-direction: column;
    width: 100%;
    padding: 0;
    align-items: center;
  }
  .navbar a {
    font-size: 18px;
    padding: 5px 25px;
  }
  .dropbtn {
    font-size: 18px;
    padding: 5px 25px;
  }
  .dropdown-content {
    font-size: 18px;
    padding: 5px 25px;
  }
  nav {
    margin-top: 20px;
  }
  .text-content h1 {
    font-size: 45px;
  }
  .logo {
    display: none;
  }
}
@media (max-width: 640px) {
  .navbar a {
    font-size: 14px;
    padding: 8px 6px;
  }
  .dropbtn {
    font-size: 14px;
    padding: 8px 6px;
  }
  .dropdown-content {
    font-size: 14px;
    padding: 8px 6px;
  }
  .text-content h3 {
    margin-bottom: 10px;
  }
  .text-content h1 {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .navbar a {
    font-size: 12px;
    padding: 8px 6px;
  }
  .dropbtn {
    font-size: 12px;
    padding: 8px 6px;
  }
  .dropdown-content {
    font-size: 12px;
    padding: 8px 6px;
  }
  .text-content h3 {
    margin-bottom: 10px;
  }
  .text-content h1 {
    font-size: 20px;
  }
  .text-content p {
    width: 100%;
    margin: 15px auto;
    line-height: 1.5;
    font-size: 12px;
  }
  .text-content a {
    padding: 5px 15px;
    margin-top: 0;
    font-size: 14px;
  }
  .logo {
    display: none;
  }
}
@media (max-width: 360px) {
  .navbar a {
    font-size: 10px;
    padding: 8px 6px;
  }
  .dropbtn {
    font-size: 10px;
    padding: 8px 12px;
  }
  .dropdown-content a {
    font-size: 8px;
    padding: 4px 4px;
  }

  .text-content h3 {
    margin-bottom: 10px;
  }
  .text-content h1 {
    font-size: 20px;
  }
  .text-content p {
    width: 100%;
    margin: 15px auto;
    line-height: 1.5;
    font-size: 12px;
  }
  .text-content a {
    padding: 5px 15px;
    margin-top: 0;
    font-size: 14px;
  }
  .logo {
    display: none;
  }
}
/* ////////// ===>>         Header        <<=== \\\\\\\\\\ */

/* ////////// ===>>          Carussel-Content          <<=== \\\\\\\\\\ */

.container {
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-wrapper {
  max-width: 1600px;
  margin: 0 60px 35px;
  padding: 20px 10px;
  overflow: hidden;
}

.card-list .card-item {
  list-style: none;
}

.card-list .card-item .card-link {
  user-select: none;
  display: block;
  background: rgba(0, 0, 0, 0.6);
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid transparent;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
  transition: 0.2s ease;
}

.card-list .card-item .card-link:hover {
  border-color: #fff;
  background: rgba(0, 0, 0, 0.9);
}

.card-list .card-link .card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
}

.card-list .card-link .badge {
  color: #202020;
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 16px 0 18px;
  background: #fff;
  width: fit-content;
  border-radius: 50px;
  font-weight: bold;
}

.card-list .card-link .card-title {
  font-size: 1.19rem;
  color: #fff;
  font-weight: 600;
}

.card-list .card-link .card-button {
  height: 35px;
  width: 35px;
  color: #3a5ef1;
  border-radius: 50%;
  margin: 30px 0 5px;
  background: #fff;
  cursor: pointer;
  border: 2px solid #202020;
  transform: rotate(-45deg);
  transition: 0.4s ease;
}

.card-list .card-link:hover .card-button {
  color: #fff;
  background: #3a5ef1;
}

.card-wrapper .swiper-pagination-bullet {
  height: 18px;
  width: 18px;
  opacity: 1.5;
  background: #ffffff;
}
.card-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

.card-wrapper .swiper-slide-button {
  color: #fff;
}
.swiper-button-prev {
  padding-left: 4rem;
}
.swiper-button-next {
  padding-right: 4rem;
}
.swiper-pagination {
  padding-bottom: 12rem;
}

@media screen and (max-width: 768px) {
  .card-wrapper {
    margin: 0 10px 25px;
  }
  .card-wrapper .swiper-slide-button {
    display: none;
  }
}

/* ////////// ===>>          Carussel-Content          <<=== \\\\\\\\\\ */

/* ////////// ===>>          Testimonial            <<=== \\\\\\\\\\ */

.testimonials {
  position: relative;
  background: rgba(0, 0, 0, 0.3);
}

.testimonials {
  margin: 0 auto;
  padding: 20px;
  padding-top: 6rem;
  padding-bottom: 6rem;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: bold;
}

.section-intro {
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-card {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 25px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  margin-bottom: 30px;
  transition: transform 0.3s ease-in-out;
}

.highlight-card h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: bold;
}

.highlight-card p {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
}

.highlight-card:hover {
  transform: translateY(-5px);
}

.conclusion {
  margin-top: 40px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .section-intro {
    font-size: 16px;
  }

  .highlight-card {
    padding: 20px;
  }

  .highlight-card h3 {
    font-size: 22px;
  }

  .highlight-card p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }

  .section-intro {
    font-size: 14px;
  }

  .highlight-card {
    padding: 15px;
  }

  .highlight-card h3 {
    font-size: 20px;
  }

  .highlight-card p {
    font-size: 12px;
  }
}

/* ////////// ===>>          Testimonial            <<=== \\\\\\\\\\ */

/* ////////// ===>>          Footer         <<=== \\\\\\\\\\ */

.site-footer {
  padding: 6rem 0 4rem;
  background: rgba(0, 0, 0, 0.6);
  position: relative;
  color: #fff;
}

.site-footer {
  height: auto;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffcc00;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

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

.footer-section h2,
.footer-section h3 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section p,
.footer-section ul {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  border-top: 1px solid #fff;
  padding-top: 1rem;
}

@media (max-width: 600px) {
  .site-footer {
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 1.5rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 2px 2px;
  }
}
/* ////////// ===>>          Footer         <<=== \\\\\\\\\\ */

/* ////////// ===>>        ThemeSwitch        <<=== \\\\\\\\\\ */
.alternate-theme {
  --primary-bg: #160303be;
  --secondary-bg: #fff;
  --primary-text: #fa7705;
  --accent: #aed167;
  --text-xl: 1.25rem;
}

.alternate-theme .navbar.scrolled {
  background: rgba(22, 3, 3, 0.9) !important;
}
.alternate-theme,
.alternate-theme .accent {
  color: var(--accent) !important;
  font-weight: bold !important;
}
.alternate-theme .thema:hover {
  background: var(--secondary-bg) !important;
  color: var(--primary-bg) !important;
}
.alternate-theme .thema {
  background: var(--accent) !important;
}

.alternate-theme .card-link {
  background: rgba(22, 3, 3, 0.9) !important;
}
.alternate-theme .card-link:hover {
  border: 1px solid var(--accent) !important;
}

.alternate-theme .badge {
  background: var(--accent) !important;
  color: var(--primary-bg) !important;
}

.alternate-theme .card-button {
  color: var(--primary-bg) !important;
}
.alternate-theme .swiper-slide-button {
  color: var(--accent) !important;
}
.alternate-theme .swiper-pagination-bullet {
  background-color: var(--accent) !important;
}

.alternate-theme .highlight-card {
  background: rgba(22, 3, 3, 0.9) !important;
  border-left: 4px solid var(--accent) !important;
}

.alternate-theme .section-title,
.alternate-theme .highlight-card h3 {
  color: var(--accent) !important;
}
.alternate-theme .section-intro {
  color: var(--accent) !important;
}
.alternate-theme .highlight-card p {
  color: var(--accent) !important;
}

.alternate-theme .site-footer {
  background: rgba(22, 3, 3, 0.9) !important;
}

.alternate-theme,
.alternate-theme .footer-section h3 {
  color: var(--accent) !important;
}
.alternate-theme,
.alternate-theme .footer-section h2 {
  color: var(--accent) !important;
}

.alternate-theme,
.alternate-theme .footer-thema {
  color: var(--accent) !important;
}
/* ////////// ===>>        ThemeSwitch        <<=== \\\\\\\\\\ */
