@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poiret+One&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

body {
	padding-top: 3rem;
	padding-bottom: 3rem;
	background-color: #466365;
	font-family: "Montserrat", sans-serif;
	overflow-x: hidden;
}

.white {
	color: #fff;
}

.white input {
	color: #000;
}

.white textarea {
	color: #000;
}



.white:hover {
	color: #fff;
}

.whitebg {
	background-color: #fff;
}

.mainColour {
	color: #466365;
}

.pt20 {
	padding-top: 20px;
}

.pb50 {
	padding-bottom: 50px;
}



.fw300 {
	font-weight: 300;
}

.paralaxBg {
	background-size: cover;
	background-repeat: no-repeat;
}

.paralaxBg1 {
	min-height: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(/images/paralax/1.png);
	background-size: cover;
	animation: zoomOut 3s ease forwards;
	background-position: center center;

}

.paralaxBg2 {
	min-height: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(/images/paralax/6.png);
	background-size: cover;
	animation: zoomOut 3s ease forwards;
	background-position: center center;
}

.paralaxBg3 {
	min-height: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(/images/paralax/2.png);
	background-size: cover;
	animation: zoomOut 3s ease forwards;
}

@keyframes zoomOut {
	from {
		transform: scale(1.2);
		/* start zoomed in */
	}

	to {
		transform: scale(1);
		/* end normal */
	}
}

/* Fix Tailwind's visibility clash with Bootstrap collapse */
#navbarCollapse {
	visibility: visible !important;
}




/* CONTACT FORM */


.contact-form {
	max-width: 600px;
	margin: auto;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
	margin-bottom: 15px;
	text-align: center;
}

.form-group {
	display: flex;
	flex-direction: column;
	margin-bottom: 15px;
}

.form-group label {
	margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 1.6rem;
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
}

.submit-btn {
	width: 100%;
	padding: 12px;
	border: none;
	border-radius: 6px;
	color: #fff;
	cursor: pointer;
	transition: background 0.3s ease;
}

.submit-btn:hover {
	background: #fff;
	color: #466365;
}

/* Responsive tweaks */
@media (max-width: 480px) {
	.contact-form {
		padding: 15px;
	}
}




/* table */

.table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.table thead th {
	background: linear-gradient(180deg, #fff, #cbcfd5);
	color: #000;
	font-weight: 600;
	text-transform: uppercase;
	padding: 14px;
	text-align: center;
}

.table tbody tr {
	transition: background 0.3s ease, transform 0.2s ease;
	position: relative;
}

.table tbody tr:hover {
	background: rgba(79, 142, 247, 0.08);
	/* light overlay */
	transform: translateY(-2px);
	/* subtle lift */
}

.really-small {
	font-size: 10px;
	font-weight: normal !important;
	font-style: normal !important;
	text-decoration: none !important;
}

.table td {
	padding: 14px;
	border-bottom: 1px solid #eee;
	color: #333;
	text-align: center;
	vertical-align: middle;

}

.table .badge {
	padding: 6px 10px;
	border-radius: 8px;
}

.table .badge.bg-success {
	background: #28c76f !important;
}

.table .badge.bg-danger {
	background: #ea5455 !important;
}

.table a {
	color: #000;
	transition: color 0.3s ease;
	text-decoration: underline;
}

.table a:hover {
	color: #466365;
}

.display-fluid {
	/* Scales between 2rem and 6rem based on viewport */
	font-size: clamp(2rem, 7vw, 6rem);
	line-height: 1.1;
}

@media (max-width: 575.98px) {

	.table td,
	.table th {
		padding: .4rem;
		font-size: .6rem;
	}

	.badge {
		font-size: .65rem;
	}

	.really-small {
		font-size: .5rem;
	}

	/* keep large numbers/labels tidy */
	.text-nowrap {
		white-space: nowrap;
	}

	h2 {
		font-size: 3rem !important;
	}

	.paralaxBg1 {
		background-position: top center;
	}

	.paralaxBg2 {
		background-position: top center;
	}

	.paralaxBg3 {
		background-position: top left;
	}

}


.navbar-toggler {
	display: inline-flex !important;
}



#loading-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.6);
  display: none;              /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 2000;              /* above navbars/modals */
}

#loading-overlay .loader-wrap {
  text-align: center;
  color: #fff;
}