/* Beach Background */
body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(to bottom, #87cefa, #f7e9d7); /* sky to sand */
    background-blend-mode: multiply;
    color: #333;
    position: relative;
    overflow-x: hidden;
  }

  /* Palm Leaf Accents */
  body::before, body::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: url('') no-repeat center;
    background-size: contain;
    opacity: 0.8;
    pointer-events: none;
  }
  body::before {
    top: 20px;
    left: 20px;
    transform: rotate(-15deg);
  }
  body::after {
    bottom: 20px;
    right: 20px;
    transform: rotate(25deg);
  }

  header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, #00a8e8, #0077b6);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
  }
  .logo h1 {
    font-family: 'Fredoka One', cursive; /* Apply Fredoka One font */
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  }
  .logo a {
    text-decoration: none; /* Remove underline */
  }

  .sidebar {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100%;
    background: linear-gradient(to bottom, #00c4b0, #008080);
    color: #fff;
    transition: right 0.3s ease;
    z-index: 1100;
    padding-top: 60px;
  }
  .sidebar a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 15px;
    font-weight: 600;
    transition: background 0.3s;
  }
  .sidebar a:hover { background-color: rgba(255, 255, 255, 0.2); }
  .sidebar.active { right: 0; }

  .content {
    margin-top: 130px;
    padding: 0 40px;
    z-index: 1;
  }
  /* Updated Header Font */
  h2, h3, h4, h5, h6 {
    font-family: 'Fredoka One', cursive;
    color: #0077b6;
  }
  p {
    font-family: 'Quicksand', sans-serif;
    text-align: justify;
    line-height: 1.6;
  }
  .btn-beach {
    display: inline-block !important; /* Ensure the button is displayed */
    background: #f8c82b !important; /* Initial background color */
    color: #0077b6 !important; /* Text color */
    border: none !important; /* Remove border */
    font-weight: 600 !important; /* Bold text */
    padding: 10px 20px !important; /* Add padding for better appearance */
    border-radius: 5px !important; /* Rounded corners */
    text-align: center !important; /* Center text */
    text-decoration: none !important; /* Remove underline */
    cursor: pointer !important; /* Pointer cursor on hover */
    transition: all 0.3s ease !important; /* Smooth transition for hover and click effects */
  }
  .btn-beach:hover {
    background: #0077b6 !important; /* Invert colors on hover */
    color: #f8c82b !important; /* Text color on hover */
  }
  .btn-beach:active {
    background: #005f8a !important; /* Darker shade for clicked state */
    color: #f8c82b !important; /* Text color for clicked state */
  }

  .placeholder-img {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 12px;
    overflow: hidden;
  }
  section {
    border-bottom: 2px dashed #00a8e8;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 1050; /* Ensure it appears above the content */
    display: none; /* Hidden by default */
  }

  .overlay.active {
    display: block; /* Show the overlay when active */
  }

  /* Updated Footer Styles */
  footer { 
    background: linear-gradient(90deg, #00a8e8, #0077b6); /* Same gradient as the header */
    color: #fff; /* White text for contrast */
    padding: 40px 0; 
  }
  
  footer p {
    text-align: center; 
    margin-bottom: 0.5rem; 
    color: #fff; /* Ensure text is visible on the gradient */
  }

  footer ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
    margin: 1rem auto; /* Center the list */
    text-align: center; /* Center the text */
    color: #fff; /* Ensure text is visible */
  }

  footer ul li {
    display: inline-block; /* Display items inline */
    margin: 0 10px; /* Add spacing between items */
    color: #fff; /* Ensure text is visible */
  }