/* Alternity Landing Styles */
:root {
  --color-bg: #0f1115;
  --color-primary: #6ea8fe; /* Bootstrap primary tint */
  --color-accent: #8a5cf6;
  --color-light: #f8f9fa;
  --section-space: 5rem;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
  background-color: #0F0F10;
}

.gradient-text-1 {
  background: linear-gradient(180deg, #FDFDFD 30%, #616161 100%);
  -webkit-background-clip: text;
  background-clip: text;
   color: transparent;
   -webkit-text-fill-color: transparent;
}
/* custom */
.fw-500{
    font-weight: 500;
}
.fw-600{
    font-weight: 600;
}
.fw-700{
    font-weight: 700;
}
.fs-7{
    font-size: 7px;
}
.fs-9{
    font-size: 9px;
}
.fs-10{
    font-size: 10px;
}
.fs-12{
    font-size: 12px;
}
.fs-13{
    font-size: 13px;
}
.fs-14{
    font-size: 14px;
}
.fs-20{
    font-size: 20px;
}
.fs-22{
    font-size: 22px;
}
.fs-24{
    font-size: 24px;
}
.fs-30{
    font-size: 30px;
}
.fs-32{
    font-size: 32px;
}
.fs-34{
    font-size: 34px;
}
.fs-40{
    font-size: 40px;
}
.fs-48{
    font-size: 48px;
}
.bg-dark {
  background-color: #0F0F10 !important;
}
.text-dark{
  color: #0F0F10 !important;
}
.bg-primary-500{
  background-color: #B72F4B !important;
}
.btn-padding{
  padding: 14px 16px;
}
.bg-neutral-50{
  background-color: #FDFDFD !important;
}
.text-neutral-700{
  color: #A5A5A5 !important;
}
.text-neutral-900{
  color: #616161 !important;
}
.top-40{
  top: 40%;
}
/* Floating animation for centered overlay image */
@keyframes floatY10 {
  0% { margin-top: -10px; }
  25% { margin-top: 10px; }
  50% { margin-top: 0px; }
  75% { margin-top: 10px; }
  100% { margin-top: -10px; }
}

.float-10 {
  animation: floatY10 3s ease-in-out infinite;
  will-change: margin-top;
}

/* Background for Section 2 */
.bg-section-2 {
  background: url('../images/bg-section-2.svg') center center / cover no-repeat;
  background-position-y: 200px;
}

.text-border-left {
  /* background: linear-gradient(90deg, #B72F4B 0%, #7A4DF7 100%); */
  /* -webkit-background-clip: text; */
  /* background-clip: text; */
  /* color: transparent; */
  /* -webkit-text-fill-color: transparent; */
  border-width: 3px;
  border-style: solid;
  border-image: 
    linear-gradient(90deg, #B72F4B 0%, #7A4DF7 100%);
}
/* Subtitle background decoration */
.subtitle-bg {
  background: url('../images/subtitle-bg.svg');
  display: inline-block;
  background-size: 103%;
  background-position-x: 0;
  background-position-y: center;
  background-repeat: no-repeat;
  /* background-size: cover; */
}
/* Rotate 30 degrees animation */
@keyframes rotate30deg {
  0% { transform: rotate(0deg); }
  20% { transform: rotate(10deg); }
  40% { transform: rotate(0deg); }
  60% { transform: rotate(20deg); }
  100% { transform: rotate(0deg); }
}

/* VIP vertical float animation */
@keyframes vipFloatY10 {
  0% { transform: translateY(-10px); }
  50% { transform: translateY(10px); }
  100% { transform: translateY(-10px); }
}

#section-3 {
  padding: 200px 0;
}
.custom-card {
  padding: 24px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(253, 253, 253, 0.05) 30%, rgba(97, 97, 97, 0.05) 100%);
  width: 100%;
  max-width: 194px;
  height: 150px;
}

@media (min-width: 992px) { /* Bootstrap lg breakpoint */
  .custom-card {
    flex: 0 0 320px; /* consistent width in row layout */
  }
}

/* Romance move right animation */
@keyframes thrillerMoveRight10 {
  0% { transform: translateX(0); }
  100% { transform: translateX(10px); }
}
@keyframes romanceMoveLeft10 {
  0% { transform: translateX(0); }
  100% { transform: translateX(-10px); }
}

/* Float up/down 5px animation for section-5 icons */
@keyframes floatY5 {
  0% { transform: translateY(0); }
  100% { transform: translateY(10px); }
}
@keyframes floatY5_2 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.adventure,
.comedy,
.action {
  animation: floatY5 2s ease-in-out infinite alternate;
  will-change: transform;
}
.mystery,
.fantasy {
  animation: floatY5_2 2s ease-in-out infinite alternate;
  will-change: transform;
}

/* Testimonial card styling */
.testimonial-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: inset 0px 32px 64px 0px #7A4DF733, inset 2px 2px 1px -0.5px #B72F4B82, inset 0px 0px 1px 0px #FFFFFF66;
  min-width: 320px;
  min-height: 180px;
}

/* Carousel indicators: small dots */
#testimonialsCarousel .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.6);
}
#testimonialsCarousel .carousel-indicators .active {
  background-color: #fff;
}
.text-white-900{
  color: #E8E8E8 !important;
}
#testimonials {
  padding: 150px 0;
}
#cta {
  background-image: url('../images/bg-cta.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.bg-images-1 {
  background-image: url('../images/images-1.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 400px;
}
.footer {
  background-image: url('../images/bg-footer.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.footer-card {
  background: #0F0F10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset,
              0 12px 24px rgba(0, 0, 0, 0.25);
}
.footer-card hr {
  border-color: rgba(255, 255, 255, 0.12);
  opacity: 0.4;
}
/* less than 576px */
@media (max-width: 576px) {
  #hero,#section-2,#section-4 {
    padding-top: 50px;
  }
  #section-3{
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #testimonials {
    padding: 100px 0;
  }
  .fs-48 {
    font-size: 20px !important;
  }
  .fs-34 {
    font-size: 16px !important;
  }
  .fs-14 {
    font-size: 8px !important;
  }
  .fs-16 {
    font-size: 12px !important;
  }
  .img-book {
    width: 50%;
  }
  .ratio-16x9 {
    --bs-aspect-ratio: 100%;
  }
  .custom-card {
    min-width: 100%;
  }
  .images-1 {
    /* scale: 1.75; */
    margin-bottom: 100px;
  }
  .bg-images-1 {
    height: 400px;
  }
  .bg-section-2 {
    background: url('../images/bg-section-2.svg') center center / cover no-repeat;
    background-position-y: 250px;
  }
  .vip {
    animation: vipFloatY10 3s ease-in-out infinite;
    will-change: transform;
    left: 240px;
    top: 10px;
    width: 40%;
  }
  .book {
    animation: rotate30deg 3s ease-in-out infinite alternate;
    transform-origin: center center;
    left: -10px;
    top: 50px;
    width: 25%;
  }
  .galaxy {
    object-position: 10px center;
    scale: 1;
    height: 100%;
    width: 100%;
  }
  .romance{
    top: -20px;
    left: 175px;
    animation: romanceMoveLeft10 2s ease-in-out infinite alternate;
    will-change: transform;
    width: 25%;
  }
  .adventure{
    top: 80px;
    left: 50px;
    width: 25%;
  }
  .mystery{
    top: 75px;
    left: 250px;
    width: 25%;
  }
  .comedy{
    top: 150px;
    left: 10px;
    width: 25%;
  }
  .fantasy{
    top: 150px;
    left: 230px;
    width: 25%;
  }
  .action{
    top: 250px;
    left: 20px;
    width: 25%;
  }
  .thriller{
    top: 280px;
    left: 200px;
    animation: thrillerMoveRight10 2s ease-in-out infinite alternate;
    will-change: transform;
    width: 25%;
  }
  .cta-book {
    width: 50%;
    animation: rotate30deg 3s ease-in-out infinite alternate;
    transform-origin: center center;
    left: -10px;
    top: 50px;
  }
  .cta-book-2 {
    animation: rotate30deg 3s ease-in-out infinite alternate;
    transform-origin: center center;
    top: -70px;
    left: 30px;
    width: 50%;
  }
  .footer {
    margin-top: -2px;
  }
}

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #section-2 {
    padding: 50px 0;
  }
  .footer {
    margin-top: -2px;
  }
  .ratio-16x9 {
    --bs-aspect-ratio: 100%;
  }
  .vip {
    animation: vipFloatY10 3s ease-in-out infinite;
    will-change: transform;
    left: 400px;
    top: 0px;
    width: 30%;
  }
  .galaxy {
    object-position: 10px center;
    scale: 1;
    height: 100%;
    width: 100%;
  }
  .romance{
    top: -40px;
    left: 275px;
    animation: romanceMoveLeft10 2s ease-in-out infinite alternate;
    will-change: transform;
    width: 25%;
  }
  .adventure{
    top: 120px;
    left: 150px;
    width: 25%;
  }
  .mystery{
    top: 150px;
    left: 450px;
    width: 25%;
  }
  .comedy{
    top: 250px;
    left: 0px;
    width: 25%;
  }
  .fantasy{
    top: 300px;
    left: 400px;
    width: 25%;
  }
  .action{
    top: 500px;
    left: 20px;
    width: 25%;
  }
  .thriller{
    top: 500px;
    left: 450px;
    animation: thrillerMoveRight10 2s ease-in-out infinite alternate;
    will-change: transform;
    width: 25%;
  }
  .book {
    animation: rotate30deg 3s ease-in-out infinite alternate;
    transform-origin: center center;
    left: 75px;
    top: 50px;
  }
  .cta-book-2 {
    top: -150px;
    left: 100px;
    animation: rotate30deg 3s ease-in-out infinite alternate;
    transform-origin: center center;
  }
}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .ratio-16x9 {
    --bs-aspect-ratio: 70%;
  }
  .vip {
    animation: vipFloatY10 3s ease-in-out infinite;
    will-change: transform;
    left: 370px;
    top: -100px;
  }
  .galaxy {
    object-position: 10px center;
    scale: 1;
    height: 70%;
    width: 70%;
  }
  .romance{
    top: -40px;
    left: 550px;
    animation: romanceMoveLeft10 2s ease-in-out infinite alternate;
    will-change: transform;
    width: 13%;
  }
  .adventure{
    top: 200px;
    left: 380px;
    width: 13%;
  }
  .mystery{
    top: 200px;
    left: 800px;
    width: 13%;
  }
  .comedy{
    top: 420px;
    left: 220px;
    width: 13%;
  }
  .fantasy{
    top: 550px;
    left: 700px;
    width: 13%;
  }
  .action{
    top: 650px;
    left: 250px;
    width: 13%; 
  }
  .thriller{
    top: 700px;
    left: 750px;
    animation: thrillerMoveRight10 2s ease-in-out infinite alternate;
    will-change: transform;
    width: 13%;
  }
  .cta-book-2 {
    top: -175px;
    left: 100px;
  }
}

/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {}