@font-face {
    font-family: Rosover;
    src: url("../fonts/Rosover.otf") format("opentype");
}

@font-face {
    font-family: Renoric;
    src: url("../fonts/Renoric.otf") format("opentype");
}



:root {
	--color1: #897044 /* GOLD */;
	--color2: #ebcd96 /* LIGHT GOLD */;
	--color3: #000 /* BLACK */;
	--color4: #121212 /* DARK GREY */;
	--color5: #1a1a1a /* GREY */;
	--color6: #7f7f7f /* LIGHT GREY */;
	--borderRadius: 16px;
}


body {color: #fff; font-size: 16px; font-family: "neue-haas-unica"; letter-spacing: 1px;}
h1,h2,h3,h4,h5 {font-family: "eurostile", sans-serif; font-weight: 600;}
h1 {font-size: 2rem;}
h2 {line-height: 1 !important;}

.dropdown-item.active, .dropdown-item:active {background-color: var(--color1);}

.renoricFont {font-family: Renoric;}
.rosOverFont {font-family: RosOver;}
.text-underline {border-bottom: 1px solid white; display: inline-block;}

.color6 {color: var(--color6);}


.bg-dark {background-color: #000 !important;}
.euroStile {font-family: "eurostile", sans-serif; font-weight: 400; font-style: normal; letter-spacing: 1px;}
.navbar.scrolled {
  border-bottom: 1px solid var(--color1);
  transition: border-bottom 0.3s ease;
}

.enquireOn {
  border-bottom: 1px solid var(--color1);
  transition: border-bottom 0.3s ease;
}

.navbar-brand img {margin: 10px 0px; width: 250px;}
.nav-link {padding:5px 0px 0px 0px; text-transform: uppercase; color: #fff; font-weight: 500; font-size: 1.1rem;}
.btn-primary {background: var(--color1); border: none; padding: 5px 14px 7px 14px !important; font-size: 1.1rem !important; font-weight: 500 !important;}
.btn-dark {background:  var(--color1); padding: 6px 20px 8px 20px; font-size: 1rem; min-width: 150px; border-radius: 10px; border: none;}

.btn {text-transform: uppercase;}

.hero-video {margin-top: 96px; position: relative; width: 100%; height: 800px; overflow: hidden; background-color: black;}


.video-wrapper {position: absolute; top: 50%; left: 50%; width: 100vw; height: 56.25vw; /* 16:9 aspect ratio (100/16*9) */
  min-height: 800px; transform: translate(-50%, -50%); z-index: 1;  pointer-events: none; /* optional: disables interactions with video */
}

.video-wrapper iframe {width: 100%; height: 100%; border: 0;}

.hero-image-holder {margin-top: 81px; position: relative; width: 100%; height: 570px; overflow: hidden; background-color: black;}
.hero-image {width: 100%; height: 100%;}
.hero-image img {width: 100%; height: 100%; object-fit: cover;}
.hero-inner {height: 400px !important; }
.hero-overlay {position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; background-color: rgba(0, 0, 0, 0.1); /*backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);*/ text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);}
.headerPush {margin-top: 83px;}

.hero-inner .hero-overlay {padding: 1rem 0 !important;}
.sideImage {border-radius: 16px;}
.sideImage img {width: 100%; height: 100%; object-fit: cover; border-radius: 16px;}


.tickBullets {list-style-type: none; padding: 0; font-size: 1.25rem;}
.tickBullets li {margin-bottom: 25px; padding-left: 1.5rem;}
.tickBullets li::before {content: "\2713"; color: white; display: inline-block; width: 1.5rem; margin-left: -1.5rem;}

.slideContent {display: none;}
.accordionHolder:hover {cursor: pointer;}
.accordionHolder img {height: 30px; width: 30px;}
.accordionArrow {transition: all .4s;}
.accordionArrowActive {transform: rotate(180deg);}

ul {padding-left: 20px;}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: slideDown 0.3s ease forwards;
	border: none;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.sessionImages {width: 100%; height: 200px; border-radius: 16px; object-fit: cover;}
.gradientBorder {
  position: relative;
  border-radius: 16px;
  padding: 10px 20px;
  color: white;
  z-index: 0;
  overflow: hidden;
  background: none; /* Remove direct background */
}

/* Inner rotating gradient layer */
.gradientBorder::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250%; /* Increase size to cover corners */
  height: 250%;
  transform: translate(-50%, -50%) rotate(0deg); /* Center it */
  border-radius: 50%; /* Optional: smooth rotation */
  background: linear-gradient(135deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(33, 33, 33, 1) 45%,
    rgba(40, 40, 40, 1) 50%,
    rgba(33, 33, 33, 1) 55%,
    rgba(0, 0, 0, 1) 100%);
  /*animation: rotateInnerGradient 20s linear infinite;*/
  z-index: -1;
}

/* Border layer (unchanged) */
.gradientBorder::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(90deg, #897044 0%, #ebcd96 50%, #897044 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

/*@keyframes rotateInnerGradient {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}*/


.swiper {
  width: 100%;
  padding: 0 0px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* Slides */
.swiper-slide {
  width: 70%;
  background: #000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--borderRadius);
  transition: transform 0.3s ease;
  transform-origin: center;
  transform: scale(0.90) !important; /* smaller by default */
}

/* Fading to black on edges */
.swiper::before,
.swiper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px; /* width of the fade area */
  z-index: 10;
  pointer-events: none;
}



.swiper-slide-active {
  transform: scale(1) !important; /* full size for active slide */
  z-index: 20; /* bring active slide above others */
}

#gallery {overflow: hidden;}

body.blurred > *:not(#lightboxOverlay) {
    filter: blur(8px);
    pointer-events: none; /* prevent interaction with blurred content */
  }
  .gallery-wrapper {
    width: 100vw;
    height: 650px; /* enough for 2 rows of 300px images + gaps */
    display: flex;
    align-items: center;
    justify-content: center;
   overflow-x: auto;
    overflow-y: hidden;
	  padding: 10px 0px;
  }
  .gallery-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    user-select: none;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
    width: 100%;
  }
  .gallery-scroll.dragging {
    cursor: grabbing;
  }
  .gallery-scroll::-webkit-scrollbar {
    display: none;
  }

  .track {
    display: flex;
    flex-direction: column;
    gap: 20px; /* vertical gap between rows */
	  padding: 10px 0px;
  }

  

  #gallery .galleryRow {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  overflow: visible; /* Allow zoomed images and borders to overflow */
}

.img-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 16px;
  padding: 2px; /* Space for gradient border */
  transition: transform 0.3s ease;
  background: transparent;
}





.img-wrapper img {
  height: 300px;
  width: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  pointer-events: none;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}


  /* Small clickable hotspot in bottom-right corner */
  .click-area {
	  transition: transform 0.3s ease;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 12px; /* matches image border radius */
    border-bottom-right-radius: 12px; /* matches image border radius */
  }



  /* SVG zoom icon style */
  .click-area svg {
    width: 20px;
    height: 20px;
    fill: white;
    pointer-events: none; /* so clicks pass to .click-area */
  }

  /* Lightbox overlay styles */
  #lightboxOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: zoom-out;
  }



.lightbox-image-wrapper {
  padding: 2px;
  border-radius: 16px;
  background: linear-gradient(90deg, #897044 0%, #ebcd96 50%, #897044 100%);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

#lightboxOverlay img {
  max-width: 90vw;
  max-height: 90vh;
  display: block;
  border-radius: 12px;
  background: #111;
}


#serious {
	position: relative;
	color: white;
}
#serious::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: url('../images/Serious-About-Your-Game.jpg') bottom/cover no-repeat;
	z-index: 0;
}
#serious .overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.3); /* semi-transparent black */
	/*backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);*/
	z-index: 1;
}
#serious .container {
	position: relative;
	z-index: 2; /* above overlay and bg */
}

#serious h2 {font-size: 4rem; font-weight: 600;}

.animation-wrapper {position: relative; height: 620px; overflow: hidden;}

.rise1, .rise2, .rise3 {position: absolute; top: 0px; left: 0px; opacity: 0; transform: translateX(100vw);}

.rise2 { z-index: 3; pointer-events: none;}
.rise1 { z-index: 2; pointer-events: none;}
.rise3 { z-index: 1; pointer-events: none;}

.rise1 {top: 130px;}
.rise3 {top: 97px;}
.rise3 img {object-fit: contain; width: 110%;}

.rise1 img {width: 140px;}

.rise1 img {
  animation: slowRotate 20s linear infinite;
  transform-origin: center center; /* rotate around center */
}

.mc-field-group {padding: 14px; margin-bottom: 30px;}

.mc-field-group label {width: 50%; padding-top: 3px;}
.mc-field-group input, .mc-field-group select {width: 50%; background:#333; color: #fff; border: none; padding: 5px;}
.mc-field-group select {width: 59%;}
#mergeRow-gdpr .mc-field-group {border: none;}
#mergeRow-gdpr .mc-field-group input {width: 10%;}
.mc-field-group textarea {width: 100%; height: 152px; background:#333; color: #fff; border: none; padding: 5px;}

.footer-brand img {width: 150px;}
.socialLinks img {width: 26px;}
.socialLinksFaceBook img {width: 30px;}



#dustCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

@keyframes slowRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.riseTitle {display: flex; height: 100%; align-content: center; flex-wrap: wrap; transform: scale(0); opacity: 0;}

.particles {
  position: absolute;
  top: 34px; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.dust-particle {
  position: absolute;
  width: 4px;           /* a bit bigger */
  height: 4px;
  background: rgba(137, 112, 68, 0.7); /* stronger opacity */
  border-radius: 50%;
  opacity: 0.7;          /* stronger base opacity */
  filter: drop-shadow(0 0 1px rgba(137, 112, 68, 0.4)); /* subtle glow */
  animation: dustFloat 4s linear infinite;
  pointer-events: none;
}

@keyframes dustFloat {
  0% {
    transform: translate(0, 0);
    opacity: 0.7;
  }
  50% {
    transform: translate(var(--float-x), var(--float-y));
    opacity: 0.25;
  }
  100% {
    transform: translate(0, 0);
    opacity: 0.7;
  }
}

.riseTitle.zoomVisible {
  animation: zoomIn 0.5s ease-out 0.7s forwards;
}

.rise2.visible {
  animation: slideInBlur 0.5s ease-out forwards;
}

.rise1.visible {
  animation: slideInBlur 0.5s ease-out 0.06s forwards;
}

.rise3.visible {
  animation: slideInBlur 0.5s ease-out 0.065s forwards;
}


/* Slide & blur animation */
@keyframes zoomIn {
  0% {
	  transform: scale(0);
	opacity: 0;
	filter: blur(10px);
  }
  100% {
	transform: scale(1);
	opacity: 1;
	filter: blur(0);
  }
}


/* Slide & blur animation */
@keyframes slideInBlur {
  0% {
	transform: translateX(100vw);
	opacity: 0;
	filter: blur(8px);
  }
  100% {
	transform: translateX(0);
	opacity: 1;
	filter: blur(0);
  }
}


.swiper-pagination-bullet {background: #ddd;}
.swiper-pagination-bullet-active {background: #fff;}

.dropdown-toggle::after {
	border: none;
	background-image: url(../images/chevron-down.svg?1752141332);
	background-repeat: no-repeat;
	width: 20px;
	height: 9px;
}

@media (max-width: 490px) {
	.navbar-nav {padding-bottom: 10px;}
	.mobileLogos {width: 114px;}
	.navbar-nav li {margin-bottom: 20px;}
	
	
	
}

@media (min-width: 768px) {
	.btn:hover {background: var(--color6); border: none; color: #fff;}
	.img-wrapper:hover {background: linear-gradient(90deg, #897044 0%, #ebcd96 50%, #897044 100%); transform: scale(1.05); z-index: 10;}
	.navbar-brand img {width: 320px;}
	.img-wrapper:hover .click-area {background: var(--color1);}
	.hero-image-holder {margin-top: 80px; height: 600px;}
	.headerPush {margin-top: 95px;}

	.swiper {padding: 0 40px;}
	.swiper::before {
	  left: 0;
	  background: linear-gradient(to right, black, transparent);
	}

	.swiper::after {
	  right: 0;
	  background: linear-gradient(to left, black, transparent);
	}
	
	.mc-field-group label {width: 44%;}
	.mc-field-group input, .mc-field-group select {width: 53%;}


}

/*@media (max-width: 768px) {
  .hero-video {height: 500px;}
  .video-wrapper {min-height: 500px;}
}*/

@media (min-width: 1024px) {
	.hero-image-holder {height: 500px;}
}

@media (min-width: 1265px) {
	h1 {font-size: 3.1rem;}
	.hero-image-holder {height: 500px;}
	.hero-inner {height: 500px !important; }

}

@media (min-width: 1366px) {
	
	.hero-image-holder {height: 700px;}
	.gradientBorder {padding: 10px 20px;}

}
