@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0;
    font-family: Poppins, sans-serif;
}

.header {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
    position: fixed;
    width: 100%;
    top: 0;
    backdrop-filter: blur(0px);
    transition: backdrop-filter 0.3s ease, background-color 0.3s ease;
    z-index: 1000;
}

.header.scrolled {
    backdrop-filter: blur(5px);
    background-color: #ffffff;
}

.header h1 {
    margin: 0;
    font-size: xx-large;
}

.navbar {
    display: flex;
    justify-content: flex-end;
    background-color: #ffffff(0, 0%, 100%);
    padding-right: 30px;
}

.navbar a {
    color: rgb(0, 0, 0);
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}

.navbar a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: rgb(255, 255, 255);
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    right: 0;
}

.navbar a:hover {
    color: #7c7c7c;
}

.navbar a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #7c7c7c;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.navbar a:hover::after {
    transform: scaleX(0);
    transform-origin: bottom left;
}   

.pink-beach {
    margin-top: 100px;
    text-align: center;
    padding: 20px;
}

.pink-beach .title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #333;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 20px;
}

.gallery-item img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.description {
    margin-top: 40px;
    padding: 20px;
    text-align: justify;
    font-size: 1.2em;
    color: #555;
    line-height: 1.8;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background-color: #161616; /* Black background */
    color: #fff; /* White text color */
    text-decoration: none;
    height: 25vh; /* Half the screen height */
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items:first baseline; /* Center vertically */
    text-align: center; /* Center text alignment */
    margin-top: 50px;
}

.footer p {
    font-size: 1.2em; /* Adjust font size */
    margin: 0; /* Remove default margin */
    margin-top: 30px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {

    html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content { /* wrap your main content in this */
  flex: 1 0 auto;
}
  .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 10px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #fff;
  }
  .header h1 {
    font-size: 2em;
    margin: 0 0 10px 0;
    margin-left: 20px;
    padding: 0;
  }
  .header a {
    font-size: 1em;
    padding: 0;
  }
  .navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 10px;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 15px;
    gap: 10px;
    z-index: 1200;
  }
  .navbar.show {
    display: flex;
  }
  .navbar a {
    color: #fff !important;
    padding: 10px 0;
    font-size: 1em;
    text-align: left;
    display: block;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 2000;
    position: fixed;
    top: 15px;
    right: 15px;
    background: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
  }
  .hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #111;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .hamburger.black span {
    background: #fff !important;
  }
  .pink-beach {
    margin-top: 70px;
    padding: 10px;
  }
  .pink-beach .title {
    font-size: 2em;
    margin-bottom: 16px;
    padding: 0 5px;
  }
  .gallery {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    overflow-x: auto;
    margin-top: 20px;
    width: 100vw;
    padding-bottom: 10px;
  }
  .gallery-item {
    flex: 0 0 auto;
    width: 70vw;
    max-width: 220px;
    text-align: center;
  }
  .gallery-item img {
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    display: block;
    margin: 0 auto;
  }
  .description {
    margin-top: 24px;
    padding: 10px;
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    max-width: 98vw;
    margin-left: auto;
    margin-right: auto;
  }
  .footer {
    flex-direction: column;
    height: auto;
    padding: 20px 10px;
    margin-top: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    left: 0;
    right: 0;
    box-sizing: border-box;
    background: #161616;
    color: #fff;
    text-align: center;
    position: relative;
  }
  .footer p {
    font-size: 1em;
    margin-top: 10px;
    word-break: break-all;
  }
  .footer a {
    font-size: 1em;
    margin: 0 2px;
    word-break: break-all;
  }
}