/* Reset & normalize */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased; /* smoother text rendering */
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Poppins', sans-serif;
 background: url('images/OuttaLifeStudios-05786.jpg') center center / cover no-repeat fixed;
  color: #fff;
  overflow-x: hidden;
  position: relative;

}

html {
  scroll-behavior: smooth;
}

/* Fullscreen overlay */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0e0e0eaf; /* dark background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000; /* above everything */
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Loader animation (circle spinner) */
.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #000000; /* accent */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hidden state */
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Hero section */
.hero {
  position: relative;
  height: 100vh;
  width: 100vw; /* lock to viewport width */
  background: url('images/Copilot_20251217_225513.png') center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Overlay layer */
.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0); /* Adjust opacity here */
  z-index: 0;
}

/* Center logo */
.center-logo {
  position: relative;
  z-index: 1;
  transform: translateY(40px); /* moves logo down consistently */
}

.center-logo img {
  height: 700px;
  width: auto;
  display: block; /* removes inline spacing inconsistencies */
}

/* Social media icons */
.social-icons {
  position: fixed;
  bottom: 10rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
}

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

.social-icons a {
  color: white;
  transition: color 0.3s ease;
}

.social-icons.black a {
  color: #000 !important;
}

/* Scroll to hero button */
.scroll-to-hero {
  position: fixed;
  bottom: 5rem; /* Below social icons */
  right: 1rem;
  width: 40px;
  height: 40px;
  background-color: #f0292900;
  color: rgb(136, 93, 0);
  border-radius: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.scroll-to-hero i {
  font-size: 24px; /* Increase this value to make the arrow bigger */
}

.scroll-to-hero:hover {
  background-color: #ffffff00;
  color: #dfab01;
  transform: scale(1.1);
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff00;
  border-radius: 50px;
  padding: 0.3rem 1rem;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  width: auto;
  max-width: 90%;
  z-index: 999;
}

/* Nav list */
.bottom-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

/* Nav links */
.bottom-nav a {
  color: #ececec;
  text-decoration: none;
  font-weight: 500;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.bottom-nav a:hover {
  background-color: #ffffff;
  color: #000000;
}

.bottom-nav.black a {
  color: #000;
}

.bottom-nav.black a:hover {
  background-color: #000;
  color: #fff;
}

/* this is for the black and whit function  */


.social-icons a {
  color: white;
  transition: color 0.3s ease;
}

.social-icons.black a {
  color: #000 !important;
}

.bottom-nav a {
  color: #ececec;
  transition: color 0.3s ease;
}

.bottom-nav.black a {
  color: #000;
}

.bottom-nav.black a:hover {
  background-color: #000;
  color: #fff;
}














/* Hamburger icon */
.hamburger {
  position: absolute;
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1000;
  bottom: 4rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: rgb(255, 255, 255);
  border-radius: 2px;
}

/* Mobile menu */
.mobile-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0; /* hidden by default */
  background-color: #000000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: height 0.4s ease;
  z-index: 999;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  margin: 1rem 0;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.4s ease;
}

/* When menu is open */
.mobile-menu.show {
  height: 52vh; /* covers 40% of screen height */
}

/* Animate links flowing in */
.mobile-menu.show a {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive rules */
@media (max-width: 768px) {
  .hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    background: url('images/Copilot_20251217_225513.png') center center / 150% no-repeat; /* Zoom in */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* Center logo */
  .center-logo {
    z-index: 1;
    transform: translateY(16%); /* consistent universal positioning */
    margin-left: 6%;
    margin-bottom: 6%;
  }

  .center-logo img {
    height: 400px;
    width: auto;
    display: block;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.show {
    display: flex;
  }

  .bottom-nav {
    display: none; /* Hide bottom nav on mobile */
  }
}






/* INTRO SECTION */



/* Base fluid typography and spacing */
.intro {
  position: relative;
  padding: 6rem 2rem;
  background-color: #ffffff;
  color: #000000;
  text-align: center;
}

.intro-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.intro-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.intro-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #404040;
  margin-bottom: 2rem;
}

.intro-text {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.8;
  color: #000000;
}

/* Gallery responsiveness */
.intro-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.intro-gallery img {
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 2 / 1;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  object-fit: cover;
}

.intro-gallery img:hover {
  transform: scale(1.05);
}

/* Decorative palm leaves */
.intro-decor {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 0;
}

.intro-decor img {
  height: 100%;
  max-height: 400px;
  width: auto;
  object-fit: contain;
  transform: translateX(20px);
}

/* Media Queries for smaller screens */
@media (max-width: 768px) {
  .intro {
    padding: 4rem 1rem;
  }

  .intro-title {
    font-size: 2rem;
  }

  .intro-subtitle {
    font-size: 1.2rem;
  }

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

  .intro-gallery {
    gap: 1.5rem;
  }

  .intro-decor img {
    max-height: 300px;
    transform: translateX(10px);
    opacity: 0.5;
  }
}

@media (max-width: 480px) {
  .intro-title {
    font-size: 1.8rem;
  }

  .intro-subtitle {
    font-size: 1rem;
  }

  .intro-text {
    font-size: 0.95rem;
  }

  .intro-gallery img {
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }

  .intro-decor img {
    max-height: 200px;
    transform: translateX(10px);
    opacity: 0.5;
  }
}











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


/* Section wrapper heading */
.section-wrapper {
  width: 100%;
  background-color: #fff;
  padding: 2rem 1rem;
}

.section-title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  text-align: center;
  color: #000000;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}


/* Section layout */
.section-split {
  display: flex;
  flex-direction: row;          /* foliage first, text second */
  align-items: flex-start;
  justify-content: center;
  gap: 6rem;
  padding: 4rem 2rem;
  flex-wrap: wrap;
  background-color: #fff;
  width: 100%;
}

/* Foliage stack */
.section-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  flex: 1 1 300px;
}

.foliage-segment {
  width: 100%;
  max-width: 500px;
  height: 80px;
  border-radius: 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Staggered left margins */
.segment-1 { margin-left: -20; background-image: url('/images/newstack1.jpg'); }
.segment-2 { margin-left: 20px; background-image: url('/images/newstack3.jpg'); }
.segment-3 { margin-left: -30px; background-image: url('/images/newstack5.jpg'); }
.segment-4 { margin-left: -60px; background-image: url('/images/newstack2.jpg'); }
.segment-5 { margin-left: 40px; background-image: url('/images/newstack4.jpg'); }

/* Text block */
.section-right {
  flex: 1 1 400px;
  max-width: 50%;
  color: #2c2c2c;
  padding: 1rem;

  display: flex;               /* make it a flex container */
  flex-direction: column;      /* stack heading + description vertically */
  align-items: center;         /* center horizontally */
  justify-content: center;     /* center vertically */
  text-align: center;          /* center text content */
}

.intro-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #404040;
  margin-bottom: 2rem;
}

.section-description {
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  line-height: 1.6;
  color: #404040;
  max-width: 90%;              /* keep text nicely contained */
  margin-bottom: 1rem; /* adds breathing room between texts */
}


/* Tablet responsiveness */
@media (max-width: 1024px) {
  .section-split {
    gap: 3rem;
    padding: 3rem 1.5rem;
  }

  .section-right {
    max-width: 100%;
    padding: 1rem;
  }

  .section-description {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* Mobile responsiveness (iPhone 8 and similar ~375px width) */
@media (max-width: 480px) {
  .section-split {
    flex-direction: column;     /* stack foliage above text */
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .section-left {
    align-items: center;        /* center foliage on mobile */
    gap: 1rem;
    width: 100%;
  }

  .foliage-segment {
    width: 100%;
    max-width: 320px;           /* fit iPhone 8 width */
    height: 80px;               /* keep same height as desktop */
    /* ❌ remove margin-left override so stagger remains */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .section-right {
    max-width: 100%;
    padding: 1rem 0;
    display: block;
    text-align: left;
  }

  .intro-subtitle {
    font-size: 1.4rem;
    text-align: center;
  }

  .section-heading {
    font-size: 1.6rem;
    text-align: center;
  }

  .section-description {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: justify;
  }
}



.image-breaker {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.parallax-bg {

  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; /* taller than container for movement */
  transform: translateY(0);
  will-change: transform;
  z-index: -1;
}

.overlay-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding-top: 25vh;
}





.luxury-grid {
  padding: 4rem 2rem;
  background-color: #ffffff;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 2rem;
}

.grid-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: #3e3e3e;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Static image blocks */
.grid-item.image.static {
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

/* Reveal blocks */
.grid-item.reveal .text-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  background-color: #552f009f;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.grid-item.reveal .hover-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.grid-item.reveal:hover .hover-image {
  opacity: 1;
}

.grid-item.reveal:hover .text-overlay {
  opacity: 0;
}

/* Mobile & tablet: horizontal scroll */
@media (max-width: 768px) {
  .grid-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
  }

  .grid-item {
    flex: 0 0 80%;
    height: 300px;
    scroll-snap-align: center;
  }


}




.chef-section {
  position: relative;
  background-color: #fff; 
  color: #2c2c2c;
  padding: 6rem 2rem;
}

.chef-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.chef-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.chef-message {
  flex: 1 1 500px;
  text-align: left;
}

.chef-title {
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #000;
}

.chef-text {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #404040;
}

.chef-signature {
  margin-top: 2rem;
  font-style: italic;
  font-weight: 600;
  color: #000;
}


/* Decorative palm leaves */
.chef-decor {
  position: absolute;
  top: 0;
  right: 0;
  height: 80%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 0;
}

.chef-decor img {
  height: 80%;
  max-height: 600px;
  width: auto;
  object-fit: contain;
  transform: translateX(20px);
}




/* Bottom-left decor */
.chef-decor-left {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
  z-index: 0;
}

.chef-decor-left img {
  height: 100%;
  max-height: 400px;
  width: auto;
  object-fit: contain;
  transform: translateX(-20px);
  opacity: 0.8;
}







/* Tablet responsiveness */
@media (max-width: 1024px) {
  .chef-container {
    gap: 2rem;
  }
  .chef-message {
    text-align: center;
  }

      .chef-decor img {
    max-height: 200px;
    transform: translateX(10px);
    opacity: 0.5;
  }

      .chef-decor-left img {
    max-height: 200px;
    transform: translateX(10px);
    opacity: 0.5;
  }
}

/* Mobile responsiveness */
@media (max-width: 480px) {
  .chef-container {
    flex-direction: column;
    text-align: center;
  }
  .chef-image img {
    max-width: 300px;
  }

    .chef-decor img {
    max-height: 200px;
    transform: translateX(10px);
    opacity: 0.5;
  }

      .chef-decor-left img {
    max-height: 200px;
    transform: translateX(10px);
    opacity: 0.5;
  }


}







.ambersunset-footer {
  background-color: #281100;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  padding: 60px 30px;
  border-top: 1px solid #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Branding */
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
.footer-logo {
  height: 200px;
  width: auto;
  margin-bottom: 0px;
}
.footer-tagline {
  font-size: 1.1rem;
  color: #a88e5c;
  margin-bottom: 15px;
}
.footer-reserve-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #bfa133;
  color: #000;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.footer-reserve-btn:hover {
  background-color: #d7b94e;
  box-shadow: 0 0 12px rgba(191,161,51,0.4);
}

/* Contact Info */
.footer-contact {
  margin-bottom: 20px;
}
.footer-contact p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact a {
  color: #a88e5c;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #ffffff;
}

/* Socials */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.footer-socials a {
  font-size: 16px;
  color: #a88e5c;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-socials a:hover {
  color: #ffffff;
}

/* Copyright */
.footer-copy {
  margin-top: 30px;
  font-size: 14px;
  color: #777;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-socials {
    flex-direction: column;
    gap: 15px;
  }
  .footer-reserve-btn {
    padding: 8px 16px;
    font-size: 0.95rem;
  }
  .footer-contact p {
    font-size: 15px;
  }
  .footer-tagline {
    font-size: 1rem;
  }

}







/* Staggered left margins

.segment-1 { margin-left: -20; background-image: url('images/WhatsApp\ Image\ 2025-12-17\ at\ 22.26.23.jpeg'); }
.segment-2 { margin-left: 20px; background-image: url('images/Original.jpg'); }
.segment-3 { margin-left: -30px; background-image: url('images/intro3.jpg'); }
.segment-4 { margin-left: -60px; background-image: url('images/intro2.jpg'); }
.segment-5 { margin-left: 40px; background-image: url('images/intro3.jpg'); }


 */