/* ============================
	GOSALON LANDERS 2026
	BASE
============================ */



/* ============================
	ROOT
============================ */

:root {
	--color-beige: #E8DED3;
	--color-beige-soft: #F5EFE9;
	--color-black: #111111;
	--color-border: #E8E1D9;
	--color-muted: #6F6A64;
	--color-white: #FFFFFF;

	--font-family-heading: 'Plus Jakarta Sans', Arial, sans-serif;
	--font-family-text: 'Eina 01', Arial, sans-serif;

	--shadow-soft: 0 8px 24px rgba(17, 17, 17, 0.06);
	--shadow-hover: 0 12px 30px rgba(17, 17, 17, 0.10);

	--radius-sm: .75rem;
	--radius-md: 1.25rem;
	--radius-lg: 1.75rem;
	--radius-xl: 2.5rem;

	--transition: all .3s ease;
}



/* ============================
	HTML
============================ */

html {
	scroll-behavior: smooth;
}



/* ============================
	BODY
============================ */

body {
	background-color: var(--color-white);
	color: var(--color-black);
	font-family: var(--font-family-text);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.6;
	margin: 0;
	overflow-x: hidden;
	padding: 0;
}



/* ============================
	HEADINGS
============================ */

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--color-black);
	font-family: var(--font-family-heading);
	font-style: normal;
	letter-spacing: -.02rem;
	line-height: 1.2;
	margin: 0;
}

h1 {
	font-size: 3rem;
	font-weight: 800;
}

h2 {
	font-size: 2.25rem;
	font-weight: 800;
}

h3 {
	font-size: 1.35rem;
	font-weight: 700;
}



/* ============================
	TEXT
============================ */

p {
	color: var(--color-black);
	font-family: var(--font-family-text);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.7;
	margin: 0;
}

strong {
	font-weight: 600;
}



/* ============================
	LINKS
============================ */

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	text-decoration: none;
}



/* ============================
	MEDIA
============================ */

img {
	display: block;
	height: auto;
	max-width: 100%;
}

svg {
	display: inline-block;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}



/* ============================
	LISTS
============================ */

ol,
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

li {
	margin: 0;
	padding: 0;
}



/* ============================
	BUTTONS
============================ */

button {
	background: none;
	border: 0;
	box-shadow: none;
	outline: none;
	padding: 0;
}

.button {
	align-items: center;
	background-color: var(--color-black);
	border: 1px solid var(--color-black);
	border-radius: 999px;
	color: var(--color-white);
	cursor: pointer;
	display: inline-flex;
	font-family: var(--font-family-heading);
	font-size: 1.1rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: -.01rem;
	min-height: 50px;
	padding: .75rem 1.35rem;
	text-align: center;
	text-decoration: none;
	transition: var(--transition);
}

.button span {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	line-height: 1;
}

.button:hover {
	background-color: transparent;
	color: var(--color-black);
	text-decoration: none;
}

.button--ghost {
	background-color: transparent;
	border-color: var(--color-black);
	color: var(--color-black);
}

.button--ghost:hover {
	background-color: var(--color-black);
	color: var(--color-white);
}

.button--full {
	width: 100%;
}



/* ============================
	FORMS
============================ */

form {
	margin: 0;
}

label {
	color: var(--color-black);
	display: inline-block;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 .5rem 0;
}

input,
select,
textarea {
	appearance: none;
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: .85rem;
	box-shadow: none;
	color: var(--color-black);
	font-family: var(--font-family-text);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	outline: none;
	padding: .9rem 1rem;
	transition: var(--transition);
	width: 100%;
}

input:focus,
select:focus,
textarea:focus {
	border-color: #D9C8B6;
	box-shadow: 0 0 0 .2rem rgba(217, 200, 182, 0.18);
	outline: none;
}

textarea {
	min-height: 140px;
	resize: vertical;
}

::placeholder {
	color: var(--color-muted);
	opacity: 1;
}



/* ============================
	SECTIONS
============================ */

section {
	position: relative;
}



/* ============================
	HELPERS
============================ */

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





/* END CSS */