/* Imports */
/* @import url('https://fonts.googleapis.com/css?family=Almarai&display=swap'); */
/* @import url('https://fonts.googleapis.com/css?family=Roboto'); */

/*
 * Variables
 */
:root {
  /* When changing color; also generate new shade and tint with https://maketintsandshades.com/ (using 30% value). This is used for hover */
  --primary-color: #4abfc8;
  --primary-color-contrast: #fff;
  --primary-color-shade: #34868c;
  --primary-color-tint: #80d2d9;

  --secondary-color: #F2B280;
  --secondary-color-contrast: #fff;
  --secondary-color-shade: #a97d5a;
  --secondary-color-tint: #f6c9a6;

  --background-color: white;
  --text-color: #0F0F0F;
  --link-text-color: #4abfc8;
}

/*
 * Essentials
 */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 100px;
}

body {
  font-family: 'Arial', 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6, .my-env h1, .my-env h2, .my-env h3, .my-env h4, .my-env h5, .my-env h6 {
  font-family: arial, sans-serif;
  color: var(--text-color);
	word-wrap: break-word;
}

a, .my-env a {
  color: var(--link-text-color);
  text-decoration: none;
}

a:hover, .my-env a:hover {
  text-decoration: underline;
  color: var(--link-text-color);
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: var(--text-color);
  text-decoration: none;
}


/*
 * Bootstrap overwrites
 */
.btn {
  border-radius: 4px;
}

.btn-primary, .my-env .btn-primary {
  background-color: var(--primary-color);
  border: 0;
  color: var(--primary-color-contrast);
}

.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:focus,
.btn-primary:hover,
.my-env .btn-primary:hover {
  background-color: var(--primary-color-tint);
}

.btn-secondary, .my-env .btn-secondary {
  background-color: var(--secondary-color-contrast);
  border: 0;
  color: var(--secondary-color);
}

.btn-secondary:active,
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:focus,
.btn-secondary:hover,
.my-env .btn-secondary:hover {
  background-color: var(--secondary-color-tint);
  color: var(--secondary-color-contrast);
}

/*
 * Bootstrap extensions
 */
.py-8 { padding-block: 5rem; }
.pt-8 { padding-top: 5rem; }
.pb-8 { padding-bottom: 5rem; }
.my-8 { margin-block: 5rem; }
.mt-8 { margin-top: 5rem; }
.mb-8 { margin-bottom: 5rem; }

.align-justify {
  text-align: justify;
}

/* 
 * Basics
 */
.website-header {
  border-bottom: solid 1px #E0E0E0;

  .container {
	  height: 100%;

		.website-header-logo-div {
		  height: 100%;

			.navbar-brand {
			  height: 100%;
			}

			.website-header-logo {
			  height: 100%;
			}
		}
	}

	.btn-primary {
	  width: 150px;
	}
}
.website-header {
  display: none !important;
}
.navbar-dark .navbar-toggler {
  border-color: var(--primary-color);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(139,20,24, 31)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--text-color);
  text-decoration: none;
  white-space: nowrap;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.foys-footer {
  background: var(--primary-color);
  color: var(--primary-color-contrast);
  max-width: none;
}

.foys-footer a {
  color: var(--primary-color-contrast);
}

/* Fix sponsors list */
.website-sponsors-list {
  .lslide > * {
    overflow: hidden;
    height: 100%;

    a {
      display: flex;
      height: 100%;
      justify-content: center;

      img {
        display: block;
        height: 100%;
        object-fit: contain;
      }
    }
  }
}

#my-env {
  padding: 2rem !important;
}

/* 
 * 👇 INSERT CUSTOM CSS FOR ALL SCREEN SIZES BELOW 👇
 */
body {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  min-height: 100vh;
}
 
.full-height-flex {
  flex: 1;
  background: url('https://foys-prod.imgix.net/001e3d22-24c1-4a08-b41b-08dc7ee2fe60/d99b899d-489e-46f3-9119-04083d3ce173.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
}

.my-env {
  .navbar {
    padding: 0;
  }
}

@media (min-width: 576px) {
    .my-env .w-sm-900 {
        width: unset;
    }
    .my-env .col-sm-auto {
        width: 100%;
        max-width: unset;
    }
}


/*
 * DESKTOP
 */
@media all and (min-width: 992px) {
  /* BASICS */


  /*
   * 👇 CUSTOM CSS FOR DESKTOP ONLY 👇
   */
  
}

/* 
 * MOBILE AND TABLETS
 */
@media all and (max-width: 992px) {
  /* BASICS */
  .navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;  
    border-color: var(--primary-color);
    cursor: pointer;
  }

  /*
   * 👇 CUSTOM CSS FOR MOBILE AND TABLETS 👇
   */

}