@charset "utf-8";

* {
	margin: 0; padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
	color: #333;
	line-height: 1.5;
}
.container {
	max-width: 1200px; 
	margin: 0 auto;
	padding: 0 20px;
}



/*	------------------------------
	BUTTON: Elements
 *	--------------------------- */
.btn {
	display: inline-block;
	margin: 10px;
	padding: 12px 30px;

	color: white;
	font-weight: 600;
	text-decoration: none;

	transition: all 0.3s;

	border-radius: 5px;
	background-color: #4EB5FF;
}
.btn:hover {
	background-color: #0A2540;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-white {
	color: #0A2540;
	background-color: white;
}
.btn-white:hover {
	background-color: #f4f4f4;
}

/*	------------------------------
	HEADER: Element Styles
 *	--------------------------- */
#header {
	width: 100%;
	padding: 20px 0;
	position: fixed; z-index: 100;

	color: white;
	background-color: #0a2540;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#header .logo {
	font-size: 28px;
	text-decoration: none;
	color: white; font-weight: bold;
}
#header .logo span { color: #4EB5FF; }

#header nav ul {
	display: flex;
	list-style: none;
}
#header nav ul li { margin: 0 15px; }
#header nav ul li:first-child { margin-left: 0; }
#header nav ul li:last-child  { margin-right: 0; }
#header nav ul li a {
	color: white;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.3s;
}
#header nav ul li a:hover { color: #4EB5FF; }





/*	------------------------------
	HEADER: Element Styles
 *	--------------------------- */
#footer {
	color: #CCC;
	padding: 60px 0 20px;
	background-color: #333;
}

#footer .footer-content {
	margin-bottom: 40px;
	display: grid; gap: 30px;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

#footer .footer-column h3 {
	color: #FFF;
	font-size: 20px;
	margin-bottom: 20px;
}
#footer .footer-column ul {
	list-style: none;
}
#footer .footer-column ul li {
	margin-bottom: 10px;
}
#footer .footer-column ul li a {
	color: #CCC;
	text-decoration: none;
	transition: color 0.3s;
}
#footer .footer-column ul li a:hover {
	color: #FFF; 
	font-weight: bold;
	text-decoration: underline;
}
#footer .copyright {
	color: #CCC;
	font-size: 14px;
	padding-top: 20px;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#footer .copyright a {
	color: #FFF; 
	font-weight: 500;
	text-decoration: none;
}
#footer .copyright a:hover {
	color: #4EB5FF; 
	text-decoration: underline;
}




/*	------------------------------
	HERO: Element Styles
 *	--------------------------- */
#hero {
	display: flex;
	position: relative;
	height: 100vh;
	align-items: center;
	text-align: center;
	color: white;
	background: linear-gradient(rgba(10, 37, 64, 0.8), rgba(10, 37, 64, 0.6)), url("/assets/img/bkgd_hero-01.jpg") center/cover no-repeat;
}
#hero .content {
	max-width: 800px;
	margin: 0 auto;
	padding-top: 70px;
}
#hero .content h1 {
	font-size: 54px;
	line-height: 1.2;
	margin-bottom: 20px;
}
#hero .content p {
	font-size: 20px;
	margin-bottom: 30px;
}

@media (max-width: 768px) {
	.hero h1 { font-size: 40px; }
	nav { display: none; }
}



/*	------------------------------
	ABOUT: Element Styles
 *	--------------------------- */
#about {
	padding: 100px 0;
	background-color: #f9f9f9;
}
#about .section-title {
	text-align: center;
	margin-bottom: 60px;
}
#about .section-title h2 {
	color: #0A2540;
	font-size: 36px;
	margin-bottom: 15px;
}
#about .section-title p {
	color: #333; font-size: 20px;
	max-width: 850px; margin: 0 auto;
}

#about .division-grid {
	display: grid; gap: 30px;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
#about .division-card {
	overflow: hidden;
	transition: transform 0.3s;
	border-radius: 10px;
	background-color: white;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
#about .division-card:hover {
	transform: translateY(-10px);
}
#about .division-card .division-img {
	padding: 10px;
	align-content: center;
	height: 200px; width: 100%;
}
#about .division-card:hover .division-img {
	background-color: #191919;
}
#about .division-card .division-img img {
	width: 100%;
	height: auto;
	object-fit: contain;
	transition: transform 0.5s;
}
#about .division-card:hover .division-img img {
	transform: scale(.85);
}

#about .division-card .division-img .rest { display: block; }
#about .division-card .division-img .over { display: none; }

#about .division-card:hover .division-img .rest { display: none; }
#about .division-card:hover .division-img .over { display: block; }

#about .division-content {
	padding: 25px;
}
#about .division-content h3 {
	color: #0A2540;
	font-size: 22px;
	margin-bottom: 15px;
}
#about .division-content p {
	color: #666;
	margin-bottom: 20px;
}



/*	------------------------------
	REVIEWS: Element Styles
 *	--------------------------- */
#reviews {
	color: white;
	padding: 100px 0;
	background-color: #0A2540;
}
#reviews .section-title h2 {
	color: white;
}
#reviews .section-title p {
	color: #ccc;
}
#reviews .testimonial-grid {
	display: grid; gap: 30px;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
#reviews .testimonial-card {
	padding: 30px;
	border-radius: 10px;
	position: relative;
	background-color: rgba(255, 255, 255, 0.1);
}
#reviews .testimonial-card::before {
	position: absolute;
	top: 20px; left: 20px;
	content: '"';
	font-size: 80px;
	font-family: Georgia, serif;
	color: rgba(255, 255, 255, 0.1);
}
#reviews .testimonial-content {
	position: relative; z-index: 1;
}
#reviews .testimonial-text {
	margin-bottom: 20px;
	font-style: italic;
}
#reviews .testimonial-author {
	display: flex;
	align-items: center;
}
#reviews .author-img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
}
#reviews .author-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#reviews .author-info h4 {
	font-size: 18px;
	margin-bottom: 5px;
}
#reviews .author-info p {
	color: #4EB5FF; font-size: 14px;
}



/*	------------------------------
	CONTACT: Element Styles
 *	--------------------------- */
#contact {
	color: white;
	padding: 100px 0;
	text-align: center;
	background: linear-gradient(to right, #0A2540, #4EB5FF);
}
#contact h2 {
	font-size: 36px;
	margin-bottom: 20px;
}
#contact p {
	font-size: 18px;
	max-width: 600px;
	margin-bottom: 40px;
	margin-left: auto; margin-right: auto;
}

