@charset "UTF-8";
/* Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.  */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/*  Apply a natural box layout model to all elements  */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default margin and padding */
body,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
form, fieldset, legend,
figure,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements */
ul, ol {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* SMALL SCREEN STYLES (Mobile First - 320px+) */
body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #333333;
  background-color: #F0F8FF;
  line-height: 1.6;
}

#pageWrapper {
  position: relative;
  overflow-x: hidden;
}

/* HEADER STYLES */
#headerWrapper {
  background: linear-gradient(135deg, #0A4D68 0%, #088395 100%);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  max-width: 1600px;
  margin: 0 auto;
}

header img {
  height: 20px;
  width: auto;
}

header span {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-left: 1rem;
}

/* HAMBURGER BUTTON */
#hamburgerBtn {
  width: 50px;
  height: 50px;
  margin: 0;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #FFFFFF;
  cursor: pointer;
}

#hamburgerBtn::before {
  content: "☰";
}

/* NAVIGATION */
nav {
  background-color: #f7f7f7;
  width: 180px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  padding-top: 60px;
}

nav ul li a {
  display: block;
  padding: 0.9rem 0.5rem;
  text-align: right;
  border-bottom: 1px rgba(0, 0, 0, 0.25) solid;
  text-decoration: none;
  color: #0A4D68;
  font-weight: 500;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

nav ul li a:hover {
  background-color: #05BFDB;
  color: #FFFFFF;
}

nav ul li.active a {
  background-color: #088395;
  color: #FFFFFF;
}

/* MOVE OVER CLASS - Activated by JavaScript */
.moveOver #hamburgerBtn::before {
  content: "✕";
}

.moveOver > .content {
  -webkit-transform: translateX(-180px);
  transform: translateX(-180px);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

/* MAIN CONTENT */
main {
  padding: 2rem 1rem;
  max-width: 1600px;
  margin: 0 auto;
}

main h1 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #0A4D68;
  margin-bottom: 1rem;
  text-align: center;
}

main .tagline {
  text-align: center;
  font-size: 1.1rem;
  color: #088395;
  margin-bottom: 3rem;
  line-height: 1.5;
}

/* HOTEL CARDS - SMALL SCREEN (Stacked) */
#cards {
  display: grid;
  gap: 2rem;
}

#cards section {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  /* CSS Grid for card layout - SMALL (stacked) */
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "image" "name" "address" "phone";
}

#cards section:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#cards section img {
  grid-area: image;
  width: 100%;
  height: 15rem;
  -o-object-fit: cover;
  object-fit: cover;
}

#cards section h2 {
  grid-area: name;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #0A4D68;
  padding: 1rem 1.5rem;
  padding-bottom: 0.5rem;
}

#cards section address {
  grid-area: address;
  font-style: normal;
  padding: 0 1.5rem;
  padding-bottom: 0.5rem;
  color: #333333;
  line-height: 1.6;
}

#cards section a {
  grid-area: phone;
  display: inline-block;
  margin: 1rem 1.5rem;
  margin-top: 0.5rem;
  padding: 1rem 1.5rem;
  background-color: #088395;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

#cards section a:hover {
  background-color: #05BFDB;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/* FOOTER */
footer {
  background-color: #0A4D68;
  color: #FFFFFF;
  padding: 1.5rem;
}

footer p {
  text-align: center;
  font-size: 0.9rem;
}

/* MEDIUM MEDIA QUERY (600px+) */
@media only screen and (min-width: 600px) {
  /* MEDIUM SCREEN STYLES (Tablets - 600px+) */
  header {
    padding: 1.5rem 2rem;
  }
  header img {
    height: 60px;
  }
  header span {
    font-size: 1.5rem;
  }
  main {
    padding: 3rem 2rem;
  }
  main h1 {
    font-size: 2.5rem;
  }
  main .tagline {
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  /* HOTEL CARDS - MEDIUM SCREEN (Image left, content right) */
  #cards section {
    /* CSS Grid for card layout - MEDIUM (image left, content stacked right) */
    grid-template-columns: 200px 1fr;
    grid-template-areas: "image name" "image address" "image phone";
  }
  #cards section img {
    width: 100%;
    height: 100%;
  }
  #cards section h2 {
    -ms-flex-item-align: end;
    align-self: end;
    padding-bottom: 0;
  }
  #cards section address {
    -ms-flex-item-align: center;
    align-self: center;
  }
  #cards section a {
    -ms-flex-item-align: start;
    align-self: start;
    margin-top: 0;
    justify-self: start;
  }
}
/* LARGE MEDIA QUERY (1000px+) */
@media only screen and (min-width: 1000px) {
  /* LARGE SCREEN STYLES (Desktop - 1000px+) */
  /* NAVIGATION STUFF */
  #hamburgerBtn {
    display: none;
  }
  .moveOver > .content {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  nav {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #0A4D68 0%, #088395 100%);
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: static;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    width: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: block;
  }
  nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 0;
    gap: 0.5rem;
  }
  nav ul li a {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-align: center;
    color: #FFFFFF;
  }
  nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
  }
  nav ul li.active a {
    background-color: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
  }
  header span {
    font-size: 1.8rem;
  }
  header img {
    height: 70px;
  }
  main {
    padding: 3rem;
  }
  main h1 {
    font-size: 3rem;
  }
  /* HOTEL CARDS - LARGE SCREEN (Two columns) */
  #cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  #cards section {
    /* CSS Grid for card layout - LARGE (same as medium, but in 2 columns) */
    grid-template-columns: 11rem 1fr;
    grid-template-areas: "image name" "image address" "image phone";
  }
  #cards section img {
    height: 100%;
    width: 15rem;
  }
  footer {
    padding: 2rem;
  }
  footer p {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=styles.css.map */
