/* ============================================================
   Cal Ós — style.css
   ============================================================ */

/* ------------------------------------------------------------
   Variables
   ------------------------------------------------------------ */
:root {
	--bg:     #f4efe6;
	--dark:   #283126;
	--accent: #8c5b3e;
	--light:  #fffaf4;
	--text:   #2b2b2b;
}


/* ------------------------------------------------------------
   Reset & base
   ------------------------------------------------------------ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	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;
}


/* ------------------------------------------------------------
   Layout
   ------------------------------------------------------------ */
.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;
}


/* ------------------------------------------------------------
   Header & nav
   ------------------------------------------------------------ */
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
   ------------------------------------------------------------ */
.hero {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	padding: 40px;
	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/calos.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%);
	max-width: 800px;
}

.hero-logo {
	width: 180px;
	margin: 0 auto 24px;
	opacity: 0.95;
}

.hero h1 {
	font-size: clamp(3rem, 8vw, 6rem);
	margin-bottom: 10px;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.hero-subtitle {
	font-size: 1.3rem;
	letter-spacing: 2px;
	margin-bottom: 20px;
	opacity: 0.9;
}

.hero-text {
	font-size: 1.2rem;
	line-height: 1.7;
	margin-bottom: 40px;
	opacity: 0.9;
}

.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;
}

@media (max-width: 768px) {
	.hero        { min-height: 88vh; padding: 40px 20px; }
	.hero-logo   { width: 120px; }
	.hero h1     { font-size: 4rem; }
	.hero p      { font-size: 1rem; }
}


/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.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);
}

.hero-button {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 40px;
	background: rgba(255,255,255,0.15);
	border: 1px solid rgba(255,255,255,0.25);
	backdrop-filter: blur(8px);
	color: white;
	transition: 0.3s ease;
}

.hero-button:hover {
	background: rgba(255,255,255,0.25);
}


/* ------------------------------------------------------------
   Sections — algemeen
   ------------------------------------------------------------ */
.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;
}


/* ------------------------------------------------------------
   Openingsuren
   ------------------------------------------------------------ */
.opening-hours {
	display: grid;
	grid-template-columns: auto auto;
	gap: 6px 24px;
	max-width: 200px;
	margin-top: 10px;
	font-size: 0.95rem;
}

.opening-hours div:nth-child(odd)  { font-weight: 500; }
.opening-hours div:nth-child(even) { text-align: right; }


/* ------------------------------------------------------------
   Omgeving (place cards)
   ------------------------------------------------------------ */
.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
   ------------------------------------------------------------ */
.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;
}


/* ------------------------------------------------------------
   Kaart
   ------------------------------------------------------------ */
.map-frame {
	width: 100%;
	border: 0;
	border-radius: 20px;
}


/* ------------------------------------------------------------
   Aanbiedingen & events
   ------------------------------------------------------------ */
.offers-events-section {
	padding: 80px 0;
	background: var(--light);
}

.offers-events-section .container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 40px;
}

.oe-block {
	width: 100%;
	text-align: left;
}

.oe-block .section-title {
	margin-bottom: 20px;
}

.oe-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(0,0,0,0.08);
}

.oe-dates {
	font-size: 0.9rem;
	opacity: 0.6;
}

.oe-empty {
	width: 100%;
	opacity: 0.6;
	font-size: 1.05rem;
	text-align: center;
}

/* Offer cards (voor toekomstig gebruik) */
.offers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
}

.offer-card {
	background: white;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	transition: 0.3s ease;
}

.offer-card:hover    { transform: translateY(-4px); }
.offer-image         { width: 100%; height: 260px; object-fit: cover; }
.offer-content       { padding: 28px; }
.offer-card h3       { font-size: 1.6rem; margin-bottom: 16px; color: var(--text); }
.offer-card p        { line-height: 1.8; color: #555; }
.offer-dates         { margin-top: 20px; font-size: 0.9rem; opacity: 0.7; }


/* ------------------------------------------------------------
   Contactformulier
   ------------------------------------------------------------ */
#contact .btn {
	background: var(--dark);
	color: var(--light);
	padding: 12px 18px;
	border-radius: 10px;
	border: none;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.2s ease;
}

#contact .btn:hover {
	background: #555;
	transform: translateY(-1px);
}

#contact .contact-form {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

#contact input,
#contact textarea {
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(0,0,0,0.2);
	padding: 10px 2px;
	font-family: inherit;
	font-size: 16px;
	outline: none;
	transition: border-color 0.2s ease;
}

#contact input:focus,
#contact textarea:focus {
	border-bottom: 1px solid #000;
}

#contact textarea {
	resize: vertical;
	min-height: 120px;
}

#contact button {
	align-self: flex-start;
	margin-top: 10px;
}

/* Honeypot */
.hp {
	position: absolute;
	left: -9999px;
}


/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
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;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.1);
	font-size: 0.9rem;
	opacity: 0.7;
}

.footer-lang,
.footer-links {
	display: flex;
	gap: 8px;
	align-items: center;
}

.footer-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 0.95rem;
	opacity: 0.8;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 6px;
}

.contact-item i,
.icon {
	color: #fff;
	flex-shrink: 0;
	display: inline-block;
}


/* ------------------------------------------------------------
   Toast
   ------------------------------------------------------------ */
.toast {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: #111;
	color: #fff;
	padding: 12px 18px;
	border-radius: 10px;
	font-size: 14px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.3);
	cursor: pointer;
	opacity: 0;
	animation: fadeIn 0.3s forwards;
	transition: all 0.3s ease;
	z-index: 9999;
}

@keyframes fadeIn {
	to { opacity: 1; transform: translateX(-50%) translateY(0); }
}


/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 768px) {
	nav ul           { display: none; }
	.hero            { min-height: 88vh; padding: 40px 0; }
	.hero-logo       { width: 120px; }
	.hero h1         { font-size: 4rem; }
	.hero p          { font-size: 1rem; }
	.section-title   { font-size: 2.4rem; }
	.footer-bottom   { flex-direction: column; gap: 12px; text-align: center; }
}
