html {
	overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background-color: #E1DECD;
    font-family: 'Unbounded', sans-serif;
	overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #E1DECD;
    z-index: 1000;
}

.navbar {
    margin: 0 4rem;
}

#header-text-logo {
	color: #BA203E;
	font-size: 2rem;
	font-weight: 900;
	line-height: 0.888;
	letter-spacing: 0;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgb(186,32,62)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-nav {
	flex-direction: row;
	align-items: center;
}

.navbar-nav .nav-link {
    background-color: #BA203E;
    color: #E1DECD;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    text-align: center;
	width: 150px;
}

.navbar-nav .nav-link:hover {
    background-color: #C65969;
}

#header-line {
    border: 2px solid #C65969;
	border-radius: 2px;
    margin: 0 3.5rem;
    opacity: 1;
}

#main-section {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#body-text-logo {
	color: #BA203E;
	font-size: clamp(5rem, 10vw, 13rem);
	font-weight: 900;
	line-height: 0.888;
	letter-spacing: 0;
}

.store-button-wrapper {
	margin-right: 100px;
}

.store-button {
	width: 100%;
	height: auto;
	transition: transform 0.2s ease;
}

.store-button:hover {
    transform: scale(1.05);
}

#about-game {
	scroll-margin-top: 11rem;
}

.about-game-img {
    max-width: 100%;
	height: auto;
}

.about-game-title {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    color: #BA203E;
    text-transform: uppercase;
}

.about-game-text {
    font-size: clamp(1rem, 1.4vw, 1.5rem);
    font-weight: 400;
    line-height: 1.3;
    color: #BA203E;
}

#contact-us {
	min-height: 100vh;
	scroll-margin-top: 4rem;
}

#contact-us-form-div {
	background-color: #BA203E;
	border: none;
	border-radius: 40px;
	width: 100%;
	max-width: 370px;
}

#contact-us-title {
	color: #E1DECD;
	font-weight: bold;
	font-size: 1.6rem;
}

.contact-us-inputs {
	background-color: #E1DECD !important;
	color: #BA203E !important;
	border: none;
	border-radius: 22px;
}

.contact-us-inputs::placeholder {
	color: #BA203E;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 1px;
  width: 1px;
  pointer-events: none;
}

#contact-us-submit-button {
	background-color: #E1DECD;
	color: #BA203E;
	font-weight: bold;
	font-size: 1.2rem;
	border-radius: 25px;
}

#contact-us-form-message {
  color: #E1DECD;
  font-weight: bold;
  text-align: center;
}

#main-tou, #main-pp {
	width: 90%;
	margin-top: 11rem;
	margin-bottom: 8rem;
	margin-left: 5%;
}

#main-tou h1, #main-pp h1 {
	color: #BA203E;
	font-size: 4rem;
	margin-bottom: 3rem;
}

#main-tou ol, #main-pp ol {
	color: #BA203E;
	font-size: 1rem;
}

.footer {
    text-align: center;
    padding: 0;
}

.social-media p {
    font-weight: bold;
    color: #BA203E;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons img {
    width: 40px;
    height: 40px;
    transition: transform 0.2s ease-in-out;
}

.social-icons img:hover {
    transform: scale(1.2);
}

#footer-line {
	border: 2px solid #C65969;
	border-radius: 2px;
    margin: 1.5rem 3.5rem 0 3.5rem;
    opacity: 1;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: #6b6b6b;
}

.footer-links a:hover {
    color: #BA203E;
}

@media (max-width: 991px) {
	.navbar {
		margin: 0;
    }

	a {
        font-size: 1.5rem !important;
    }
	
	.navbar-toggler, .navbar-collapse {
	  position: relative;
	  z-index: 1000;
	}

	.navbar-nav {
        flex-direction: column;
        align-items: normal;
		margin-top: 1rem;
    }
	
	.navbar-nav .nav-link {
        margin: 0.2rem 0;
		width: auto;
		padding-top: 0.3rem;
		padding-bottom: 0.3rem;
    }
	
    #header-line {
        display: none;
    }
	
	#menu-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.5);
		z-index: 999;
		display: none;
	}
	
	main {
		padding: 0;
	}
	
	#main-section {
		flex-direction: column;
	}
	
	#main-section.row {
		margin-left: 0;
		margin-right: 0;
	}

    #body-text-logo {
        font-size: 4rem !important;
		text-align: left !important;
    }
	
	#store-buttons-div {
		margin-top: 5rem !important;
	}
	
	.store-button-wrapper {
		margin-right: 0;
	}

    .store-button {
        max-width: 200px;
    }
	
	#about-game {
		width: 90%;
		margin-left: 5%;
		scroll-margin-top: 8rem;
		background-color: #BA203E;
		margin-bottom: 4rem;
		padding: 40px 10px;
        border-radius: 40px;
    }
	
	#about-game img {
		width: 92%;
	}

    #about-game h2 {
        font-size: 2rem;
		color: #E1DECD;
    }

    #about-game p {
        font-size: 1.2rem;
		color: #E1DECD;
		padding: 10px 0;
    }
	
	#contact-us {
		scroll-margin-top: 8rem;
		min-height: 75vh;
		width: 90%;
		margin-left: 5%;
		margin-bottom: 4rem;
	}
	
	#contact-us-form-div {
		width: 107%;
		max-width: 390px;
	}

	.contact-us-inputs {
		background-color: #C65969 !important;
		color: #E1DECD !important;
	}

	.contact-us-inputs::placeholder {
		color: #E1DECD;
	}

	#contact-us-submit-button {
		background-color: #C65969;
		color: #E1DECD;
	}

	#main-tou, #main-pp {
		background-color: #BA203E;
		margin-top: 7rem;
		margin-bottom: 4rem;
		padding: 10px;
        border-radius: 40px;
	}
	
	#main-tou h1, #main-pp h1 {
		color: #E1DECD;
		font-size: 1.8rem;
		margin: 0;
		margin-left: 1rem;
		padding: 2rem 0;
	}
	
	#main-tou ol, #main-pp ol {
		color: #E1DECD;
		font-size: 0.75rem;
	}
	
	.social-media p {
		font-size: 1rem;
	}
	
	.social-icons img {
		width: 30px;
		height: 30px;
	}
	
	#footer-line {
		margin: 1.5rem 1.5rem 0.5rem 1.5rem;
	}
	
	.footer-links {
		margin-bottom: 2.5rem;
	}
	
	.footer-links a {
		font-size: 0.8rem !important;
	}
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #E1DECD;
}

::-webkit-scrollbar-thumb {
  background: #BA203E;
  border-radius: 2.5px;
}
