/* =========================
   Global / Reset
   ========================= */

* {
  box-sizing: border-box;
}

/* =========================
   Typography System
   ========================= */
   
:root {
  --accent: #e8f1f5; /* soft coastal blue-gray */
}
   
   
   
/*
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #24303a;
  background: #f1f3f5;
}
*/

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #24303a;
  background: linear-gradient(180deg, var(--accent), #ffffff);
}



/* Headings */

/*
h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 0;
  color: red;
}
*/

/*
h1, h2, h3 {
  color: red !important;
}



h1, h2, h3 {
  font-family: 'Libre Baskerville', serif;
  color: #24303a;
}

*/


h1, h2, h3 {
  font-family: 'Libre Baskerville', serif;
  color: #24303a;
}


h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

h3 {
  font-size: 20px;
}

/* Body text */
p {
  font-size: 17px;
  line-height: 1.7;
  margin-top: 0;
}



.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* =========================
   Header / Navigation
   ========================= */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/*
.logo {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}
*/


/* REMOVE THESE OLD RULES BECAUSE WE ARE ADDING A LOGO
.logo {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
*/

/* =========================
   Logo
   ========================= */

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* The AAL badge */
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #5ab0dd, #0b7db3);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
}

/* The site name text */
.logo-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
}


nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #24303a;
  font-weight: 600;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #0b7db3;
}

.cta {
  background: #0b7db3;
  color: #ffffff !important;
  padding: 8px 14px;
  border-radius: 8px;
}

/* =========================
   Content Cards
   ========================= */

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.card + .card {
  margin-top: 32px;
}



/* =========================
   Hero / Slider  (IMPORTANT)
   ========================= */

.hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  overflow: hidden;
  background: #dddddd;
}

/* slider container */
.slider {
  position: absolute;
  inset: 0;
}

/* all slides */
.slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease-in-out;
}

/* active slide */
.slider img.active {
  opacity: 1;
  z-index: 1;
}

/* We are moving text off the slider images so Chad said to 
remove this :
/* hero text overlay 
.hero-text {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 40px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.4);
}
*/


.hero-text h2 {
  margin-top: 0;
  font-size: 32px;
}

/* =========================
   Gallery
   ========================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.gallery img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* =========================
   Reviews
   ========================= */

.review {
  background: #f6f6f6;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* =========================
   Booking Form
   ========================= */

.booking-form {
  max-width: 420px;
}

.booking-form label {
  display: block;
  margin-top: 16px;
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form button {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  font-size: 16px;
}

.booking-form button {
  margin-top: 20px;
  background: #0b7db3;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* =========================
   Footer
   ========================= */

.site-footer {
  background: #f1f1f1;
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
}

/* =========================
   Responsive Tweaks
   ========================= */

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 320px;
  }

  .hero-text {
    padding: 24px;
    max-width: none;
  }

  .hero-text h2 {
    font-size: 24px;
  }
  
  .hero-intro {
  padding-top: 28px;
  padding-bottom: 12px;
}

.hero-intro h2 {
  margin-bottom: 8px;
}

.hero-intro p {
  max-width: 640px;
}

  
  
  
  
  
  
  

  .header-inner {
    justify-content: center;
    text-align: center;
  }

  nav {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 16px;
  }
}




