@charset "UTF-8";
/*
Author: Murray Moffatt
Template: FW25
*/

/**
 * 1.0 - Reset
 * 2.0 - Variables
 * 3.0 - Header
 * 4.0 - Navigation
 * 5.0 - Hero Slider
 * 6.0 - Banner
 * 7.0 - Main Content
 * 8.0 - Footer
 * 9.0 - Buttons
 * 10.0 - Forms
 * 11.0 - Lists
 * 12.0 - Images
 * 13.0 - Components
 * 14.0 - Helpers
 * 15.0 - Misc
 * 16.0 - CMS
 * 99.0 - Media Queries

 * -----------------------------------------------------------------------------
 */

/**
 * 1.0 Reset
 *
 * -----------------------------------------------------------------------------
 */
@import "modern-normalize.css";
@import "https://cdn-uicons.flaticon.com/2.6.0/uicons-solid-rounded/css/uicons-solid-rounded.css";
@import "https://cdn-uicons.flaticon.com/2.6.0/uicons-brands/css/uicons-brands.css";

html {
  font-size: 16px; /* 1rem = 16px */
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Roboto", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
  color: #333333;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 0.875rem;
}

h3 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 0.625rem;
}

h5 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: var(--highlight-color);
}

button:focus {
  outline: none;
  box-shadow: none;
}


/**
 * 2.0 Variables
 *
 * -----------------------------------------------------------------------------
 */
:root, ::after, ::before {
  --main-background-color: #2A4D69;
  --main-background-color-rgb: 42, 77, 105;
  --lighter-background-color: #4B86B4;
  --main-text-color: #E7EFF6; /* Used for text over a background colour of --main-background-color so should contrast with it */
  --main-text-color-rgb: 255, 255, 255;
  --highlight-color: #F9D423;
  --highlight-text-color: #333333; /* Used for text over a background colour of --highlight-color so should contrast with it */
  --light-background-color: #F6F6F6;
}


/**
 * 3.0 Header
 *
 * -----------------------------------------------------------------------------
 */
header {
  position: relative; /* So the absolute menu is placed relative to this */
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 4rem;
  background-color: var(--lighter-background-color);
  color: var(--main-text-color);
}

.header-contact {
  display: flex;
  flex-wrap: wrap;
}

.header-contact i {
  margin-right: 8px;
}

.header-contact a {
  color: var(--main-text-color);
}

.header-contact-address {
  padding-right: 1rem;
  margin-right: 1rem;
  border-right: 1px solid rgba(var(--main-text-color-rgb), 0.3);
}

.header-button .button {
  padding: 0.5rem 1.5rem;
}

.header-notice {
  display: none;
  font-size: 14px;
  background-color: #FC4060;
  color: #FFFFFF;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: centre;
  overflow: hidden;
}

.header-notice button {
  display: inline-flex;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #F9D423;
  color: #333333;
  border: none;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  margin-left: 10px;
  border-radius: 0.5rem;
  cursor: pointer;
}

.header-notice button:hover {
  background-color: #000000;
  color: #FFFFFF;
}


/**
 * 4.0 Navigation Menu
 *
 * -----------------------------------------------------------------------------
 */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 4rem;
  background-color: var(--main-background-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-logo {
  flex: 0 0 auto; /* Don't grow or shrink */
  display: flex;
  margin-right: 1rem;
}

.header-logo img {
  display: block; /* Removes inline spacing issues */
  max-height: 70px;
}

.main-nav {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.main-nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--main-text-color);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
  max-width: 170px;
  min-height: 44px; /* Ensure links maintain minimum height for touch targets */
}

.main-nav a:hover, .main-nav a.selected {
  color: var(--highlight-text-color);
  background-color: var(--highlight-color);
}

/* Hamburger styles */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1001;
  border: 2px solid var(--main-text-color);
  border-radius: 0.5rem;
  background-color: var(--main-background-color);
  transition: all 0.3s ease-in-out;
  position: relative; /* Needed for transforming bars into X */
}

.hamburger-menu span {
  display: block;
  position: absolute;
  left: 3px;
  right: 3px;
  height: 3px;
  background-color: var(--main-text-color);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* Position the bars initially */
.hamburger-menu span:nth-child(1) {
  top: 8px;
}

.hamburger-menu span:nth-child(2) {
  top: 17px;
}

.hamburger-menu span:nth-child(3) {
  top: 26px;
}

/* Animate into a centered X */
.hamburger-menu.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 17px;
  left: 3px;
  right: 3px;
}

.hamburger-menu.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 17px;
  left: 3px;
  right: 3px;
}


/**
 * 5.0 Hero Slider Section
 *
 * -----------------------------------------------------------------------------
 */
/* Hero images should be 2500 x 1666 */
.hero-slider {
  margin: 0;
}


/**
 * 6.0 Banner Section
 *
 * -----------------------------------------------------------------------------
 */
/* Banner images should be 2500 x 1666 */
.banner {
  background-color: #FFFFFF;
  overflow: hidden;
  margin: 0 0 20px 0;
  padding: 0;
  height: 500px;
  background-position: bottom center; /* May need to adjust as necessary */
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bannerbg1 {
  background-image: url("../images/banner-1.jpg");
}

.banner .pagetitle {
  color: #FFFFFF;
}

.banner h1 {
  margin: 0;
}


/**
 * 7.0 Main Content Section
 *
 * -----------------------------------------------------------------------------
 */
section {
  padding: 2rem 0;
}

section:first-of-type {
  padding-top: 0;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-bg-light {
  background-color: var(--light-background-color);
}

.page-title {
  text-align: center;
  margin: 2rem 0;
}

.split-columns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.column {
  flex: 1 1 50%;
  padding-right: 1rem;
  min-width: 0; /* Allow column to shrink below the width of its content when necessary */
}

.column:last-child {
  padding-right: 0;
}


/**
 * 8.0 Footer Section
 *
 * -----------------------------------------------------------------------------
 */
footer {
  background-color: var(--main-background-color);
  color: var(--main-text-color);
  padding: 2rem 1rem 0.0rem 1rem;
  text-align: center;
}

.footer-logo {
  margin-bottom: 2rem;
}

footer img {
  max-width: 200px;
}

footer a {
  color: var(--main-text-color);
  text-decoration: none;
}

footer a:hover {
  color: var(--highlight-color);
}

.footer-contact, footer-nav, .footer-social, .footer-copyright {
  margin: 1rem 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-address, .footer-phone, .footer-email {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 0.5rem;
  font-size: 1.20rem;
}

.footer-address span, .footer-phone span {
  flex-shrink: 0;
}

.footer-phone {
  column-gap: 2rem;
}

ul.footer-nav {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 2rem;
  padding: 0;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-social i {
  font-size: 3rem;
}

.footer-copyright {
  font-size: 0.875rem;
  margin-bottom: 0;
}


/**
 * 9.0 Buttons
 *
 * -----------------------------------------------------------------------------
 */
.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.button {
  background-color: var(--highlight-color);
  color: var(--highlight-text-color);
  display: inline-flex;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

.button-large {
  font-size: 125%;
  padding: 1.5rem 3rem;
}


/**
 * 10.0 Forms
 *
 * -----------------------------------------------------------------------------
 */
label {
  padding-top: 5px;
  font-size: 1.2rem;
}

input, textarea, select {
  padding: 0.7rem;
  width: 100%;
  font-family: Helvetica, sans-serif;
  font-size: 1.4rem;
  margin: 0 0 0.8rem 0;
  border: 1px solid #CCCCCC;
}

input[type="submit"] {
  width: auto;
}

textarea {
  height: 8rem;
}

textarea:focus, input:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid var(--highlight-color);
}

.form-errors {
  background-color: var(--highlight-color);
  color: var(--highlight-text-color);
  margin: 0.5rem 0;
  padding: 1rem 2rem;
}

.field-error {
  background-color: #FFB6C1;
  border: 1px solid #FF0000;
}

.g-recaptcha {
  margin: 0 0 1rem 0;
}


/**
 * 11.0 Lists
 *
 * -----------------------------------------------------------------------------
 */
ul.two-columns {
  columns: 2;
}

ul.tick-list {
  list-style-type: none;
  padding-left: 0;
}

ul.tick-list li {
  position: relative;
  padding-left: 2rem;
}

ul.tick-list li::before {
  content: "\e360"; /* Icon for 'check-circle' in UIcons Solid Rounded */
  font-family: "uicons-solid-rounded";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--main-background-color);
}


/**
 * 12.0 Images
 *
 * -----------------------------------------------------------------------------
 */
img {
  max-width: 100%;
  height: auto;
}


/**
 * 13.0 Components
 *
 * -----------------------------------------------------------------------------
 */

/********************************************
Home Amenities Section
********************************************/
.home-amenities {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 1rem;
}

.home-amenities .amenity {
  flex: 1 1 200px;
  max-width: 200px;
  padding: 1rem;
  background-color: #FFFFFF;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.3s ease;
}

.home-amenities .amenity:hover {
  background-color: var(--highlight-color);
  color: var(--highlight-text-color);
  transform: translateY(-4px); /* subtle lift on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.home-amenities .amenity div {
  text-align: center;
  word-break: break-word;
  font-size: 1.2rem;
}

.home-amenities .amenity i {
  display: block;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--highlight-color);
  pointer-events: none;
  transition: color 0.4s ease;
}

.home-amenities .amenity:hover i {
  color: var(--highlight-text-color);
  transition: color 0.3s ease;
}

/********************************************
Map Section
********************************************/
.map {
  position: relative;
  padding-bottom: 25%; /* This is the aspect ratio */
  height: 0;
  overflow: hidden;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/********************************************
Home Page Room Carousel
********************************************/
.home-room-cards {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.is-cms .home-room-cards {
  margin-bottom: 25px;
}

.home-room-cards>div {
  text-align: center;
}

.home-room-card {
  flex: 1 1 560px;
  position: relative;
  max-width: 580px;
  padding: 10px;
}

.home-room-card .img {
  position: relative;
  overflow: hidden;
  max-width: 560px;
  max-height: 373px;
  width: 100%;
  object-fit: scale-down;
}

.home-room-card:hover img {
  transform: scale(1.1);
}

.home-room-card .img img {
  transition: all 500ms ease;
  vertical-align: middle;
}

.home-room-card .text {
  position: absolute;
  background-color: rgba(var(--main-background-color-rgb), 0.7);
  padding: 10px 15px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  z-index: 10;
  font-size: 1.5rem;
  color: var(--main-text-color);
  text-align: center;
}

.is-cms .home-room-card .text {
  cursor: text;
}

/********************************************
Badges
********************************************/
.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

/********************************************
Accordions
********************************************/
details {
  border: 1px solid var(--main-background-color);
  padding: 0.5rem 0.5rem 0 0.5rem;
  margin-bottom: 1rem;
}

details:last-of-type {
  margin-bottom: 0;
}

summary {
  margin: -0.5rem -0.5rem 0 -0.5rem;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--main-text-color);
  background-color: var(--main-background-color);
}

details[open] {
  padding: 0.5rem;
}

/********************************************
Cards
********************************************/
.room-cards {
}

.activity-cards {
}

.card {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15) !important;
  padding: 1rem;
  margin-bottom: 3rem;
}

.card-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--main-background-color);
  padding-bottom: 0.75rem;
}

.card h3 {
  margin: 0 1rem 0 0;
}

.card-body {
  display: flex;
}

.card-text, .card-slider {
  flex: 1 1 50%;
}

.card-text {
  margin-right: 1rem;
}

.card-slider {
  margin-top: 1rem;
}

ul.card-list {
  margin: 0;
  list-style: disc;
  columns: 2;
}

ul.card-list li {
  margin-right: 15px;
}

.card-text h4 {
  margin-top: 1rem;
}

.card-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/********************************************
Welcome Pop-up Message
********************************************/
dialog {
  border: none;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  background-color: var(--light-background-color);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.4);
}

dialog button {
  display: inline-flex;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--highlight-color);
  color: var(--highlight-text-color);
  border: none;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  margin-left: 10px;
  border-radius: 0.5rem;
  cursor: pointer;
}

/********************************************
Videos
********************************************/
.video-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto !important;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16/9 ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/********************************************
Notices
********************************************/
.notice {
  background-color: var(--highlight-color);
  color: var(--highlight-text-color);
  padding: 1rem 2rem;
  margin: 1rem auto;
  width: fit-content;
  text-align: center;
}

.notice h2, .notice h3 {
  color: var(--highlight-text-color);
}

.notice .button {
  background-color: var(--main-background-color);
  color: var(--main-text-color);
}


/**
 * 14.0 Helpers
 *
 * -----------------------------------------------------------------------------
 */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.no-padding {
  padding: 0;
}

.valign-content {
  /* Make content inside a div center vertically in relation to other columns in the row.
     The .valign-content class should be on the column's parent row div. */
  display: flex;
  align-items: center;
}


/**
 * 15.0 Misc
 *
 * -----------------------------------------------------------------------------
 */
.amenities, .affiliations {
  margin: 2px;
}

.fotorama__wrap {
  /* Center Fotorama slideshows within their container */
  margin: 0 auto;
}


/**
 * 16.0 Misc
 *
 * -----------------------------------------------------------------------------
 */
.cms-msg {
  display: none;
  color: #FF0000;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin: 0.5rem 1rem;
  padding: 0.5rem 1rem;
  background-color: #FFF9C0;
}

.is-cms .cms-msg {
  display: block;
}


/**
 * 99.0  Media Queries
 *
 * -----------------------------------------------------------------------------
 */
/* Tablets (landscape and smaller) */
@media (max-width: 1199.98px) {

  /* Styles for screens smaller than 1200px */
  .hamburger-menu {
    display: flex;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--main-background-color);
    padding: 1rem;
    z-index: 1002;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 80%;
    max-width: none;
    text-align: center;
  }
}

/* Tablets (portrait and smaller) */
@media (max-width: 991.98px) {
  /* Styles for screens smaller than 992px */
  .header-contact {
    flex-direction: column;
  }

  .header-contact-address {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
  }

  .map {
    padding-bottom: 50%; /* This is the aspect ratio */
  }

  .column {
    flex: 1 1 100%;
    padding-right: 0;
  }

  .column:last-child {
    padding-top: 16px;
  }
}

/* Large phones / small tablets */
@media (max-width: 767.98px) {
  /* Styles for screens smaller than 768px */
  .header-top {
    padding: 0.5rem 1rem;
  }

  .header-nav {
    padding: 0.5rem 1rem;
  }

  .card-body {
    display: block;
  }

  .card-text {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }

  ul.card-list {
    columns: 1;
  }
}


/* Small phones */
@media (max-width: 575.98px) {
  /* Styles for screens smaller than 576px */
  .header-top {
    display: none;
  }

  .section-content {
    padding: 0 0.5rem;
  }

  .valign-content {
    display: inherit;
  }

  ul.two-columns {
    columns: 1;
  }
}