/* CSS settings for the whole page */
* {
    font-family: Verdana, Geneva, Tahoma, sans-serif, serif;
		box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

	/* No overflow between sections */
	section {
		overflow: hidden;
	}
	
/* Background Colour for Header, Hero, and Footer */
.header,
.modal-hero,
.footer {
	background-color: #1F2937;
}

/* Shared content layout */
.container,
.call-box,
.hero-left,
.hero-right {
  max-width: 1200px;
  margin: 0 auto;
}

/* Spacing between flex items */
.modal-hero,
.call-box,
.container {
  gap: 32px;
  flex-wrap: wrap;
}

/* Header */
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 100px;
	flex-wrap: wrap;
}																

.logo {
	font-size: 24px;
	color: #F9FAF8;
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.nav_links a {
  color: #c3c5c6;
  text-decoration: none;
	flex-wrap: wrap;
  font-size: 20px;
  padding: 0 8px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease; /* Hover effect */
}

.nav_links a:hover { 
  transform: translateY(-3px); /* Scales the menu item when hovered */
  color: white; /* Changes the text colour on hover */
}

/* First Section - Hero */
.modal-hero {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 80px 100px;
}

.hero-left {
	flex: 1 1 500px;
}

.hero-right { 
	flex: 1 1 500px; display: flex; justify-content: center; 
} 

.imgSunset { 
	width: 100%; 
}

.hero-right, 
.imgSunset { 
	display: flex; 
	align-items: center; 
	justify-content: center; 
	padding: 20px; 
	border-radius: 40px; 
	flex-wrap: wrap; 
}

.hero-main {
	font-size: 48px;
	font-weight: 900;
	color: #F9FAF8;
	margin-bottom: 15px;
}

.hero-text {
	font-size: 16px;
	text-decoration: none;
	color: #E5E7EB;
	margin-bottom: 20px;
}

.hero-text a {
  color: inherit;
}    

.contact-button {
	display: inline-block;
	background-color: #3882F6;
	color: white;
	text-decoration: none;
	
	padding: 10px 24px;
	border-radius: 8px;
	font-size: 16px;
	cursor: pointer;
	font-weight: bold;
	text-align: center;
	transition: transform 0.2s ease, background-color 0.3s ease; /* Hover effect */
}

.contact-button:hover {
	transform: scale(1.2); /* Scales the Contact button when hovered */
	background-color: #2563EB; /* Changes the text colour on hover */
}

/* Second Section - Sub Menus */
.menu {
  text-align: center;
	height: auto;
	padding: 40px 100px;
	background-color: rgb(0, 170, 255);
	overflow: hidden;
}

.info-title {
	display: flex;
	text-align: center;
	justify-content: center;
  align-items: center;
	font-size: 36px;
	font-weight: 900;
	padding: 40px 0;
	color: #1F2937;
}

.container {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 24px;
	margin: 0 auto;
	max-width: 90%;
	padding-bottom: 40px; 
}

.sub-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	max-width: 200px;
	flex: 1 1 200px;
	flex-shrink: 0;
	text-align: center;
  font-size: 18px;
	color: #1F2937;
}

.sub-menu-link {
	display: flex;
  flex-direction: column;
  align-items: center;
	text-decoration: none;
	color: inherit;
	display: block;
  }

.imgSub-Menu {
  width: 200px;
  height: 200px;
	background-color: rgb(0, 170, 255);
	display: block;
	object-fit: cover;
	overflow: auto;
	border: 4px solid #094098;
	margin: 0 auto 16px;
	border-radius: 15px;
	transition: transform 0.3s ease; /* Hover effect */
}

.imgSub-Menu:hover {
	transform: scale(1.2); /* Scales the Menu icon when hovered */
}

.text {
	margin-top: 10px;
}
/* Third Section - Quote */
.quote { 
	display: flex; 
	align-items: flex-start; 
	justify-content: left; 
	flex-direction: column; 
	padding : 100px 120px; 
	background-color: #E5E7EB; 
	font-size: 24px; 
	color: #1F2937; 
	margin-bottom: 20px; 
}

.quote-body { 
	font-style: italic; 
	font-weight: 300; 
	margin: 10px 0; 
}

.quote-name { 
	align-self: flex-end; 
}

/* Fourth Section - Call to Action */
.call-to-action {
	background: white;
	margin: 0;
	display: flex;
  align-items: center;
  justify-content: center;
}
.call-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 48px;
  margin: 60px 80px;
  background-color: #3882F6;
  border-radius: 8px;
  box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.2);
  color: white;
  gap: 24px;
	transition: transform 0.2s ease, background-color 0.3s ease; /* Hover effect */
}

.call-box:hover {
	transform: scale(1.04); /* Scales the Call to Action Box when hovered */
	background-color: #2563EB; /* Changes the Box colour on hover */
}

.call-content {
  flex: 1;
  text-align: left;
  padding-right: 24px;
}

.call-title {
	font-size: 24px;
	font-weight: bold;
}

.call-buttons {
  display: flex;
  gap: 16px;
	flex-wrap: wrap; 
	justify-content: flex-end;
}

.call-button {
  padding: 8px 16px;
  border: 2px solid white;
  border-radius: 8px;
  color: white;
  background: transparent;
  font-weight: bold;
  cursor: pointer;
	flex: 1 1 auto;
  min-width: 140px;
  text-align: center;

  transition: transform 0.2s ease, background-color 0.3s ease;
  text-decoration: none;
}

.call-button:hover {
  transform: scale(1.2);
  background-color: #2563EB;
}

/* Fifth Section - Footer */
.footer {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px 28px;
	color: #F9FAF8;
	text-align: center;
	flex-direction: column;
	font-size: 16px;
}
