:root {
  /* Color Palette */
  --tropical-ocean: #014038;
  --sunshine-yellow: #96baa0;
  --island-leaf: #bdd4da;
  --coral-blush: #f0c06d;
  --sand-beige: #f7f7f7;
}

:root {
  /* Color Palette - Island Theme */
  --tropical-ocean: #00bcd4;    /* Vibrant aqua blue for primary accents or headers */
  --sunshine-yellow: #ffd54f;   /* Warm sunny yellow for highlights and buttons */
  --island-leaf: #43a047;       /* Tropical green for nature-oriented sections or calls to action */
  --coral-blush: #ff8a65;       /* Fun coral shade for secondary buttons or backgrounds */
  --sand-beige: #fbe9e7;        /* Light sandy background to keep things clean and relaxed */
}



/* General Styles */
body {
  background-color: var(--sand-beige);
  position: relative;
  min-height: 100vh;
  max-width: 100vw;
}

a,
button {
  opacity: 1;
  transition: opacity 0.15s ease-in-out;
}

a:hover,
button:hover, a.active {
  opacity: 0.5;
}

.navbar {
  background-color: var(--tropical-ocean);
}

.navbar-nav .nav-link {
  color: var(--sand-beige) !important;
}

.navbar-toggler {
  background-color: var(--sunshine-yellow);
}

.section-title {
  color: var(--tropical-ocean);
}

.btn-custom {
  background-color: var(--coral-blush);
  color: white;
  border: transparent 2px solid;
}
.btn-custom:hover {
  border: var(--sunshine-yellow) 2px solid;
}

.divider {
  width: 50px;
  height: 50px;
  background-color: var(--detritus-green);
  border-radius: 50%;
  margin: 20px auto;
}

.home-header {
  background-image: url('images/family-beach.jpg');
}
.contact-header {
  background-image: url('images/contact.jpg');
}
.attractions-header {
  background-image: url('images/attractions.jpg');
}
.transportation-header {
  background-image: url('images/transportation.jpg');
}
.booking-header {
  background-image: url('images/reserved.jpg');
}

.hero-header {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  padding: 5rem 1rem;
  color: white;
  position: relative;
}

.hero-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* Optional dark overlay for better text contrast */
  z-index: 0;
}

.hero-header h2 {
  z-index: 1;
  font-size: 4rem;
  position: relative;
}

.booking-button {
  z-index: 1;
  position: relative;
  background-color: var(--sunshine-yellow);
  color: black;
  padding: 0.75rem 1.5rem;
  border: none;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.booking-button:hover {
  background-color: var(--coral-blush);
  color: white;
}

.info-links h4 {
  margin-bottom: 1rem;
  color: var(--island-leaf);
}

.info-links ul {
  padding-left: 0;
}

.info-links .list-group-item {
  border: none;
  background-color: var(--sand-beige);
  margin-bottom: 0.5rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.info-links .list-group-item:hover {
  background-color: var(--coral-blush);
}

.info-links .list-group-item a {
  font-weight: bold;
  color: var(--tropical-ocean);
  text-decoration: none;
}

.info-links .list-group-item a:hover {
  color: var(--sunshine-yellow);
}

.info-links .list-group-item small {
  color: #555;
}

/* Footer Styles */
.footer-custom {
  background-color: var(--tropical-ocean);
  color: white;
}

.footer-custom a {
  color: white;
  text-decoration: underline;
}

.footer-custom .fab {
  color: white;
}

/* Typography */
.title-lg {
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 30px;
}
.title-md {
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 25px;
}
.subtitle {
  font-family: Comfortaa;
  font-size: 15px;
}
.body-lg {
  font-family: Calibri, Arial, sans-serif;
  font-size: 20px;
}
.body-strong {
  font-family: Calibri, Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
}
.body-normal {
  font-family: Calibri, Arial, sans-serif;
  font-size: 16px;
}
.captions {
  font-family: Arial;
  font-weight: bold;
  font-size: 11px;
}

nav img {
  width: 50px;
  height: 50px;
}
header {
  background-color: var(--island-leaf);
  color: var(--sand-beige);
  padding: 20px 0;
  height: 300px;
}

@media screen and (max-width: 992px) {
  .navbar-collapse {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

button {
  margin-top: none;
}

.social-media-links a {
  text-decoration: none;
}

/* contact section */
.contact-form {
  width: 100%;
  max-width: 500px;
}

.img-border {
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.green-border {
  border: 20px solid var(--sunshine-yellow);
  background-color: var(--sunshine-yellow);
}
.yellow-border {
  border: 20px solid var(--coral-blush);
  background-color: var(--coral-blush);
}

.navbar-brand img {
  background-color: none;
}

.photo-credit {
  font-size: 12px;
margin-left: 1rem;
}

.text-island-leaf {
  color: var(--island-leaf);
}

.text-tropical-ocean {
  color: var(--tropical-ocean);
}

.bg-sunshine-yellow {
  background-color: var(--sunshine-yellow) !important;
}

.contact-section {
  background-color: var(--sand-beige);
  border-top: 3px solid var(--coral-blush);
}

.attractions-section {
  background-color: var(--sand-beige);
}

.text-tropical-ocean {
  color: var(--tropical-ocean);
}

.text-island-leaf {
  color: var(--island-leaf);
}

.transportation-section {
  background-color: var(--sand-beige);
}

.text-tropical-ocean {
  color: var(--tropical-ocean);
}

.text-island-leaf {
  color: var(--island-leaf);
}

.booking-section {
  background-color: var(--sand-beige);
}

.text-coral-blush {
  color: var(--coral-blush);
}

.text-tropical-ocean {
  color: var(--tropical-ocean);
}

.btn-outline-primary {
  border-color: var(--tropical-ocean);
  color: var(--tropical-ocean);
}

.btn-outline-primary:hover {
  background-color: var(--tropical-ocean);
  color: #fff;
}
