@font-face {
  font-family: syne;
  src: url("../Assets/fonts/InstrumentSerif-Regular.ttf");
}
p,
h1,
h2,
h3,
h4,
a,
button {
  font-family: "Syne", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Syne, sans-serif;
  background: #000;
  color: #fff;
}

/* Hero Section */
.background-container {
  position: relative;
  width: 100%;
  height: 120vh;
  background: url("../Assets/images/intro-bg.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin-bottom: 60px;
}

/* Black Overlay Layer */
.background-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(
    0,
    0,
    0,
    0.7
  ); /* Adjust opacity (0.5 for 50% black overlay) */
  z-index: 1;
}

/* Content inside the overlay */
.overlay-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  font-weight: bold;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.overlay-content h2 {
  background: linear-gradient(to right, rgb(160, 160, 160), white);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 5rem;
}

.overlay-content p {
  background: linear-gradient(to right, white, rgb(160, 160, 160));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 24px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  left: 160px;
  top: 80%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 3;
  margin-top: 30px;
}

.scroll-indicator p {
  writing-mode: vertical-rl;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 2px;
  opacity: 0.8;
  margin: 12px 0;
}

/* Moving Lines */
.line-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 16px;
}

.line {
  width: 2px;
  background-color: white;
  margin: 5px 0;
  animation: moveLines 1s infinite ease-in-out alternate;
}

.line.big {
  height: 40px;
}

.line.small {
  height: 25px;
  animation-delay: 0.2s;
}

.line.smaller {
  margin-top: 10px;
  height: 15px;
  animation-delay: 0.3s;
}

/* Line Animation */
@keyframes moveLines {
  0% {
    transform: scaleY(1);
    opacity: 0.6;
  }
  100% {
    transform: scaleY(1.5);
    opacity: 1;
  }
}

/* Ticker Section */
.ticker-section {
  display: flex;
  width: 100%;
  padding: 60px 10px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgb(0, 0, 0) 12.5%,
    rgb(0, 0, 0) 87.5%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgb(0, 0, 0) 12.5%,
    rgb(0, 0, 0) 87.5%,
    rgba(0, 0, 0, 0) 100%
  );
}

.ticker-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.ticker-list {
  display: flex;
  gap: 100px;
  list-style: none;
  padding: 30px 0;
  margin: 0;
  width: max-content; /* Ensures smooth animation */
  animation: tickerMove 10s linear infinite;
}

/* Duplicate the list for seamless looping */
.ticker-list::after {
  content: "";
  display: flex;
  width: 100%;
}

/* Style for ticker items */
.ticker-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.inner {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1856ff;
  margin-right: 30px;
}

.ticker-text {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Infinite scrolling animation */
@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Video Section */
.video-box {
  display: flex;
  justify-content: space-around;
  margin: 0 40px;
}
@media (max-width: 748px) {
  .video-box {
    flex-direction: column;
    margin: 0 30px;
  }
}
.video-item {
  width: 380px;
  height: 274px;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 1px solid black;
}
@media (max-width: 748px) {
  .video-item {
    width: 290px;
  }
}

.video-item iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer Tickering */

/* .footer-ticker-section {
  padding: 50px 0;
  background-color: #1e1e1e;
} */

/* FAQ Section */

.faq-section {
  background-color: #1e1e1e;
  padding: 40px;
  margin-top: 20px;
}

.container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}
@media (max-width: 748px) {
  .container {
    flex-direction: column;
    padding: 0;
  }
}

.left-section {
  flex: 1;
  margin-top: 20px;
}

.left-section h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 50px 0;
}

.left-section p {
  font-size: 22px;
  color: #8b8b8b;
  font-weight: 600;
}

.highlight {
  color: #00bcd4;
}

.info-box {
  background: #333;
  padding: 30px;
  border-radius: 40px;
  margin-top: 100px;
  border: 1px solid white;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box p {
  font-size: 18px;
  color: #fff;
  font-weight: normal;
}

.info-box .address {
  font-weight: 600;
  line-height: 27px;
}

.right-section {
  flex: 1;
}

.right-section h3 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  letter-spacing: 1.5px;
  color: #e7ebf2;
}

/* FAQ Styling */
.faq {
  background-color: rgb(231, 235, 242);
  color: rgba(86, 86, 86, 1);
  font-weight: 500;
  border-radius: 10px;
  margin-bottom: 14px;
  padding: 24px;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  transition: background 0.3s ease;
}

.faq span {
  font-size: 1rem;
  color: rgba(34, 34, 34, 1);
  font-weight: 600;
}

.icon {
  height: 20px;
  width: 20px;
  transition: transform 0.3s ease;
  position: absolute;
  right: 15px;
}

.faq.active .icon {
  transform: rotate(180deg);
}

.answer {
  padding: 10px 0;
  font-size: 1rem;
  margin-top: 5px;
  line-height: 1.5em;
  letter-spacing: 1.2px;
  display: none;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s, opacity 0.5s;
}

.faq.active .answer {
  display: block;
  max-height: 300px;
  opacity: 1;
}

/* Bottom Ticker */

.footer-ticker-section {
  background-color: #1e1e1e;
  -webkit-mask-image: none;
  mask-image: none;
}

.footer-ticker-text {
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -2.5px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(223, 223, 223, 0.8) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-ticker-inner {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff0000;
  margin-right: 30px;
}

/* Booking Section */
.book-container {
  background-color: #1e1e1e;
  padding: 20px;
}

.booking {
  max-width: 1200px;
  margin: 0 auto;
}

.booking-container {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  background-color: #444438;
  border-radius: 30px;
  padding: 59px 35px 34px;
  margin: 30px 0;
}
@media (max-width: 748px) {
  .booking-container {
    flex-direction: column;
  }
}

.booking-text h2 {
  font-size: 51px;
  line-height: 61px;
  font-weight: normal;
  margin-bottom: 20px;
}

.booking-box {
  width: 460px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-radius: 30px;
  background-color: #fff;
  padding: 59px 35px 34px;
}
@media (max-width: 748px) {
  .booking-box {
    width: 100%;
  }
}

.booking-box h3 {
  font-size: 25px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
  color: #000;
}

.booking-box button {
  width: 100%;
  padding: 20px 0;
  border: none;
  border-radius: 50px;
  background-color: #000;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  margin: 20px 0;
}
/* Footer Section */
.footer-section {
  background-color: #1e1e1e;
  padding-bottom: 30px;
}

.footer {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.socials hr {
  width: 2px;
  height: 20px;
  background: gray;
  border: none;
}

.socials i {
  font-size: 30px;
  color: #000;
  cursor: pointer;
}

.socials a {
  color: #000;
  text-decoration: none;
}

.socials a:hover {
  text-decoration: underline;
  color: #b9b9b9;
}

.footer p {
  margin: 10px 0;
  font-size: 14px;
  color: #000;
}

.footer p a {
  color: #ff1919;
  text-decoration: none;
}

.footer p a:hover {
  text-decoration: underline;
  color: #1856ff;
}
