/* Reset & Base */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-size: 1.2em;
	font-family: 'Segoe UI', sans-serif;
	line-height: 1.6;
	background-color: #1e1e1e; /* Soft charcoal */
	color: #ddd;
	padding: 0;
	margin: 0;
}

/* Header */
header {
	background: url('images/header.jpg') center center / cover no-repeat;
	height: 450px;
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 20px;
	border-bottom: 3px solid #333;
}

header h1 {
	color: #f0f0f0;
	font-size: 2rem;
	background: rgba(30, 30, 30, 0.8);
	padding: 10px 20px;
	border-radius: 8px;
}

/* Content */
main {
	padding: 20px;
	max-width: 900px;
	margin: auto;
	background-color: #2b2b2b; /* Medium dark */
	border-radius: 12px;
	box-shadow: 0 0 10px #111;
	padding-bottom: 200px;
}

h2 {
	margin: 30px 0 10px;
	color: #ff556c;
}

ul {
	margin: 10px 0 20px 20px;
}

li::marker {
	color: #ff556c;
}

p {
	margin-bottom: 10px;
}

.intro {
	padding: 20px;
}

a {
	color: #ff556c;
}



/* Gallery */
.gallery {
	margin: 40px 0;
}

.image-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 10px;
}

.image-grid img {
	width: 100%;
	border-radius: 6px;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.image-grid img:hover {
	transform: scale(1.05);
	box-shadow: 0 0 8px #ff5f57;
}

/* Overlay */
#overlay {
	display: none;
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(20,20,20,0.95);
	justify-content: center;
	align-items: center;
}

#overlay img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 12px;
	box-shadow: 0 0 25px rgba(255, 95, 87, 0.6);
}

/* Contact Form */
.contact form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 20px;
}

.contact input, 
.contact textarea {
	padding: 10px;
	background: #3a3a3a;
	border: 1px solid #555;
	border-radius: 6px;
	font-size: 1rem;
	color: #eee;
}

.contact input::placeholder,
.contact textarea::placeholder {
	color: #999;
}

.contact button {
	padding: 12px;
	background: #ff556c;
	color: #fff;
	border: none;
	font-size: 1rem;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.contact button:hover {
	background: #d9433a;
}

.centered {
	text-align: center;
}
