/*
	Sea of Glass - A place of peace and reflection
	Inspired by Revelation 4:6
*/

/* Reset */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, em, strong, ul, li, footer, section {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

html {
	box-sizing: border-box;
}

*, *:before, *:after {
	box-sizing: inherit;
}

/* Basic styles */
body {
	line-height: 1.5;
	font-family: 'Arial', sans-serif;
	color: #fff;
	background: #000;
	overflow-x: hidden;
}

/* Typography */
h1 {
	font-size: 4rem;
	font-weight: bold;
	line-height: 1.2;
}

h2 {
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.2;
}

p {
	font-size: 1.2rem;
	line-height: 1.8;
	margin-bottom: 1rem;
}

em {
	font-style: italic;
}

/* Layout */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem;
}

.hero-content {
	max-width: 800px;
}

.hero h1 {
	margin-bottom: 1rem;
}

.hero p {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.section {
	padding: 6rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.section h2 {
	margin-bottom: 3rem;
}

.section p {
	max-width: 800px;
	margin: 0 auto 2rem;
}

.container {
	padding: 3rem 2rem;
}

.footer {
	padding: 3rem 2rem;
	text-align: center;
	opacity: 0.8;
}

.copyright {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 1rem;
	opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
	}
	
	.hero p {
		font-size: 1.2rem;
	}
	
	.section h2 {
		font-size: 2rem;
	}
	
	.section {
		padding: 3rem 1rem;
	}
	
	.hero {
		padding: 1rem;
	}
}
