:root {
	--primary: #0f172a;
	--gold: #cca43b;
	--light: #f8f9fa;
	--text: #333333;
	--font-heading: 'Playfair Display', serif;
	--font-body: 'Lato', sans-serif;
}

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

html {
	scroll-behavior: smooth;
	height: 100%;
}

body {
	min-height: 100vh;
	font-family: var(--font-body);
	color: var(--text);
	line-height: 1.6;
	display: flex;
	flex-direction: column;
}

.text-block p,
.reading-width p,
.about-list li {
	font-size: 1.15rem;
	line-height: 1.8;
	color: #4a5568;
	margin-bottom: 15px;
}

.reading-width {
	max-width: 800px;
	margin: 0 auto;
}

h1,
h2,
h3 {
	font-family: var(--font-heading);
	margin-bottom: 1rem;
}

a {
	text-decoration: none;
}
ul {
	list-style: none;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section {
	padding: 100px 0;
}
.bg-light {
	background-color: var(--light);
}

.navbar {
	background-color: var(--primary);
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 1000;
}
.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	color: var(--gold);
	font-size: 1.5rem;
	font-weight: 700;
	font-family: var(--font-heading);
	letter-spacing: 2px;
}

.nav-links {
	display: flex;
	gap: 20px;
	align-items: center;
}
.nav-links a {
	color: #fff;
	font-size: 0.9rem;
	transition: color 0.3s;
}
.nav-links a:hover {
	color: var(--gold);
}
.btn-nav {
	border: 1px solid var(--gold);
	padding: 8px 16px;
	border-radius: 4px;
}

.privacy-text {
	font-size: 0.5rem;
	color: rgba (255, 255, 255, 0.6);
	margin-top: 15px;
	font-weight: 300;
}

.hero {
	min-height: 100vh;
	width: 100%;
	background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(15, 23, 42, 0.7);
}
.hero-content {
	position: relative;
	z-index: 2;
	color: #fff;
	padding: 20px;
}

.badge {
	display: inline-block;
	background: rgba(204, 164, 59, 0.2);
	color: var(--gold);
	border: 1px solid var(--gold);
	padding: 5px 15px;
	border-radius: 50px;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
	font-weight: bold;
}
.hero-content h1 {
	font-size: 3.5rem;
}
.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

.btn-main {
	background: var(--gold);
	color: #fff;
	padding: 12px 30px;
	border-radius: 4px;
	font-weight: bold;
	transition: background 0.3s;
}
.btn-main:hover {
	background: #b89334;
}

.split-layout {
	display: flex;
	align-items: center;
	gap: 40px;
}

.text-block,
.image-block {
	flex: 1;
}

.image-block {
	margin-top: 0;
}

.image-block img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	display: block;
}
.section-title,
.section-title-white {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	text-align: center;
	font-family: var(--font-heading);
	display: block;
}

.section-title-white {
	color: #fff;
}
.center-text-block {
	text-align: center;
}

a {
	text-decoration: none;
}
ul {
	list-style: none;
}

.grid-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}
.card {
	background: #fff;
	padding: 30px;
	text-align: center;
	border-radius: 8px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0, 0.05);
	transition: transform 0.3s;
}
.card:hover {
	transform: translateY(-5px);
}
.card h3 {
	color: var(--primary);
}

.dark-section {
	background-color: var(--primary);
	color: #fff;
}

.form-wrapper {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.input-group {
	margin-bottom: 20px;
	text-align: left;
}

label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.9rem;
	color: var(--gold);
}

input,
select {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
	font-family: var(--font-body);
}

.btn-submit {
	width: 100%;
	padding: 12px;
	background: var(--gold);
	color: white;
	border: none;
	font-size: 1rem;
	cursor: pointer;
	font-weight: bold;
	border-radius: 4px;
}
.btn-submit:hover {
	background: #b89334;
}
.hidden {
	display: none;
}

footer {
	background: #0a0f1c;
	color: #777;
	text-align: center;
	padding: 20px 0;
	font-size: 0.8rem;
	margin-top: auto;
}

footer p {
	margin: 0;
}

@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 2.5rem;
	}
	.split-layout {
		flex-direction: column;
	}
	.image-block {
		margin-top: 0;
	}
	.hero-content h1 {
		font-size: 2.5rem;
	}
	.navbar .container {
		flex-direction: column;
		gap: 15px;
	}
	.nav-links {
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
		gap: 15px;
	}
	.btn-nav {
		padding: 8px 12px;
		font-size: 0.8rem;
	}
}

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}
.modal-overlay.active {
	opacity: 1;
	pointer-events: all;
}
.modal-content {
	background: white;
	padding: 40px;
	border-radius: 8px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	position: relative;
	transform: translateY(20px);
	transition: transform 0.3s ease;
	border-top: 5px solid var(--gold);
	color: var(--text);
}
.modal-overlay.active .modal-content {
	transform: translateY(0);
}
.modal-icon {
	font-size: 3rem;
	margin-bottom: 15px;
}
.close-btn {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 1.5rem;
	cursor: pointer;
	color: #888;
}
.close-modal-btn {
	margin-top: 20px;
	width: 100%;
	border: none;
	cursor: pointer;
}
