/* style.css */

@font-face {
  font-family: 'Tan Mon Cheri';
  src: url('./fonts/tan-mon-cheri.woff2') format('woff2'),
       url('./fonts/tan-mon-cheri.woff') format('woff'),
       url('./fonts/tan-mon-cheri.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

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

body, html {
  height: 100%;
  font-family: 'Source Sans Pro', sans-serif;
  scroll-behavior: auto !important;
}

body{
  overflow-y: hidden;
}


#page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Glassmorphism style */
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999 !important;

  /* Start off-screen above */
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

#page-transition.active {
  transform: translateY(0);
  opacity: 1;
}

#page-transition.fade-up {
  /* Slide up to hide */
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.logo-wrapper img {
  width: 340px;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Firefox */
html {
  z-index: 99 !important;
  scrollbar-color: #367588 black; /* thumb | track */
  scrollbar-width: thin;                 /* auto | thin | none */
}

/* Chrome, Edge, Safari (WebKit) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #367588;
  border-radius: 999px;
  border: 2px solid transparent; /* creates a gap around thumb */
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #2e6574; /* slightly darker on hover */
}



/* Circle Cursor Styling */
.cursor-circle {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 1.0);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  backdrop-filter: blur(4px);
  mix-blend-mode: difference;
}

@media (max-width: 1024px) {
  .cursor-circle {
    display: none;
  }
}

/* Navbar container */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 1rem 2rem;
  overflow: hidden;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  background: transparent;
}

/* When scrolled */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Navbar layout */
.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

/* Menu toggle */
.menu-toggle {
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

/* Centered logo */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}

.navbar.scrolled .logo {
  filter: brightness(0) invert(0);
}

.navbar.scrolled .menu-toggle {
  color: black;
}

/* User icon */
.user-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding-left: 0.5rem;
}

.user-icon .user-svg {
  stroke: white;
  transition: stroke 0.3s ease;
}

.navbar.scrolled .user-icon .user-svg {
  stroke: black;
}

/* ✅ Mobile responsiveness */
@media (max-width: 768px) {
  .logo {
    width: 120px;
  }

  .menu-toggle {
    font-size: 1.3rem;
  }

  .user-icon {
    padding-right: 0.3rem;
  }

  .navbar-content {
    padding: 0 0.5rem;
  }
}

.word-animation-wrapper {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

#word3 {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Hero Section */
.hero-section {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/waterf (12).avif') center center / cover no-repeat;
  position: relative;
  animation: zoomOut 2s ease-out forwards;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}
@media (max-width: 768px) {
  .hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('img/waterf (4).avif') center center / cover no-repeat;
  }
}
.hero-section {
  overflow: hidden;
}
.hero-content {
  animation: zoomOut 2s ease-out forwards;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.text-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-word {
  font-size: 7rem;
  font-family: 'Tan Mon Cheri', serif;
  font-weight: normal;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  line-height: 1.1;
  letter-spacing: 1px;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-word {
    font-size: 5.2rem;
    text-align: left;
  }

  .navbar-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .text-container {
    padding-top: 120px;
  }
}

@media (max-width: 468px) {
  .hero-word {
    font-size: 3.2rem;
    text-align: left;
  }
}


/* Our Story Section */
.our-story {
  padding: 1rem 2rem;
  background: #f9f9f9;
  color: #111;
  font-family: 'Source Sans Pro', sans-serif;
}

.story-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
    opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease-out;
  animation: fadeIn 1.2s ease forwards;
}

.story-wrapper.animate {
  opacity: 1;
  transform: translateY(0);
}
.story-text {
  flex: 1;
  min-width: 300px;
}

.story-title {
  font-size: 3rem;
  font-family: 'Tan Mon Cheri', serif;
  margin-bottom: 1.2rem;
  color: #111;
}

.story-para {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.story-image {
  flex: 1;
  min-width: 300px;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .story-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .story-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .story-para {
    text-align: center;
  }

  .story-image {
    text-align: center;
  }
}



.mv-slider {
  background: #f9f9f9;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
  font-family: 'Source Sans Pro', sans-serif;
}

.mv-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
  color: #163838;
  font-size: 1.5rem;
}

.mv-actions button {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #367588;
  cursor: pointer;
}

.mv-border {
  height: 2px;
  width: 100%;
  background: #367588;
  margin: 10px 0;
}

.mv-slides {
  display: flex;
  width: 200%;
  transition: transform 0.8s ease-in-out;
}

.mv-slide {
  width: 50%;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s ease;
  padding: 2rem;
  display: none;
}

.mv-slide.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.mv-title {
  font-size: 2rem;
  color: #163838;
  font-family: 'Tan Mon Cheri', serif;
  margin-bottom: 1.5rem;
}

.mv-content {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.mv-item {
  max-width: 220px;
  text-align: center;
}

.mv-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.mv-item p {
  font-size: 0.95rem;
  color: #444;
}







.activities-section {
  padding: 4rem 2rem;
  background: #ffffff;
  text-align: center;
  z-index: 9999 !important;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: space-between;
  min-height: 100vh; /* Ensures the section fills the screen */
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem; /* Adds spacing before CTA */
  flex-grow: 1;
}
@media (max-width: 600px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .activities-section{
    padding: 0.5rem;
  }
}


.activities-header h2 {
  font-family: 'Tan Mon Cheri', cursive;
  font-size: 2.8rem;
  color: black;
  margin-bottom: 0.5rem;
}

.activities-header p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 3rem;
  color: #444;
}


.activity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.activity-item:hover {
  transform: translateY(-6px);
}

.activity-img-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Image */
.activity-img-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
}

/* Overlay Text */
.overlay-text {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: left;
  text-align: left;
  align-items: left;
  color: #fff;
  font-family: 'Tan Mon Cheri', cursive;
  font-size: 1.2rem;
  font-weight: 100;
  transition: left 0.4s ease;
  pointer-events: none;
  border-radius: 12px;
}

.activity-img-wrapper:hover img {
  filter: brightness(70%);
  transform: scale(1.05);
}

.activity-img-wrapper:hover .overlay-text {
  left: 0;
}

.activity-item h3 {
  font-family: 'Tan Mon Cheri', cursive;
  font-size: 1.5rem;
  color: #367588;
  text-align: left;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
}

.activity-item p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  text-align: left;
  color: #555;
  max-width: 90%;
}

/* CTA at the bottom */
.activities-cta {
  margin-top: 1rem;
  text-align: center;
}

.activities-btn {
  padding: 14px 36px;
  background-color: transparent;
  color: #306844;
  font-size: 1.05rem;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  border-bottom: 2px solid #306844;
  border-radius: 6px;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.25s ease;
}

.activities-btn:hover {
  background-color: #306844;
  color: #fff;
  transform: translateY(-2px);
}


.activities-note {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .activities-header h2 {
    font-size: 2rem;
  }

  .activities-header p {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .activity-img-wrapper img {
    height: 280px;
  }

  .overlay-text {
    font-size: 1rem;
  }

  .activity-item h3 {
    font-size: 1rem;
  }

  .activity-item p {
    font-size: 0.95rem;
  }

  .activities-btn {
    font-size: 1.1rem;
    padding: 12px 28px;
  }

  .activities-note {
    font-size: 0.95rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .activities-header h2 {
    font-size: 1.6rem;
  }

  .activity-img-wrapper img {
    height: 230px;
  }

  .activity-item h3 {
    font-size: 0.95rem;
  }

  .activity-item p {
    font-size: 0.8rem;
  }

  .activities-btn {
    font-size: 0.95rem;
    padding: 10px 34px;
  }

  .overlay-text {
    font-size: 0.9rem;
  }

  .activities-cta {
    margin-top: 0.5px;
  }
}


/*Footer styling*/
.pro-footer {
    background: linear-gradient(to right,#163838, white, #163838);
  color: #d6eae9;
  font-family: 'Source Sans Pro', sans-serif;
  padding: 0rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.pro-footer-inner {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.pro-footer-brand {
  text-align: center;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 0rem;
}

.tagline {
  font-family: 'Tan Mon Cheri', serif;
  font-size: 2.1rem;
  color: #000000;
}

.pro-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-box h4 {
  font-size: 1.2rem;
    font-family: 'Tan Mon Cheri', serif;
    font-weight: 100;
  color: #000000;
  margin-bottom: 1rem;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-box ul li i {
  color: #367588;
}

.footer-box a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-box a:hover {
  color: #367588;
}

.region-flag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
  font-size: 1rem;
  color: #000000;
}

.region-flag img {
  width: 24px;
  height: 20px;
  border-radius: 3px;
  object-fit: cover;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 4px;
  outline: none;
  font-size: 0.95rem;
}

.newsletter-form button {
  background-color: #367588;
  color: #000000;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background-color: #2c5f5f;
}

.footer-box select {
  margin-top: 0.6rem;
  padding: 0.4rem 1rem;
  border-radius: 5px;
  border: none;
  background-color: #000000;
  color: #163838;
}

.footer-socials {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  color: #000000;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.footer-socials a:hover {
  color: #367588;
  transform: scale(1.2);
}

.pro-footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  padding-top: 1.5rem;
  color: #000000;
}

.pro-footer-bottom span {
  font-family: 'Tan Mon Cheri', serif;
  color: #000000;
}

/* Responsive */
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
    gap: 0.6rem;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}


.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 56, 56, 0.6);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: white;
  transform: scale(0);
  transform-origin: top left;
  transition: transform 0.5s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
   overflow-y: auto; 
}

/* Divider Line */
.menu-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0rem 0rem;
}

/* Paradise Lost Text */
.menu-branding {
  margin-top: auto;
  text-align: center;
  padding: 0rem 0.5rem;
}

.menu-branding h1 {
  font-family: 'Tan Mon Cheri', serif;
  font-size: clamp(2.5rem, 7vw, 6rem);
  color: white;
  opacity: 0.15;
  font-weight: 100;
  letter-spacing: 2px;
  user-select: none;
  line-height: 1;
}


.fullscreen-menu.active {
  transform: scale(1);
}

/* Menu Header */
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.menu-logo {
  height: 60px;
  transform: scale(2.5); /* Zoom in */
  filter: invert(1);
  transition: transform 0.3s ease;
}

.close-btn {
  font-size: 1.8rem;
  cursor: pointer;
}

.menu-content {
  padding: 0.5rem;
  animation: slideIn 1.6s ease forwards;
  opacity: 0;
  flex: 1;
}

.fullscreen-menu.active .menu-content {
  animation: slideIn 1.6s ease forwards;
}

@keyframes slideIn {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Menu Columns */
.menu-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 0rem;
  justify-content: space-between;
}

.menu-section{
  margin: 0;
}

.menu-section h4 {
  font-family: 'Tan Mon Cheri', serif;
  margin-bottom: 0rem;
  font-weight: 100;
  color: #367588;
}

.menu-section ul {
  list-style: none;
  padding: 0;
}

.menu-section ul li {
  margin-bottom: 0.3rem;
}

.menu-section ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.menu-section ul li a:hover {
  color: #367588;
}

.contact-social p {
  margin-bottom: 0.5rem;
}

.social-icons a {
  margin-right: 1rem;
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #367588;
}

/* Responsive */
@media (min-width: 992px) {
  .fullscreen-menu {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .menu-columns {
    flex-direction: column;
    gap: 2rem;
  }
}

.menu-cta {
  margin-top: 1rem;
}

.menu-cta a {
  color: #fcfcfc;
  font-weight: 100;
  text-decoration: none;
  transition: color 0.3s ease;
  border: none;
  display: inline-block;
}

.menu-cta a:hover {
  color: #367588;
  text-decoration: none;

}
