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

:root {
	--black-color: #000000;
	--white-color: #ffffff;
	--yellow-color: #fbc103;
	--blue-color: #df03f0;
	--green-color: #2effbd;
	--red-color: #fb0366;

	--primary-font: 'Montserrat', serif;

	--small-content-width: 650px;
	--large-content-width: 785px;

	--medium-padding: 100px;
	--small-padding: 75px;
	--tiny-padding: 35px;

	--larger-border-radius: 70px;
	--large-border-radius: 25px;

	--primary-transition-time: 300ms;

	--primary-layer-blur: 16.54px;
	--secondary-layer-blur: 50px;

	--divider-line-margin-top: 65px;
}

@media only screen and (max-width: 1279px) {
	:root {
		--small-content-width: 330px;
		--large-content-width: 335px;
		--small-padding: 60px;
		--tiny-padding: 30px;
	}
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: var(--primary-font);
	width: 100%;
	overflow-x: clip;
	position: relative;
}

/* ✅ FIXED: mobile-safe scroll lock */
body.menu-open {
	position: fixed;
	inset: 0;
	overflow: hidden;
}

/* TYPOGRAPHY */

h1 {
	font-size: 62px;
	font-weight: 200;
	text-transform: uppercase;
}

h2 {
	font-size: 48px;
	font-weight: 300;
	text-transform: uppercase;
}

h4 {
	font-size: 22px;
	font-weight: 400;
	text-transform: uppercase;
}

p {
	font-size: 14px;
	font-weight: 300;
}

@media only screen and (max-width: 1279px) {
	h1 {
		font-size: 40px;
	}

	h2 {
		font-size: 30px;
	}
}

/* GLOBAL CLASSES */

.rounded-section {
	border-top-left-radius: var(--large-border-radius);
	border-top-right-radius: var(--large-border-radius);
	margin-top: calc(var(--large-border-radius) * -1);
}

.green-text {
	color: var(--green-color);
}

.red-text {
	color: var(--red-color);
}

.gradient-fader {
	width: 100%;
	height: 250px;
	background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 1) 65%,
		rgba(0, 0, 0, 0) 100%
	);
	pointer-events: none;
}

#fader-1.gradient-fader {
	background: none;
}

#fader-4.gradient-fader {
	background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 1) 20%,
		rgba(0, 0, 0, 0) 100%
	);
}


.info-icon {
	border-radius: 100px;
	width: 25px;
	height: 25px;
	border: 2px solid var(--black-color);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

hr {
	border: none;
	border-radius: 100px;
	width: 266px;
	height: 2px;
	background-color: var(--black-color);
}

/* COMPONENTS */

.primary-button-wrapper {
	width: 350px;
	height: 90px;
	margin-left: -25px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.primary-button {
	background-color: rgba(255, 255, 255, 0.05);
	border: none;
	outline: none;
	border-radius: 100px;
	transition: background-color var(--primary-transition-time),
		padding var(--primary-transition-time);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	margin: 0;
	cursor: pointer;
	backdrop-filter: blur(var(--primary-layer-blur));
}

.primary-button p {
	text-transform: uppercase;
	background-color: var(--white-color);
	color: var(--black-color);
	font-family: var(--primary-font);
	padding: 18px 0px;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 500;
	border: 2px solid var(--black-color);
	width: 310px;
}

.primary-button:hover {
	background-color: rgba(255, 255, 255, 0.2);
	padding: 10px;
}

@media only screen and (max-width: 1279px) {
	.primary-button {
		margin-left: -15px;
	}

	.primary-button p {
		font-size: 13px;
	}
}

.primary-button-alt {
	text-transform: uppercase;
	background-color: transparent;
	color: var(--white-color);
	font-family: var(--primary-font);
	padding: 18px 0px;
	border-radius: 100px;
	border: 2px solid var(--white-color);
	width: 310px;
	cursor: pointer;
}

.primary-button-alt p {
	font-size: 13px;
}

.secondary-button {
	background-color: var(--yellow-color);
	border-radius: 100px;
	padding: 8px 15px;
	cursor: pointer;
	border: none;
	outline: none;
}

.secondary-button p {
	text-transform: uppercase;
	color: var(--black-color);
	font-family: var(--primary-font);
	font-size: 14px;
	font-weight: 500;
}

.social-button {
	background-color: var(--black-color);
	border-radius: 100px;
	width: 62px;
	height: 62px;
	border: none;
	outline: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: filter var(--primary-transition-time);
}

.social-button img {
	height: 35px;
	width: 35px;
}

.social-button img[alt='Instagram'] {
	height: 40px;
	width: 40px;
}

.social-button:hover {
	filter: brightness(1);
}

.icon-button {
	background-color: transparent;
	border-radius: 100px;
	width: 60px;
	height: 60px;
	border: 2px solid var(--black-color);
	outline: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: filter var(--primary-transition-time);
}

.icon-button img {
	height: 15px;
	width: 15px;
}

.icon-button:hover {
	filter: brightness(1);
}

a {
	text-decoration: none;
	text-transform: uppercase;
	color: var(--black-color);
}

a.link {
	text-decoration: underline;
	color: var(--red-color);
	text-transform: none;
}

.primary-input-wrapper {
	border: 2px solid var(--black-color);
	border-radius: 10px;
	padding: 8px;
	width: var(--large-content-width);
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	
	transition: background-color var(--primary-transition-time);
}

.primary-input-wrapper input {
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	background-color: transparent;
	font-family: var(--primary-font);
	padding: 15px;
	font-size:14px
}

input::placeholder {
	color: var(--white-color);
	opacity: 50%;
}

input:disabled {
	color: var(--white-color);
}

.primary-input-wrapper.invalid-email {
	background-color: var(--yellow-color);
}

.primary-input-wrapper.invalid-email::after {
	content: 'INCORRECT EMAIL FORMAT';
	font-size: 14px;
	position: absolute;
	margin-top: 110px;
	margin-left: -10px;
	color: var(--black-color);
}

.primary-input-wrapper button {
	width: 75px;
	height: 100%;
	border-radius: 10px;
	background-color: var(--black-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	outline: none;
	cursor: pointer;
}

.primary-input-wrapper button img {
	width: 20px;
	height: 20px;
}

.primary-input-wrapper .input-check-icon {
	width: 50px;
	height: 45px;
	border-radius: 100px;
	background-color: var(--white-color);
	display: none;
	align-items: center;
	justify-content: center;
}

.primary-input-wrapper .input-check-icon img {
	width: 18px;
	height: 18px;
}

/* HEADER */

header #menu-button {
	position: fixed;
	top: var(--tiny-padding);
	right: var(--tiny-padding);
	display: flex;
	align-items: center;
	justify-content: center;
	border-color: var(--white-color);
	background-color: rgba(0, 0, 0, 0.15);
	z-index: 9999;
	backdrop-filter: blur(var(--primary-layer-blur));
}

#menu-button #menu-button-icon {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	height: 20px;
}

#menu-button span {
	display: block;
	width: 10px;
	height: 4px;
	background-color: var(--white-color);
}

header #menu-button img {
	width: 18px;
	height: 18px;
}

header #exit-menu-button {
	position: fixed;
	top: var(--tiny-padding);
	right: var(--tiny-padding);
	z-index: 100;
}

header #exit-menu-button img {
	width: 18px;
	height: 18px;
}

header nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	width: 100%;
	height: 100%;
	background-color: var(--white-color);
	transform: translateX(100%);
	transition: transform var(--primary-transition-time);
	display: flex;
	align-items: center;
}

header #menu-content {
	width: 100%;
}

header #header-info {
	margin-top: var(--small-padding);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
}

header #header-info img {
	height: 50px;
	margin-bottom: 8px;
}

#header-info p {
	font-weight: 400;
}

header #header-pages {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	height: 200px;
}

#header-pages p {
	font-weight: 400;
}

header #header-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	flex-direction: column;
}

header #header-socials {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row-reverse;
	width: 140px;
	height: 60px;
	margin-top: var(--small-padding);
}

@media only screen and (max-height: 568px) {
	header nav {
		padding: 40px var(--tiny-padding);
		padding-left: 85px;
	}

	header #header-info {
		margin-top: 0px;
		align-items: flex-start;
	}

	header #header-info img {
		height: 40px;
		margin-bottom: 5px;
	}

	#header-info p {
		font-size: 12px;
	}

	header #header-pages {
		align-items: flex-start;
		height: 150px;
	}

	#header-pages p {
		font-size: 12px;
	}

	header #header-bottom {
		align-items: flex-end;
		flex-direction: row-reverse;
		margin-top: -45px;
	}

	header #header-socials {
		flex-direction: column-reverse;
		margin-top: 0;
		height: 140px;
		width: 60px;
	}
}

/* FOOTER */
#footerLogo{
	width: 150px;
    height: 150px;
}
footer {
	min-height: calc(100vh + var(--large-border-radius));
	background-color: var(--white-color);
	padding: var(--small-padding) 0px;
	padding-bottom: calc(var(--small-padding) * 2);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
	z-index: 5000;
	position: relative;
}

footer #footer-content {
	width: var(--large-content-width);
	margin-top: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

footer #footer-right {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
}

footer #footer-pages {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: column;
	height: 200px;
}

#footer-pages p {
	font-weight: 400;
}

footer #footer-socials {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row-reverse;
	width: 140px;
	height: 60px;
	margin-top: var(--small-padding);
}

footer #footer-info {
	margin-top: var(--small-padding);
}

footer #footer-info img {
	height: 50px;
}

#footer-info p {
	font-weight: 400;
}

footer #footer-socials-placeholder {
	height: 50px;
	margin-top: var(--small-padding);
}

footer #footer-button {
	margin-top: calc(var(--small-padding) + 10px);
	display: flex;
	align-items: center;
	flex-direction: column;
}

#footer-button p {
	text-transform: uppercase;
	margin-top: 20px;
	font-size: 14px;
	font-weight: 500;
}

#footer-button img {
	transform: rotate(-90deg);
}

@media only screen and (max-width: 1279px) {
	footer #footer-content {
		flex-direction: column;
		align-items: center;
	}

	footer #footer-left {
		align-items: center;
		margin-top: var(--small-padding);
	}

	footer #footer-right {
		align-items: center;
		margin-top: 30vh;
	}

	footer #footer-pages {
		align-items: center;
	}

	footer #footer-socials {
		align-items: center;
		justify-content: center;
		flex-direction: row-reverse;
		width: 100%;
		height: 60px;
	}

	#footer-socials #footer-tiktok-button {
		margin-left: 15px;
	}

	footer #footer-info {
		text-align: center;
	}
}

