/*
Theme Name: PM Theme
Theme URI: https://wordpress.org/themes/pm_theme/
Description: PM Theme boilerplate code
Version: 1
Tags: Multi-Column, Repsonsive, Bootstrap
*/

/* --------------------------------------------------------------------- */
/* Variables                                                             */
/* --------------------------------------------------------------------- */
:root {
	/* Colors */
	--walmac-blue-clr: #0a5c9d;
	--primary-shade-clr: ;
	--secondary-clr: ;
	--secondary-shade-clr: ;
	--tertiary-clr: ;

	--black-clr: black;
	--white-clr: white;

	/* Font sizes */
	--font-100: clamp(24px, 1.5vw, 100px);
	--font-200: ;
	--font-300: ;
	--font-400: ;
	--font-500: ;

	/* Button hover colors */
	--primary-hover-clr: ;
	--secondary-hover-clr: ;
}

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

/* --------------------------------------------------------------------- */
/* Browser resets                                                        */
/* --------------------------------------------------------------------- */
body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Work Sans", sans-serif;
}

h1, h2, h3, h4, h5, h6, p {
	margin: 0;
}

h1 {
	font-weight: 600;
	font-size: clamp(48px, 1.5vw, 120px);;
}

a {
	text-decoration: none;
}

/* --------------------------------------------------------------------- */
/* Utilities                                                             */
/* --------------------------------------------------------------------- */

/* --------------------------------------------------------------------- */
/* Grid setup                                                            */
/* --------------------------------------------------------------------- */

/********************/
/* THREE COLUMN     */

#services__section {
	padding: 2rem 0;
	background-color: #0b5b9d;
}

/****************************/
/* TWO COLUMN               */

.two-column-no-break {
    height: 800px;
    display: flex;
    position: relative;
}

.two-column-no-break .column {
    flex: 1;
    background-color: #AEC8DE;
}

.two-column-no-break .column:nth-child(2) {
    flex: 1;
    background-color: lightgray;
}

#booking__section .col-lg-6:first-child {
    background-color: #d3d3d3;
}

#booking__section .col-lg-6:last-child {
	background-color: #AEC8DE;
}

/* --------------------------------------------------------------------- */
/* Header                                                                */
/* --------------------------------------------------------------------- */
header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1;
}

.navbar .container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	row-gap: 0.6rem;
}

.navbar-collapse {
	flex-grow: 0;
}

.navbar-brand {
	width: 150px;
	margin: 0;
	margin-right: auto;
}

/* .navbar-brand img {
	display: block;
	margin: auto;
	width: 10%;
} */

.navbar-nav {
	flex-direction: row;
	column-gap: 1rem;
}
/* --------------------------------------------------------------------- */
/* Navbar                                                                */
/* --------------------------------------------------------------------- */
/* Custom toggler button */
.custom-navbar-toggler {
	padding-inline: 12px;
	height: 40px;
	width: 56px;
	border: none;
	background: transparent;

	&:-icon {
		content: '';
		margin-inline: auto;
		display: block;
		position: relative;
		height: 3px;
		width: 100%;
		background-color: white;
	}

	&:before {
		content: '';
		margin-inline: auto;
		display: block;
		position: absolute;
		top: 8px;
		height: 100%;
		width: 100%;
		background-color: white;
	}

	&:after {
		content: '';
		margin-inline: auto;
		display: block;
		position: absolute;
		top: -8px;
		height: 100%;
		width: 100%;
		background-color: white;
	}
}


/* --------------------------------------------------------------------- */
/* Homepage | PAGE                                                       */
/* --------------------------------------------------------------------- */
#homepage__header .col-lg-4 {
    background: linear-gradient(#FEFEFE, #DADADA); /* Light blue gradient */
    padding: 20px;
    display: flex;
    flex-direction: column;
	align-items: center;
	justify-content: center;
    font-size: 24px;
    color: #333;
}

#homepage__header .col-lg-4:nth-child(2) {
    background: linear-gradient(#DADADA, #FEFEFE); /* Light blue gradient */
}

.product-cta {
	text-align: center;
	margin-top: 10rem;
	margin-inline: auto;
}

.product-cta h1 {
	margin-bottom: 1rem;
}

.product-cta a {
	background-color: var(--walmac-blue-clr);
	color: var(--white-clr);
	text-transform: uppercase;
	font-size: 15px;
	font-weight: light;
	padding: 13px 30px;
}


.service-group {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 1.5rem;
	color: #fff;
}

.services-heading {
	text-align: center;
	padding: 1.5rem;
	color: #fff;
}

.service--left {
	width: 100%;
	text-align: center;
}

.service--right {
	width: 100%;
	text-align: center;
}

.full-width {
    background-color: #DADADA;
    height: 400px;
}

.image {
	width: 80%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: block;
    margin-inline: auto;
}

.image-fit {
    height: 560px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.image-container {
	padding: 0 1rem 1rem 1rem;
	height: fit-content;
	width: 100%;
	background-color: white;
	display: flex;
	align-items: end;
}

.image-container--2 {
	height: 100%;
	width: 100%;
}

.image-container--2 img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: top;
}

.form-container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#booking__section .col-lg-6:first-child {
	padding: 2rem 0;
}

.booking-heading {
	text-align: center;
	padding: 1rem 0;
}

.rounded-img {
	width: 60px;
	border-radius: 50%;
}

#reviews__section .col-lg-6:last-child {
	position: relative;
	background-color: lightgray;
}

.author-group {
	display: flex;
	align-items: center;
	column-gap: 1rem;
}

.reviews-heading {
	text-align: center;
	padding: 8rem 0;
}

.review-quote {
	margin-bottom: 1rem;
	font-size: 20px;
}


.floating-column {
    background-color: darkgray;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	row-gap: 1.2rem;
	z-index: 1;
}

/* --------------------------------------------------------------------- */
/* About | PAGE                                                          */
/* --------------------------------------------------------------------- */
#intro__section {
	position: relative;
}

.page-header {
	position: relative;
}

.page-heading {
	position: absolute;
	top: 75%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 60px;
	font-weight: bold;
	color: #000823;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.5);
}

.floating-column--2 {
	background-color: lightgray;
	padding: 2rem;
}

.floating-column--2 h1,
.floating-column--2 p {
	margin-bottom: 1rem;
}

.background__container {
	height: 600px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

#why-choose-us {
	padding: 3rem 0;
}

#why-choose-us h1 {
	text-align: center;
}

.reason__container {
	display: flex;
	column-gap: 2rem;
}

.reason__container i {
	padding-top: 5px;
}

.reason__text h3 {
	margin-bottom: 1rem;
}

#team__section {
	position: relative;
}

.top-layer {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#team__section .container-fluid,
#team__section .container-fluid .row {
	height: 1200px;
}

#team__section .col-6:first-child {
	background-color: rgb(245, 245, 245);
}

#team__section .col-6:last-child {
	background-color: #0a5c9d;
}

.team__heading {
	margin-inline: auto;
	margin-bottom: 2rem;
	max-width: 800px;
	text-align: center;
}

.team__member {
	height: 320px;
	margin-inline: auto;
	width: fit-content;

	display: flex;
	flex-direction: column;
	justify-content: space-between;

}

.team__member img {
	display: block;
	margin-inline: auto;
}

.social__contacts {
	display: flex;
	justify-content: center;
}

.social__contacts a:nth-child(2) {
	margin-inline: 10px;
}


/* --------------------------------------------------------------------- */
/* Services | PAGE                                                       */
/* --------------------------------------------------------------------- */
.floating-column--3 {
	background-color: lightgray;
    padding: 2rem;
}

.floating-column--3 h1,
.floating-column--3 p {
	margin-bottom: 1rem;
}

#single-review__section {
	text-align: center;
	padding: 6rem 0;
}

.policy-section {
	background-color: lightgray;
}

#full-width__banner {
	position: relative;
}

.text-layer {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding-left: 3rem;
}

#booking__form {
	padding: 2rem 0;
}

.policy-link {
	color: #0a5c9d;
	text-decoration: underline;
}

/* --------------------------------------------------------------------- */
/* Events | PAGE                                                         */
/* --------------------------------------------------------------------- */
#events-table {
	padding: 6rem 0;
	text-align: center;
}


/* --------------------------------------------------------------------- */
/* Footer | partial                                                      */
/* --------------------------------------------------------------------- */


/* --------------------------------------------------------------------- */
/* Media queries                                                         */
/* --------------------------------------------------------------------- */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { }

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .two-column-section {
        flex-direction: row;
    }

    .three-column-section {
        flex-direction: row;
    }

	.three-column-section--2 {
		flex-direction: row;
	}

    .two-column-no-break {
        position: static;
    }

    .two-column-no-break .column:nth-child(2) {
        position: relative;
    }

	#team__section .container-fluid,
	#team__section .container-fluid .row {
		height: 600px;
	}

	.floating-column--2 {
		position: absolute;
		top: 100px;
		right: 200px;
		width: 50%;
	}

	.floating-column--3 {
		position: absolute;
		top: 100px;
		left: 200px;
		width: 50%;
	}

	#why-choose-us h1 {
		font-size: 64px;
		margin-right: 2rem;
		text-align: end;
	}

	.trim {
		width: 100%;
		padding: 75px;
	}

	.page-heading {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		font-size: 120px;
		font-weight: bold;
		color: #000823;
	}

	.navbar .container {
		display: flex;
		flex-direction: column;
		justify-content: center;
		row-gap: 0.8rem;
	}
	
	.navbar-brand {
		margin: 0;
		margin-right: 0;
	}

	#booking__section .col-lg-6:first-child {
		padding: 0;
	}

	.service--left {
		width: 100%;
		text-align: right;
		margin-bottom: 0;
	}
	
	.service--right {
		width: 100%;
		text-align: left;
	}
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
	.floating-column {
		position: absolute;
		top: -60px;
		width: 50%;
	}
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) { }