@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
/* CSS Document */

/* ---------------------------------------------
   DESIGN TOKENS
   One heading font, one body font, one palette,
   reused everywhere so the page reads as one piece.
--------------------------------------------- */
:root {
	--font-heading: 'Quicksand', sans-serif;
	--font-body: 'Lato', sans-serif;

	--color-primary: midnightblue;   /* headings, links, nav */
	--color-text: #333333;           /* body copy */
	--color-muted: #5a6472;          /* secondary text */
	--color-accent: goldenrod;       /* hover/CTA accent */

	--panel-gradient: linear-gradient(135deg, #d8e6f5, #edf5fc);
	--panel-radius: 18px;
	--panel-shadow: 0 8px 20px rgba(0,0,0,.12);

	--card-radius: 15px;
	--card-shadow: 0 5px 15px rgba(0,0,0,.08);
}

html, body {
	max-width: 100%;
	overflow-x: hidden;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin: 0;
	font-family: var(--font-body);
	color: var(--color-text);
}

img {
	border-radius: 10px;
	max-width: 100%;
	height: auto;
}

/* ---------------------------------------------
   HEADER
--------------------------------------------- */
.wrapper {
	position: relative;
}

.wrapper-text {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
}

#header-image {
	margin-left: 75px;
	margin-right: 75px;
}

#header-image img {
	width: 100%;
	max-height: 900px;
	object-fit: cover;
}

h1 {
	font-family: var(--font-heading);
	color: var(--color-primary);
	font-size: 55px;
	font-weight: 700;
	margin-left: 160px;
}

header h4 {
	display: flex;
	font-family: var(--font-body);
	color: var(--color-primary);
	font-size: 28px;
	text-transform: uppercase;
	margin-left: 180px;
	margin-top: -10px;
}

#header-nav ul {
	font-family: var(--font-body);
	margin-left: 100px;
	padding: 0;
}

#header-nav li {
	margin-bottom: 0;
	list-style: none;
	display: inline-block;
	padding: 20px;
}

#header-nav li a {
	text-decoration: none;
	font-size: 22px;
	font-weight: 700;
	color: var(--color-primary);
	border: 2px solid transparent;
	margin-right: 25px;
}

#header-nav li a:hover {
	cursor: pointer;
	font-weight: 700;
	border: 2px solid var(--color-accent);
	border-radius: 10px;
	padding: 5px;
	transition: 0.2s linear;
}

#header_location {
	display: inline-block;
	margin-left: 20px;
}

/* ---------------------------------------------
   WELCOME
--------------------------------------------- */
#welcome {
	max-width: 1100px;
	margin: 40px auto 60px;
	padding: 30px 40px;
	font-family: var(--font-body);
	background: var(--panel-gradient);
	border-radius: var(--panel-radius);
	box-shadow: var(--panel-shadow);
	box-sizing: border-box;
}

p {
	font-family: var(--font-body);
	color: var(--color-text);
	font-size: 20px;
	line-height: 1.5;
	margin-left: 10px;
	margin-right: 10px;
}

/* ---------------------------------------------
   CONTACT SECTION
--------------------------------------------- */
#contact h3 {
	font-family: var(--font-heading);
	color: var(--color-primary);
	font-size: 40px;
	margin-left: 160px;
}

.map_icon, .whatsapp-icon, .email-icon {
	height: 46px;
	width: auto;
	display: inline-block;
}

#contact2 {
	display: flex;
	gap: 25px;

	max-width: 1100px;
	margin: 40px auto;
	padding: 40px;

	background: var(--panel-gradient);

	border-radius: var(--panel-radius);
	box-shadow: var(--panel-shadow);
	box-sizing: border-box;
}

.contact-column {
	display: flex;
	flex-direction: column;
	gap: 80px;
	flex: 1;
}

.contact-card {
	background: #ffffff;
	border-radius: var(--card-radius);
	padding: 20px;
	text-align: center;
	box-shadow: var(--card-shadow);
	transition: transform .3s ease, box-shadow .3s ease;
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 22px rgba(0,0,0,.15);
}

.location-card {
	flex: 2;
}

.contact-card img {
	width: 46px;
	height: 46px;
	object-fit: contain;
	margin: 15px 0;
	border-radius: 0;
}

/* Headings and sub-text inside cards use the same
   font/color system as the rest of the page. */
.contact-card h4,
#contact h4 {
	font-family: var(--font-heading);
	color: var(--color-primary);
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 10px;
}

.contact-card h5,
#contact h5 {
	font-family: var(--font-body);
	color: var(--color-muted);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.5;
	margin: 0;
	overflow-wrap: anywhere;
}

.contact-card a {
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 700;
}

.contact-card a:hover {
	text-decoration: underline;
	color: var(--color-accent);
}

.location-card iframe {
	width: 80%;
	height: 200px;
	border: 0;
	border-radius: 12px;
	margin-top: 20px;
}

/* ---------------------------------------------
   MESSAGE FORM
--------------------------------------------- */
#message-form {
	max-width: 1100px;
	margin: 30px auto 40px;
	padding: 30px;

	background: var(--panel-gradient);
	border-radius: var(--panel-radius);
	box-shadow: var(--panel-shadow);
	box-sizing: border-box;
}

#message-form h4 {
	font-family: var(--font-heading);
	color: var(--color-primary);
	font-size: 28px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 20px;
}

#message-form label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--color-primary);
}

.footer-row {
	font-family: var(--font-body);
	margin: 0 0 15px 0;
	color: var(--color-text);
}

/* Shared input styling: one rule set for every field,
   instead of two competing rules fighting for control. */
.footer-row input,
.footer-row textarea,
#message-form input {
	width: 100%;
	font-family: var(--font-body);
	font-size: 16px;
	padding: 12px 15px;
	background: #ffffff;
	border: 1px solid #cfd8e3;
	border-radius: 10px;
	color: var(--color-text);
	box-sizing: border-box;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-row input:focus,
.footer-row textarea:focus,
#message-form input:focus {
	outline: none;
	border-color: #5a8cc8;
	box-shadow: 0 0 8px rgba(90, 140, 200, 0.25);
}

#message {
	width: 100%;
	min-height: 200px;
	resize: vertical;
}

#footer-submit {
	text-align: center;
	margin-top: 10px;
}

#submit-button {
	padding: 14px 34px;
	background: #fff8dc;
	color: var(--color-primary);
	border: 2px solid var(--color-accent);
	border-radius: 10px;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	width: auto;
}

#submit-button:hover {
	background: var(--color-accent);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* ---------------------------------------------
   FOOTER / COPYRIGHT
--------------------------------------------- */
#copyright {
	text-align: center;
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--color-muted);
	margin: 0;
	padding: 20px 0;
}

/* ---------------------------------------------
   RESPONSIVE
--------------------------------------------- */
@media (max-width: 900px) {
	h1 {
		font-size: 36px;
		margin-left: 20px;
	}

	header h4 {
		margin-left: 40px;
		font-size: 20px;
	}

	#header-nav ul {
		margin-left: 20px;
	}

	#header-nav li {
		padding: 10px;
	}

	#header-nav li a {
		font-size: 18px;
		margin-right: 10px;
	}

	#header-image {
		margin-left: 20px;
		margin-right: 20px;
	}

	#contact h3 {
		margin-left: 20px;
		text-align: center;
	}
}

@media (max-width: 768px) {
	#contact2 {
		flex-direction: column;
		padding: 20px;
	}

	.location-card {
		flex: 1;
	}

	#message-form {
		margin: 20px auto;
		padding: 20px;
	}

	#submit-button {
		width: 100%;
	}

	#welcome {
		margin: 20px auto;
		padding: 20px;
	}

	p {
		font-size: 17px;
	}
}