body {
  background-color: rgb(0, 0, 0);
  
}
h1 {
  color: white;
  text-align: center;
  font-size: 25pt;
}
p {
  color: white;
  text-align: center;
  font-size: 14pt;
}

.footer {
  position: fixed;
  left: 50%;
  bottom: 0;
  padding: 0 0 15px 0;
  box-sizing: border-box;
  transform: translateX(-50%);
  width: 1278px;
  color: white;
  text-align: center;
  background-color: black;
  z-index: 99;
}

.footer p{
  font-family: "Alumni Sans", sans-serif;
  font-weight: 100;
  font-size: 13pt;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.column {
  float: 1;
  padding: 0 10px;
}

/* Left and right column */
.sideleft{
  width: 500px;
}

.sideright {
  width: 250px;
  display: flex;
  gap: 35px;
  align-items: center;
}


.sideright a {
  width: 25px;
  height: 25px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.sideright a.fb {
  background: url("fb_w.png") no-repeat center center;
  background-size: contain;
  }
.sideright a.ig {
  background: url("ig_w.png") no-repeat center center;
  background-size: contain;
  }
.sideright a.tik {
  background: url("tik_w.png") no-repeat center center;
  background-size: contain;
  }

.sideright a.fb:hover {
  width: 25px;
  height: 25px;
  background-image: url("fb_c.png");
}
.sideright a.ig:hover {
  width: 25px;
  height: 25px;
  background-image: url("ig_c.png");
}
.sideright a.tik:hover {
  width: 25px;
  height: 25px;
  background-image: url("tik_c.png");
}

/* Middle column */
.middle {
  width: 528px;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
  }
}


.header {
  width: 100%;
  max-width: 1278px;
  height: 491px;
  margin: 0 auto;            /* centers the header container on the page */
}

.header img {
  display: block;            /* so auto margins work */
  margin-left: auto;         /* horizontal centering */
  margin-right: auto;
  float: none;               /* ignore any old float rules */
}


.parallax-1 {
  background-image: url('header-01.jpg');
  background-size: 1278px auto;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 1278px;
  height: 490px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.parallax-2 {
  background-image: url('home-01.jpg');
  background-size: auto;
  background-position:center calc(50% + 110px);
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 1278px;
  height: 500px;
  margin: 80px auto 500px;
  overflow: hidden;
  /*display: flex;
  align-items: center;
  justify-content: center;*/
  
}


.parallax-3 {
  background-image: url('home-02.jpg');
  background-size: 1278px auto;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 1278px;
  height: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.parallax-4 {
  background-image: url('about-01.jpg');
  background-size: 1278px auto;
  background-position: center calc(50% + 200px);
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 1200px;
  height: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.parallax-5 {
  background-image: url('about-02.jpg');
  background-size: 1278px auto;
  background-position: center calc(50% + 200px);
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 1200px;
  height: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.parallax-6 {
  background-image: url('about-03.jpg');
  background-size: 2300px auto;
  background-position: center calc(50% + 100px);
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 1200px;
  height: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

/* Add a black background color to the top navigation */
.topnav {
  width: 100%;
  margin: 10px auto 50px auto;
  display: flex;            /* so auto margins work */
  justify-content: center;
  align-items: center;
  height: 80px;
  overflow: hidden;

  position: sticky;
  top: 0;
  z-index: 1000;   /* makes sure it stays above other elements */
  background-color: black;
  
}

/* Style the links inside the navigation bar */
.topnav a {
  font-family: "Alumni Sans", sans-serif;
  color: #f2f2f2;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 25px;
  padding: 0 16px;
}

.topnav a.home    { width: 175px; }
.topnav a.faqs    { width: 175px; }
.topnav a.contact { width: 175px; }
.topnav a.about   { width: 175px; }
.topnav a.book    { 
  width: 300px; 
  height: 50px;
  background: url("book_botton.png") no-repeat center center;
  background-size: contain;
}

.topnav a.book:hover {
  background-image: url("book_button_hover.png");
}

/*.topnav a.book img {
  height: 50px;  /* adjust size as needed 
  display: block;
}*/

/* Change the color of links on hover */
.topnav a:hover {
  /*background-color: #ddd;*/
  color: #DF7003;
}

.topnav a.active {
  color: #DF7003;         /* text color for active */
  
}

.topnav a.book.active {
  background-image: url("book_button_hover.png"); /* or hover image */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


.alumni-sans-light {
  font-family: "Alumni Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

#bottom, #left, #right {
  background: #000000;
  z-index: 1;
  }

  #bottom {
    position: fixed;
    left: 0; right: 0;
    height: 80px;
    }
    
    #bottom { bottom: 0; }

.faqs img{
margin: 0 auto;
display: flex;
align-items: center;
width: 950px;
height: auto;
}

.title img{
  margin: 0 auto;
  display: flex;
  align-items: center;
  width: auto;
  height: 50px;
}

.text img{
  margin: 0 auto;
  display: flex;
  align-items: center;
  width: 1200px;
  height: auto;
}

.content {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  width: 100%;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Left column */
.contact-left {
  width: 550px;
  flex-shrink: 0;
}

.contact-left img{
width: 500px;
}

.contact-left h3 {
  font-family: "Dosis", sans-serif;
  font-size: 15pt;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 20px;
}

.contact-left p {
  margin-bottom: 15px;
  text-align: left;
}

.social-icons a {
  margin-right: 10px;
  display: inline-block;
}

/* Right column (form) */
.contact-right {
  flex: 1;
  margin-left: 30px;
}

.contact-right form {
  display: flex;
  flex-direction: column;
}

.contact-right label {
  font-family: "Dosis", sans-serif;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: light;
  font-size: 15pt;
}

.contact-right input,
.contact-right textarea {
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-right textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-right button {
  margin-top: 15px;
  padding: 12px;
  background-color: #DF7003;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.contact-right button:hover {
  background-color: #ffffff;
  color: #DF7003;
}

/* Responsive layout for mobile */
@media screen and (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

label {
color: #fff;

}


input[type=text], select, textarea {
  
  border: 1px solid white;
  background-color: #000000;
  color: #fff;
}

input[type=email] {
  
  border: 1px solid white;
  background-color: #000000;
  color: #fff;
}

input[type=message] {
  
  border: 1px solid white;
  background-color: #000000;
  color: #fff;
}

/* book page cards and button----------------------------------------*/
.card {
  /*border: 0.5px solid #ffffff;*/
  border-radius: 11px;
  /*background-color: #606060;*/
  background-image: url("cardbg.png");
  width: 300px;
  height: 350px;
  margin: auto;
  text-align: center;
  font-family: "Alumni Sans", sans-serif;
  transition: transform 0.4s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  padding: 0;
}


.card:hover {
  transform: translateY(-10px); /* lift up on hover */
}

.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0,0,0,0.6); /* dark overlay */
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 2;
}

.card:hover::before {
  opacity: 1;
}

/* Ensure card content sits above overlay */
.card h1, 
.card p, 
.card button {
  position: relative;
  z-index: 3;
}

.card h1 {
  font-size: 30px;   /* adjust as needed */
  margin: 20px 0 5px;  /* top 10px, bottom 5px */
}

.card p {
  margin: 5px 0 10px;     /* smaller gap between text lines */
}

.card img{
  border-radius: 15px 15px 0 0 ;
  width: 96%;
  height: 180px;
  margin: 0 auto;
  display: block;
  object-fit: cover;
  padding:6px 0 0 0;
  
}

.card-content {
  padding: 10px;
  position: relative;
  z-index: 3; /* above overlay */
}

*{
  box-sizing: border-box;
}

.content{
  width: 1200px;
  margin: 0 auto;
}


.content .row{
  margin: 0 -15px;   /* negative of the column padding */
  overflow: hidden;
  gap: 155px;
}

/* Create three equal columns that floats next to each other */
.content .column {
  float: left;
  width: 33.33%;
  padding: 10px 0 0;
 
  /*border: 1px solid #ffffff;*/
}

/* Clear floats after the columns */
.content .row:after {
  content: "";
  display: table;
  clear: both;
}


button.book-btn{
  border: none;
  border-radius: 18px;
  outline: 0;
  display: inline-block;
  padding: 8px;
  margin-bottom: 10px;
  color: rgb(255, 255, 255);
  background-color: #ff7700;
  text-align: center;
  cursor: pointer;
  width: 150px;ﬁ
  height: 40px;
  font-size: 13px;
  z-index: 1;
} 

button.book-btn:hover{
  background-color: #ffffff;
  color: #ff7700;
}



/*faqs collapsible----------------------------------------------------------*/

.faq-group {
  width: 1200px;   /* set shared width here */
  margin: 0 auto;  /* center horizontally */
  
}

.faq-title {
  /*background-color: #333;  /* dark rectangle */
  color: #fff;
  font-size: 23pt;
  
  font-family: "Dosis", sans-serif;
  text-align: left;
  padding: 5px 5px 5px 16px;
  border-radius: 6px 6px 0 0; /* only top rounded corners */
  border: #ffffff 1.5px solid;
}

button.collapsible {
  
  color: rgb(255, 255, 255);
  cursor: pointer;
  padding: 12px 12px 12px 16px;
  width: 1200px;
  border: none;
  text-align: left;
  outline: none;
  font-family: "Alumni Sans", sans-serif;
  font-size: 19pt;
  background-color: #000000;
  display: flex;
}

button.collapsible:hover {
  
}

button.collapsible.active {
  /*background-color: #dc9146;*/
  border-top: 1px solid #ffffff;
  color: #DF7003;
}

.faqs-content {
  padding: 0 18px 10px 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  text-align: left;
  
}

.faqs-content p {
  text-align: left;   /* makes sure text itself aligns left */
  margin: 10px 0;     /* optional: tidy spacing */
  font-family: "Alumni Sans", sans-serif;
font-size: 16pt;
}

.modal {
  display: none; /* hidden by default */
  
  position: fixed;
  z-index: 9999; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.9);
}

/* Modal Content */
.modal-content {
  background: #000000;
  color: #fff;
  
  margin: 10% auto;
  /*padding: 20px;*/
  border-radius: 8px;
  width: 1200px;
  height: 900px;
background-image: url("modal-bg.png");
  
}

.modal-content img{
margin: 0 auto;
display: block;
width: 99%;
}

.modal-content h2{
margin: 10px auto 0;
padding-top: 25px;
display: block;
text-align: center;
font-family: "Alumni Sans", sans-serif;
font-weight: 400;
font-size: 45pt;
}

.modal-content P{
  margin: 20px auto 0;
  text-align: center;
  font-family: "Alumni Sans", sans-serif;
  font-weight: 200;
  font-size: 25pt;
}

/* Close button */
.close {
  position: fixed;
  top: 50px;
  right: 80px;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  z-index: 10000; /* stay above everything */
}

.close:hover {
  color: #DF7003;
}

.detail{
  margin: 30px auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  /*float: left;*/
 
  width: 600px;
}

.detail .column {
  
  
  height: 200px;
 
}

.detail .column.left {
  padding: 10px;  /* tighter space inside the column */
}

.detail .left {
  flex: 0 0 27%;
  background-color: #DF7003;
  border-radius: 10px;
}

.detail .left h1{
  text-align: center;
  font-family: "Alumni Sans", sans-serif;
  font-weight: bold;
  font-size: 60pt;
  margin: 0;     /* removes default h1 spacing */
  padding: 0;    /* keep only the space you want */
}

.detail .left p{
  font-family: "Alumni Sans", sans-serif;
  font-size: 20pt;
  margin: 0;     /* removes default h1 spacing */
  padding: 0;    /* keep only the space you want */
}

.detail .right {
  flex: 0 0 83%;
}

.detail .right h1{
  padding: 20px 0 0 20px;
  margin: 0;
  text-align: left;
  font-family: "Alumni Sans", sans-serif;
  font-weight: bold;
  font-size: 30pt;
}

.detail .right p{
  padding: 0 0 0 20px;
text-align: left;
font-family: "Alumni Sans", sans-serif;
font-size: 20pt;
}

/* Clear floats after the columns */
.detail .row:after {
  content: "";
  display: table;
  clear: both;
}

button.buy-btn{
  background-color: #DF7003;
  width: 200px;
  height: auto;
  border-radius: 30px;
  border: none;
  padding: 10px;
  font-family: "Alumni Sans", sans-serif;
  font-size: 20pt;
  color: #ffffff;
  margin: 0 auto;
  display: flex;      /* required for margin auto to work */
  text-align: center;
  justify-content:center;
  cursor: pointer;
}

button.buy-btn:hover{
  background-color: #ffffff;
  color: #ff7700;
}

a:link {
  color: #DF7003;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: rgb(255, 255, 255);
  background-color: transparent;
  text-decoration: underline;
}

#myVideo {
  display: block;        /* makes it behave like a block */
  margin: 0 auto 50px;        /* centers horizontally */
  width: 1200px;         /* fixed width */
  height: auto;          /* keeps correct aspect ratio */
}

.slideshow-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto 200px;
}

.mySlides {
  display: none;
}

.mySlides img {
  width: 100%;
  border-radius: 10px;
}

/* Number text */
.numbertext {
  position: absolute;
  top: 8px;
  left: 16px;
  color: #fff;
  font-size: 16px;
  padding: 4px 8px;
  background-color: rgba(0,0,0,0.4);
  border-radius: 4px;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  margin-top: -22px;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.4);
  z-index: 5;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Dots */
.dots-container {
  position: absolute; /* place on top of slideshow */
  bottom: 15px; /* distance from bottom of slideshow */
  width: 100%;
  text-align: center;
  z-index: 10;
}

.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
  z-index: 5;
}

.active, .dot:hover {
  background-color: #717171;
}