:root {
  --header-height: 40px;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(203, 80%, 73%);
  --first-color-lighten: hsl(220, 68%, 97%);
  --title-color: #2b9ae4;
  --text-color: #292929;
  --body-color: #f5f5f5;
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Inter", sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}


/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,body{
  display: flex;
  flex-direction: column; 
  width: 100%;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1200px;
  width: 100%;
}

header {
  background-color: rgba(245, 245, 245); 
  position: fixed;
  width: 100vw;      
  left: 0;          
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #7b8697;
}

header .container {
  max-width: none;   
  width: 100%;       
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 120px ;
  margin: 0;         
}

nav {
  margin: 0 10px;
}

nav ul{
  list-style: none;
  display: flex;
  align-items: center;
}

nav ul li{
  margin-left: 20px;
  position: relative;
}

nav ul li a{
  color: #3d3d3d;
  text-decoration: none;
  padding: 8px 12px;
  display: block;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #097be5;
  cursor: pointer;
}

img{
    width: 250px;
    height: 100px;
}

.dropdown-content{
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 150px;
  box-shadow: 0 2px 5px rgba(24, 24, 24, 0.5);
  z-index: 100;
}

.dropdown-content li{
  margin: 0;
}

.dropdown-content li a{
  padding: 10px 14px;;
  color: var(--text-color);
}

.dropdown-content li a:hover{
  background-color: #ddd;
}

.dropdown:hover .dropdown-content{
  display: block;
  z-index: 100vh;
}
.gapper{
  justify-content: space-between;
  display: flex;
  width: 100%;
  align-items: center;
}

.lgn-btn{
  color: white;
  text-decoration: var(--font-semi-bold);
  background-image: linear-gradient(to bottom right,  rgb(36, 102, 224), rgb(87, 188, 219));
  padding:10px 40px;
  border-radius: 5px ;
  border: none;
}

.cur-page{
  color: #0982e5;
}

.welcome-text{
  margin: 40px  0 0 0;
  width: 100%;
  text-align: center;
  justify-items: center;
}

.welcome-text h1 {
  font-size:2.5rem;
  color: var(--title-color);
  margin: 20px 0;
}
.welcome-text p {
  font-size: 1.0  rem;
  color: #6e777e;
  margin-top: 10px;
}
#slider {
  width: 100vw;    
  margin-top: 100px;        
  max-width: none;           
  position: relative;
  overflow: hidden;
  background: #23272a;
  min-height: 600px;
}

#slider::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 3;
  pointer-events: none;
}

#slider canvas {
  width: 150%;
  height: 150%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

#slider img {
  visibility: hidden;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
}

.slider-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-items: center;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  z-index: 5;
}

#slider-content {
  padding: 150px 10px;

}
#slider-content h2 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  color: #fff;
  margin: 20px 0 40px;
  line-height: 1.1;
}
#slider-content .meta {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #919da8;
  text-transform: uppercase;
  margin-bottom: 8px;
}
#slide-status {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #fff;
}
#slider-content span {
  display: none;
}
#pagination {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  z-index: 6;
}
#pagination button {
  display: block;
  border: 0;
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  border-radius: 100%;
  margin: 18px 0;
  cursor: pointer;
  opacity: 0.2;
  transition: opacity 0.2s;
  outline: none;
}
#pagination button.active,
#pagination button:hover {
  opacity: 1;
}

.card-section {
  margin-top: 50px;
  text-align: center;
}
.card-section h1 {
  font-size: 2.5rem;
  color: var(--title-color);
}

.card-section p {
  font-size: 1.1rem;
  color: #6e777e;
  margin-top: 10px;
}

.game-section {
  padding: 60px 50px;
}
.line-title {
  position: relative;
  text-align: left;
  width: 400px;
  margin-bottom: 48px;
  padding-bottom: 16px;
  font-size: 2.0em;
  line-height: 28px;
  font-weight: 700;
  text-transform: capitalize;
}

.line-title::before,
.line-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  border-radius: 2px;
}

.line-title::before {
  width: 100%;
  background: #f2f2f2;
}

.line-title::after {
  width: 32px;
  background: #2f73cc;
}

.custom-carousel {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 20px;
  scroll-behavior: smooth;
  /* Hide scrollbar for Webkit browsers */
  -webkit-overflow-scrolling: touch;
}
.custom-carousel::-webkit-scrollbar {
  height: 8px;
  background: transparent;
}
.custom-carousel::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.custom-carousel .item {
  margin: 0 15px 60px;
  width: 320px;
  height: 400px;
  display: flex;
  align-items: flex-end;
  background: #343434 no-repeat center center / cover;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.custom-carousel .item.active {
  width: 500px;
  box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
}

.custom-carousel .item:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.custom-carousel .item-desc {
  padding: 0 24px 12px;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transform: translateY(calc(100% - 54px));
  transition: all 0.4s ease-in-out;
}
.custom-carousel .item.active .item-desc {
  transform: none;
}
.custom-carousel .item-desc p {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.4s ease-in-out 0.2s;
}
.custom-carousel .item.active .item-desc p {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .line-title { width: 250px; }
  .custom-carousel .item { width: 200px; height: 280px; }
  .custom-carousel .item.active { width: 270px; }
  .custom-carousel .item-desc { padding: 0 14px 5px; }
}

.info-campus {
  max-width: 1200px;
  margin: 0 80px;
  padding: 60px 0;
  display: flex;
  gap: 10px;
  flex-direction: column;
  max-width: none;
}

.box {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.image {
  background-color: #000;
  width: 50%;
  height: 300px;
  flex-shrink: 0;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text {
  width: 48%;
}

.text h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.text p {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.info-campus button {
  padding: 10px 20px;
  background-image: linear-gradient(to bottom right,  rgb(36, 102, 224), rgb(87, 188, 219));
  color: #fff;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
}

button span {
  margin-left: 10px;
}

.contact {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  border: 1px solid #ddd;
  padding: 60px 150px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.contact-title {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
}

.contact-number {
  font-size: 20px;
  color: #000;
  text-align: center;
  font-weight: normal;
}

.contact-number i {
  margin-right: 8px;
  color: #000;
}

.contact-divider {
  height: 60px;
  width: 1px;
  background-color: #ccc;
}

.reservation-btn {
  display: inline-block;
  padding: 10px 25px;
  background-image: linear-gradient(to bottom right,  rgb(36, 102, 224), rgb(87, 188, 219));
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 13px;
  margin-top: 10px;
  transition: background-color 0.3s;
}

.reservation-btn:hover {
  background-color: #444;
}

#form{
    color: var(--text-color);
    padding: 65px 0;
}

.header h2{
    font-size: 25px;
    text-align: center;
}

.floating-box {
    background-color: rgb(255, 255, 255);
    width: 900px;
    border: 1px solid #ddd;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    align-items: center;
    justify-items: center;
}

.content {
    min-width: 100%;
    padding: 10px 0;
}

.content label{
    display: block;
    padding: 0 0 10px 0;
}

.content input{
    width: 100%;
    height: 28px;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    border: 1px solid #ddd;
    padding: 15px;
}

.content textarea{
  width: 100%;
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
  border: 1px solid #ddd;
  padding: 15px;
}

.my-input{
    padding-left: 10px;
}

.floating-box button[type="Submit"]{
    margin-top: 10px;
    min-width: 100px;
    min-height: 28px;
    border-radius: 5px;
    border: none;
    color: white;
    background-image: linear-gradient(to bottom right,  rgb(36, 102, 224), rgb(87, 188, 219));
    padding: 10px 40px;
}

.floating-box button[type="Submit"]:hover{
   background-image: linear-gradient(to bottom right,  rgb(36, 102, 224), rgb(87, 140, 219));
}
footer{
    width: 100%;
    background-color: var(--body-color);
    border-radius: 5px 5px 0 0;
    color: #6e777e;
    text-align: center; 
    justify-items: center;
    padding: 20px;
    margin: auto;
    border-top: 1px solid #ddd;
}
.social{
    margin-top: 10px;
}

.social a{
    color: #6e777e;
    text-decoration: none;
    font-size: 15px;
}
