/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f7f7f7;
  color: #333;
  padding-top: 60px; /* space for fixed header */
  overflow-x: hidden;
}

/* Header */
header {
  position: fixed;
  top: 10px; /* Adjust position to avoid it being too close to the top */
  left: 50%;
  transform: translateX(-50%); /* Centers the header horizontally */
  width: 80%; /* Optional: You can adjust this to fit your design */
  height: 60px;
  background-color: rgba(38, 38, 38, 0.9); /* Semi-transparent background */
  border-radius: 30px; /* Makes it pill-shaped */
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 10000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* More pronounced shadow for floating effect */
  transition: all 0.3s ease; /* Smooth transition for any dynamic changes */
}

/* Optional: Add hover effect or interaction styles */
header:hover {
  background-color: rgba(38, 38, 38, 1); /* Full opacity on hover */
}

/* For the body */
body {
  margin-top: 14px; /* Adjust this value to match the height of your header */
}



.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  color: #F3BD12;
  text-decoration: none;
  user-select: none;
}

.logo-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 6px;
}

#menu-toggle {
  display: none;
}

.menu-icon {
  margin-left: auto;
  font-size: 30px;
  color: #F3BD12;
  cursor: pointer;
  user-select: none;
  padding: 10px 15px;
  display: block;
}

.nav ul {
  list-style: none;
  position: absolute;
  top: 60px;
  right: 0;
  background-color: #F3BD12;
  width: 220px;
  display: none;
  flex-direction: column;
  padding: 20px;
  border-radius: 10px; /* Rounded corners on all sides */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  z-index: 10001;
  gap: 15px;
}

.nav ul li a {
  color: #262626;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav ul li a:hover {
  color: green;
}

#menu-toggle:checked + .menu-icon + .nav ul {
  display: flex;
}

/* Hero Section */
.hero {
  background: url('hero.png') no-repeat center center / cover;
  height: 100vh; /* CHANGE FROM 80vh (HEIGHT OF HERO) */
  position: relative;
  color: white;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.4;
}

/*LOGIN BUTTON*/
.btn {
  background: #ff8c42;
  padding: 12px 30px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px; /*CHANGED FROM 5px CAUSING IT TO BE MORE ROUNDED*/
  transition: background 0.3s ease;
}

.btn:hover {
  background: #ffb74d;
}

.newshero {
  background: url('newshero.png') no-repeat center center / cover;
  height: 80vh;
  position: relative;
  color: white;
}

/* Featured Destinations */
.destinations {
  padding: 40px 20px;
  text-align: center;
}

.destinations h2 {
  margin-bottom: 20px;
  color: #262626;
  font-size: 28px;
  font-weight: 700;
}

.carousel-wrapper {
  overflow: hidden;
}

.cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 15px;
  scrollbar-width: thin;
  scrollbar-color: #004d40 transparent;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  user-select: none;
}

.cards::-webkit-scrollbar {
  height: 8px;
}

.cards::-webkit-scrollbar-thumb {
  background: #004d40;
  border-radius: 4px;
}

.card {
  background: #3a3a3a;
  border-radius: 12px;
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  user-select: none;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.card h3 {
  margin: 15px 10px 5px;
  font-size: 20px;
  color: #F3BD12;
}

.card p {
  padding: 0 10px 15px;
  font-size: 14px;
  color: #F3BD12;
}

/* Footer */
footer {
  background: #262626;
  color: #F3BD12;
  padding: 20px;
  text-align: center;
  font-weight: 600;
  user-select: none;
}

/* Main Content Section */
.page-wrapper {
  max-width: 1200px; /* Width of the content container */
  margin: 0 auto; /* Centers the content horizontally */
  padding: 0 15px; /* Padding to create spacing between content and borders */
  background-color: #ffffff; /* White background to simulate the "page" effect */
  border: 1px solid #ddd; /* Thin borders on all sides */
  border-radius: 8px; /* Optional: rounded corners for a clean look */
}

.content {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px 40px;
  text-align: left;
  background-color: white; /* White background inside content */
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Content Headings and Text */
.content h1 {
  font-size: 28px;
  color: #262626;
  margin-bottom: 25px;
}

.content h2 {
  margin-top: 30px; /* adds space above each H2 */
  margin-bottom: 15px; /* optional: space below H2 */
}

.content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #262626;
}

.content li {
    margin-top: 1px;
    margin-bottom: 1px;
}

/* Video Section */
.video-section {
  margin: 40px 0;
  padding: 0 20px;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(38, 38, 38, 0.9); /* Semi-transparent dark gray */
  color: #F3BD12;
  text-align: center;
  padding: 10px 0;
  z-index: 9999;
}







/* Tawan Riverside Menu */
#flipbook {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#flipbook .hard {
  background: #ccc;
  width: 100%;
  height: auto;
  display: inline-block;
  position: relative;
}

#flipbook img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

