/*
* Variables
*/
:root {
	--primary: #2695FE;
	--primary-90: #2695FEFE;
	--primary-70: #2695FEB2;
  
	--background: #000D20;
	--background-90: #000D20E5;
  
	--text-primary: #CBCBC9;
	--text-secondary: #B2B2AE;
  
	--ui-primary: #000D20;
	--ui-primary-light: #082749;
	--ui-primary-light-light: #020E1A;
  
	--ui-secondary: #002343;
	--ui-secondary-light: #063D6F;
	--ui-secondary-light-light: #011C37;
  
	--ui-border: #085091;
  
	--radius: 0.5rem; 			/* 8px; */
	--radius-m: 0.75rem; 		/* 12px; */
	--radius-l: 1rem; 			/* 16px; */
	--radius-xl: 1.5rem; 		/* 24px; */
	--radius-xxl: 2.25rem; 		/* 36px; */
	--radius-100: 100%;
  
	--space: 0.25rem; 			/* 4px; */
	--space-m: 0.5rem; 			/* 8px; */
	--space-l: 0.75rem; 		/* 12px; */
	--space-xl: 1rem; 			/* 16px; */
	--space-xxl: 1.5rem; 		/* 24px; */
	--space-xxxl: 2.5rem; 		/* 40px; */
}

/* Font */
@font-face {
	font-family: handel_gothic;
	src: url(./fonts/handel_gothic/HANDGOTN.ttf);
}
  
@font-face {
	font-family: inter;
	src: url(./fonts/inter/Inter-Regular.ttf);
}

@font-face {
	font-family: inter;
	src: url(./fonts/inter/Inter-SemiBold.ttf);
	font-weight: 600;
}

@font-face {
	font-family: inter;
	src: url(./fonts/inter/Inter-ExtraBold.ttf);
	font-weight: 800;
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
	font-family: inter;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f0f0f0;
    background-image: url('./img/background.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    backdrop-filter: brightness(0.8);
    min-height: 100vh;
    padding: 2rem;
}

.index {
    backdrop-filter: brightness(1.0);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 2rem;
}

.index .center {
    display: flex;
    flex-direction: column;
}

.index .legal {
	max-width: 350px;
	width: 100%;
	margin-top: 24px;
}

.index .privacy {
	max-width: 350px;
	width: 100%;
}

a {
	color: #fff;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	letter-spacing: 0.04em;
	font-family: handel_gothic;
	color: #fff;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    color: #aad2ff;
}

p, li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.index-logo {
    display: block;
    margin: 0 auto 1rem auto;
    max-width: 80%;
    width: 300px;
}

  .mt {
	margin-top: var(--space);
  }
  
  .mt-m {
	margin-top: var(--space-m);
  }

  .mt-l {
	margin-top: var(--space-l);
  }

  .mt-xl {
	margin-top: var(--space-xl);
  }

  .mt-xl {
	margin-top: var(--space-xl);
  }
  
  .mt-xxl {
	margin-top: var(--space-xxl);
  }
  
  .mt-xxxl {
	margin-top: var(--space-xxxl);
  }

.py-2 {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

/* Responsive tweaks */
@media (max-width: 600px) {
    body {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .py-2 {
        padding: 1.2rem;
    }
}


 /*
  * Button
  */
  .button {
	font-size: 1.25rem;
	line-height: 1.75rem;
	color: var(--text-primary);
	text-shadow: 0px 2px 0px #020E1A66;
  
	border: 2px solid var(--primary);
	border-radius: var(--radius-xxl);
	background-color: var(--ui-primary);
	padding: var(--space-l) 5.281rem;
	max-width: 100%;

    text-decoration: none;
	font-family: handel_gothic;
  }
  	.button:disabled {
		opacity: 50%;
	}
	.button:focus {
      background-color: var(--ui-primary-light);
	  outline: 3px solid var(--primary);
	  outline-offset: 3px;
	}
	.button:hover {
	  background-color: var(--ui-primary-light);
	}
	.button:active {
	  background-color: var(--primary-70);
	}
  
	.button.secondary, .button.rounded {
	  border-color: var(--ui-primary);
	}
	  .button.secondary:focus, .button.rounded:focus {
		background-color: var(--ui-primary-light);
		outline: 3px solid var(--primary);
		outline-offset: 3px;
	  }
	  .button.secondary:hover, .button.rounded:hover {
		border-color: var(--ui-primary-light);
	  }
	  .button.secondary:active, .button.rounded:active {
		border-color: transparent;
	  }
  
	.button.small {
	  padding: var(--space-m) var(--space-xxl);
	  font-size: 0.75rem;
	  line-height: 1.05rem;
	}
	.button.block {
	  display: block;
	  width: 100%;
	  padding: var(--space-l) 0;
	}
	.button.rounded {
	  border-radius: var(--radius-100);
	  padding: var(--radius-m);
	  width: 3rem;
	  height: 3rem;
  
	  display: flex;
	  align-items: center;
	  justify-content: center;
	}
		.button.rounded img,  .button.rounded svg {
			width: var(--radius-xl);
			height: var(--radius-xl);
		}
		.button.rounded.small {
			width: 2.125rem;
			height: 2.125rem;
			padding: var(--space-m);
		}
			.button.rounded.small img, .button.rounded.small svg {
				width: 1.125rem;
				height: 1.125rem;
			}