/* FONT  JOHN MARION */
@font-face{
    font-family: myFont;
    src: url(/Images/brand.ttf);
}

body{
    font-family: myFont !important;
    
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: "https://plus.unsplash.com/premium_photo-1709431143193-b9a7c479d05f?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" !important; */
    background-color: #00b4ff; /* Set the background color */
    z-index: -1; /* Ensure this background is behind everything else */
}

/* - */

/* INTRO VIEW BACKGROUND */
.headerPicture{
    
    /* background: #00b4ff; */
    z-index: 0;
}

/* SUN ANIMATION */
.sun { 
    position: absolute;
    top:10em;
    left:10em;
    margin: auto;  
    width:120px;
    height:120px;
    border-radius:50%;	
    background:white;
    opacity:0.9;			
    box-shadow: 0px 0px 40px 15px white;  
    z-index: 1;
}

.ray_box {
  position: absolute;
  margin: auto;
    top:0px;
    left:0;
    right:0;
    bottom:0;	
  width:70px;  
  -webkit-animation: ray_anim 120s linear infinite;
  animation: ray_anim 120s linear infinite;
  z-index: 1;
}
.ray {  
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%); 
    margin-left:10px;
    border-radius:80% 80% 0 0;
    position:absolute;
    opacity:0.1;
}

.ray1 {    
    height:170px;
    width:30px;
   -webkit-transform: rotate(180deg);
    top:-175px;
    left: 15px;
}
.ray2 {
    height:100px;
    width:8px;
   -webkit-transform: rotate(220deg);
    top:-90px;
    left: 75px;
}
.ray3 {
    height:170px;
    width:50px;
   -webkit-transform: rotate(250deg);
    top:-80px;
    left: 100px;
}
.ray4 {
    height:120px;
    width:14px;
   -webkit-transform: rotate(305deg);
    top:30px;
    left: 100px;
}
.ray5 {
    height:140px;
    width:30px;
   -webkit-transform: rotate(-15deg);
    top:60px;
    left: 40px;
}
.ray6 {
    height:90px;
    width:50px;
   -webkit-transform: rotate(30deg);
    top:60px;
    left: -40px;
}
.ray7 {
    height:180px;
    width:10px;
   -webkit-transform: rotate(70deg);
    top:-35px;
    left: -40px;
}
.ray8 {
    height:120px;
    width:30px;
   -webkit-transform: rotate(100deg);
    top:-45px;
    left:-90px;
}
.ray9 {
    height:80px;
    width:10px;
   -webkit-transform: rotate(120deg);
    top:-65px;
    left:-60px;
}
.ray10 {
    height:190px;
    width:23px;
   -webkit-transform: rotate(150deg);
    top:-185px;
    left: -60px;
}


@-webkit-keyframes ray_anim { 
        0% { -webkit-transform: rotate(0deg); transform: rotate(0deg);}    
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg);}
}
/* END SECTION */

/* CLOUD ANIMATION */
#background-wrap {
  bottom: 0;
  left: 0;
  padding-top: 50px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
}

/* KEYFRAMES */

@-webkit-keyframes animateCloud {
  0% {
      margin-left: -1000px;
  }
  100% {
      margin-left: 100%;
  }
}

@-moz-keyframes animateCloud {
  0% {
      margin-left: -1000px;
  }
  100% {
      margin-left: 100%;
  }
}

@keyframes animateCloud {
  0% {
      margin-left: -1000px;
  }
  100% {
      margin-left: 100%;
  }
}

/* ANIMATIONS */

.x1 {
  -webkit-animation: animateCloud 35s linear infinite;
  -moz-animation: animateCloud 35s linear infinite;
  animation: animateCloud 35s linear infinite;
  
  -webkit-transform: scale(0.65);
  -moz-transform: scale(0.65);
  transform: scale(0.65);
}

.x2 {
  -webkit-animation: animateCloud 20s linear infinite;
  -moz-animation: animateCloud 20s linear infinite;
  animation: animateCloud 20s linear infinite;
  
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  transform: scale(0.3);
}

.x3 {
  -webkit-animation: animateCloud 30s linear infinite;
  -moz-animation: animateCloud 30s linear infinite;
  animation: animateCloud 30s linear infinite;
  
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  transform: scale(0.5);
}

.x4 {
  -webkit-animation: animateCloud 18s linear infinite;
  -moz-animation: animateCloud 18s linear infinite;
  animation: animateCloud 18s linear infinite;
  
  -webkit-transform: scale(0.4);
  -moz-transform: scale(0.4);
  transform: scale(0.4);
}

.x5 {
  -webkit-animation: animateCloud 25s linear infinite;
  -moz-animation: animateCloud 25s linear infinite;
  animation: animateCloud 25s linear infinite;
  
  -webkit-transform: scale(0.55);
  -moz-transform: scale(0.55);
  transform: scale(0.55);
}

/* OBJECTS */

.cloud {
  background: #fff;
  background: -moz-linear-gradient(top,  #fff 5%, #f1f1f1 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%,#fff), color-stop(100%,#f1f1f1));
  background: -webkit-linear-gradient(top,  #fff 5%,#f1f1f1 100%);
  background: -o-linear-gradient(top,  #fff 5%,#f1f1f1 100%);
  background: -ms-linear-gradient(top,  #fff 5%,#f1f1f1 100%);
  background: linear-gradient(top,  #fff 5%,#f1f1f1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#f1f1f1',GradientType=0 );
  
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  
  -webkit-box-shadow: 0 8px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 8px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 5px rgba(0, 0, 0, 0.1);

  height: 120px;
  position: relative;
  width: 350px;


}

.cloud:after, .cloud:before {
  background: #fff;
  content: '';
  position: absolute;
  z-indeX: -1;
}

.cloud:after {
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;

  height: 100px;
  left: 50px;
  top: -50px;
  width: 100px;
}

.cloud:before {
  -webkit-border-radius: 200px;
  -moz-border-radius: 200px;
  border-radius: 200px;

  width: 180px;
  height: 180px;
  right: 50px;
  top: -90px;
}
/* END SECTION */


#btn-brand {
    background-color: #FFB23E;
    border:0.1em solid #242834;
    color: #f2f2f2;
    z-index: 100;
    text-decoration: none;
    position: relative;
    pointer-events: auto;
    font-family: myFont;
    src: url(/Images/brand.ttf);
}

#btn-brand:hover{
    background-color: #242834;
    border: 0.1em solid #FFB23E;
    z-index: 3;
}

/* Homepage Button */
.homepage-btn {
    position: absolute;
    z-index: 100;
}

.btn{
    text-align: left !important;
    width: 100%;
}

#detailsHeader {
    font-size: 2.95rem;
    z-index: 5;
}

#attractionHeader,#detailsHeader {
    color: #FFE3CA;
}

#btn-brand-primary{
    background-color: #FF3D00 ;
    border: 0.1em solid #FF900B;
    z-index: 3;
}

.btn-register{
    background-color: #FFE3CA !important;
    color: #FF900B !important;
    z-index: 2;
}

.btn-register:hover{
    font-weight: bolder !important;
    border: 0.1em solid #FF900B;
    z-index: 2;
}

.btn-custom {
    height: 6rem;
}

#extra {
    background-color: #081C15;
    border:0.1em solid #FF3D00;
    color: #FFE3CA;
    z-index: 2;
}

#extraText {
    font-size: 1rem;
}
/* - */
/* - */



.hostSect{
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Featurette Headings */
.featuretteHeader {
    color:  #192857 !important;
}

#featuretteHeader-sub {
    color:  #94bfe7 !important;
}

.featurette-img{
    width: 100%;
}

.bodyFeaturette{
    font-family: Arial, Helvetica, sans-serif;
}

/* SCROLL RULES */
#tournamentHosts-d{
    scroll-margin-top: 6rem;
}
#tournamentRules-d{
    scroll-margin-top: 6rem;
}

.nav-span-d{
    display: none;
}
.sectionOne-M{
    display: none;
}
.sectionOne-D{
    display: block;
}
.featurette-mobile{
    display: none;
}
.featurette-desktop{
    display: block;
}


@media (max-width: 1366px) {

    /* SCROLL RULES */
    #tournamentHosts-m{
        scroll-margin-top: 6rem;
    }
    #tournamentRules-m{
        scroll-margin-top: 6rem;
    }

    /* TOP PAGE */
    #brand-logo{
        height: 100%;
        width: 100%;
        margin-bottom: 3.5rem !important;
        z-index: 100;
    }

    #detailsHeader{
        color: #f2f2f2;
        font-size: 1.5rem;
        z-index: 3;
        /* margin-bottom: 4.5rem !important; */
    }

    .btn-group-lg>.btn, .btn-lg {
        --bs-btn-font-size: 1rem !important;
    }

    /* NAV BAR */
    .nav-span-d{
        display: block;
    }
    .nav-span-m{
        display: none;
    }
    .sectionOne-D{
        display: none;
    }
    .sectionOne-M{
        display: block;
    }

    .featurette-mobile{
        display: block;
    }
    .featurette-desktop{
        display: none;
    }
    /* ---------- */
    /* ANIMATIONS */
    /* ---------- */

    .sun { 
        position: absolute;
        top:4em;
        left:22em;
        margin: auto;  
        width:120px;
        height:120px;
        border-radius:50%;	
        background:white;
        opacity:0.9;			
        box-shadow: 0px 0px 40px 15px white;  
        z-index: 1;
    }

    /* CLOUD ANIMATION */
    #background-wrap {
        bottom: 0;
        left: 25em;
        padding-top: 50px;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 1;
        pointer-events: none;
  }


}