:root {
	--bg: #f4efe6;
	--dark: #283126;
	--accent: #8c5b3e;
	--light: #fffaf4;
	--text: #2b2b2b;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
    margin: 0;
	font-family: 'Inter', sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.7;
}

h1,h2,h3 {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 700;
	line-height: 1.1;
}

img {
	max-width: 100%;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

.container {
	width: min(1180px, 92%);
	margin: auto;
}

header {
	position: absolute;
	width: 100%;
	z-index: 10;
	padding: 24px 0;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: white;
}

.logo {
	font-size: 2rem;
	letter-spacing: 1px;
}

nav ul {
	display: flex;
	gap: 24px;
	list-style: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url('../images/hero.webp') center center / cover no-repeat;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20,20,20,0.15);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(900px, 92%);
}

.hero-logo {
    width: 180px;
    margin: 0 auto 24px;
    opacity: 0.95;
}

.hero h1 {
    font-size: clamp(4rem, 10vw, 7rem);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 720px;
    margin: auto;
}

.hero-buttons {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 40px;
    color: white;
    transition: 0.3s ease;
    backdrop-filter: blur(4px);
}

.btn:hover {
    background: rgba(255,255,255,0.12);
}

@media (max-width: 768px) {

    .hero {
        min-height: 88vh;
        padding: 40px 0;
    }

    .hero-logo {
        width: 120px;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

section {
	padding: 90px 0;
}

.intro-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 60px;
	align-items: center;
}

.section-title {
	font-size: 3rem;
	margin-bottom: 24px;
	color: var(--dark);
}

.badge {
	display: inline-block;
	padding: 6px 14px;
	background: var(--accent);
	color: white;
	border-radius: 30px;
	font-size: 0.85rem;
	margin-bottom: 20px;
	letter-spacing: 1px;
}

.places {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
	margin-top: 40px;
}

.place-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.place-card img {
	height: 220px;
	object-fit: cover;
}

.place-content {
	padding: 24px;
}

.place-content h3 {
	margin-bottom: 12px;
	font-size: 2rem;
}

.quote {
	background: var(--dark);
	color: white;
	text-align: center;
	padding: 120px 20px;
}

.quote h2 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	max-width: 800px;
	margin: auto;
}

footer {
	background: #1d241c;
	color: white;
	padding: 60px 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
}

.footer-title {
	margin-bottom: 18px;
	font-size: 1.4rem;
}

.lang {
	margin-top: 40px;
	font-size: 0.95rem;
	opacity: 0.8;
}

@media (max-width: 768px) {

	nav ul {
		display: none;
	}

	.hero h1 {
		font-size: 4rem;
	}

	.section-title {
		font-size: 2.4rem;
	}
}
