/* Tonnaerbouw Website - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', Arial, sans-serif;
	font-size: 16px;
	font-weight: 300;
	color: #000503;
	background-color: #eee;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.container {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Styles */
.header {
	background-color: #FFFFFF;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 0 20px;
	text-align: center;
}

.logo {
	color: orange;
	font-size: 24px;
	font-weight: 600;
	text-decoration: none;
}

/* Navigation Styles */
.nav {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav li {
	margin-left: 15px;
}

.nav a {
	color: #070707;
	text-decoration: none;
	font-size: 14px;
	padding: 12px 15px;
	display: block;
	letter-spacing: 0.03em;
	transition: all 0.3s ease;
	position: relative;
}

.nav a::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: currentColor;
	transform: scaleX(0);
	transition: transform 0.3s ease;
	transform-origin: left;
}

.nav a:hover::after,
.nav a.active::after {
	transform: scaleX(1);
}

.nav a:hover,
.nav a.active {
	color: orange;
}

/* Hero Section */
.hero {
	background: linear-gradient(rgba(0, 0, 0, 0.2)), rgba(255, 255, 255, 0.438), url('https://via.placeholder.com/1920x800/464646/ffffff?text=Tonnaer+Bouw+BV') no-repeat center center;
	background-size: cover;
	color: white;
	text-align: center;
	padding: 5px 40px 5px;
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-content h1 {
	font-size: 48px;
	margin-bottom: 20px;
	font-weight: 300;
}

/* Main Content */
.main-content {
	background: white;
	min-height: 50vh;
}

.content-section {
	padding: 40px 0;
}

.content-section h1,
.content-section h2 {
	color: white;
	font-size: 36px;
	text-align: center;
	margin-bottom: 30px;
	line-height: 1;
}

.content-section.dark {
	background-color: #464646;
	color: white;
	text-align: center;
	padding: 40px;
}

/* Two Column Layout */
.two-column {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.column {
	flex: 1;
}

.column h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
}

.column p {
	margin-bottom: 15px;
	line-height: 1.6;
}

/* Contact Form */
.contact-form {
	background: white;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.form-group {
	flex: 1;
}

.form-group.full-width {
	flex: none;
	width: 100%;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-family: inherit;
	font-size: 14px;
}

.form-group textarea {
	height: 120px;
	resize: vertical;
}

.submit-btn {
	background-color: #4e4e4e;
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 400;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.submit-btn:hover {
	background-color: #3d3d3d;
}

/* Map Container */
.map-container {
	height: 421px;
	background: #f5f5f5;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-size: 18px;
}

/* Social Icons */
.social-icons {
	display: flex;
	gap: 16px;
	justify-content: center;
	margin: 20px 0;
}

.social-icon {
	width: 36px;
	height: 36px;
	background-color: #666;
	color: white;
	text-decoration: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: background-color 0.3s ease;
}

.social-icon:hover {
	background-color: #333;
}

/* Footer */
.footer {
	background-color: #333;
	color: #f7f7f7;
	padding: 70px 80px;
	text-align: center;
}

.footer-content {
	display: flex;
	gap: 40px;
	justify-content: space-between;
	align-items: flex-start;
}

.footer-column {
	flex: 1;
	text-align: left;
}

.footer-nav {
	list-style: none;
}

.footer-nav li {
	margin-bottom: 8px;
}

.footer-nav a {
	color: #000;
	text-decoration: none;
	font-size: 14px;
	padding: 2px 0;
	display: block;
}

.footer-nav a:hover {
	color: #333;
}

.footer h5 {
	color: #333;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 200%;
	margin-bottom: 8px;
}

.footer .social-icon {
	background-color: #3d3d3d;
	border: 1px solid #3d3d3d;
	width: 30px;
	height: 30px;
	font-size: 20px;
	line-height: 30px;
}

/* Image Placeholder */
.image-placeholder {
	background: #f0f0f0;
	border: 2px dashed #ccc;
	color: #666;
	text-align: center;
	padding: 40px;
	border-radius: 8px;
	margin: 20px 0;
}

/* Gallery Styles */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	padding: 40px 0;
}

.gallery-item {
	background: #f5f5f5;
	height: 250px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-size: 16px;
	border: 2px dashed #ddd;
}

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	padding: 40px 0;
}

.service-item {
	background: white;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.service-item h3 {
	margin-bottom: 15px;
	color: #333;
}

.service-item p {
	color: #666;
	line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
	.header-content {
		flex-direction: column;
		gap: 20px;
	}

	.nav {
		flex-wrap: wrap;
		justify-content: center;
	}

	.nav li {
		margin: 5px;
	}

	.two-column {
		flex-direction: column;
		gap: 20px;
	}

	.form-row {
		flex-direction: column;
		gap: 20px;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
		gap: 30px;
	}

	.hero {
		padding: 40px 20px 80px;
	}

	.hero-content h1 {
		font-size: 32px;
	}

	.footer {
		padding: 40px 20px;
	}

	.content-section.dark {
		padding: 20px;
	}
}

/* Success/Error Messages */
.message {
	padding: 15px;
	margin: 20px 0;
	border-radius: 4px;
	display: none;
}

.message.success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.message.error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.message.show {
	display: block;
}