/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

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

/* Base Styles */
body {
  font-family: 'Orbitron', sans-serif;
  background-color: #161616;
  color: #fff;
}

/* Container Layout */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative; /* Allows positioning hamburger */
 
}

/* NAVBAR */
.navbar {
  width: 100vw;
  background-color: #0e0e0e;
  position: fixed;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #1c1c1c;
}


.logo {
  color: #d2911a;
  font-size: 24px;
  font-weight: bold;
}
.logo img {
  height: 60px; /* Adjust as needed */
  width: auto;
  display: block;
}
.gold-gradient {
  font-family: 'Orbitron', sans-serif;
  font-size: 48px; /* Adjust as needed */
  font-weight: bold;
  background: linear-gradient(90deg, #f5d77a, #f7c14b, #f5a623, #f7c14b, #f5d77a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* If using logo image */
.logo-img {
  height: 36px;
  width: auto;
}

.logo-text {
  font-size: 24px;
  color: #f26522;
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #d2911a;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 26px;
  color: #f8f8f8;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 18px;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.hamburger.open {
  transform: rotate(90deg);
}

/* CTA Button (Shared) */
.cta-btn {
  background-color: #514736;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 90% 100%, 0% 100%);
  font-size: 14px;
  display: inline-block;
}

.cta-btn:hover {
  background-color: #765a10;
}



.hero-content {
  z-index: 2;
  max-width: 600px;
      position: relative;
    left: 30px;
    bottom: 20px;
}

.hero-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 500px;
  max-width: 100%;
  height: auto;
}

/* GHOST TEXT */
.ghost-text {
  position: absolute;
  top: 13%;
  left: 60%;
  transform: translateX(-50%);
  font-size: 100px;
  font-family: 'Orbitron', sans-serif;
  color: transparent;
-webkit-text-stroke: 1px rgba(255, 255, 255, 0.121);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  letter-spacing: 10px;
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    background-color: #0e0e0e;
    padding: 1rem;
    margin-top: 1rem;
  }

  .nav-links.active {
    display: flex;
  }


  .hamburger {
    display: block;
  }

  .ghost-text {
    font-size: 64px;
    left: 60% !important;
    top: 12% !important;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.073) !important;
    z-index: 0;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image img {
    width: 100%;
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 90vh;
  padding: 80px 5%;
  background-image: url("images/hero_rolls.webp");
  background-size: cover;
background-position: 75% center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
  z-index: 1;
  background-color: #000;
  
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero {
  background-size: contain; /* instead of cover */
  background-repeat: no-repeat;
  background-position: right center;
  position: relative;
  z-index: 1;
}

body{
    padding-top: 70px;
}

.cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: absolute;
  bottom: 0px; /* 👈 pull it below the hero */
  left: 5%;
  right: 5%;
  z-index: 3;
}
.card {
  background: rgba(255, 255, 255, 0.05); /* translucent glassy base */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); /* for Safari support */
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  flex: 1;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  text-align: left;
  color: #fff;
  position: relative;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.6);
}

.card h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}


.service-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0e0e0e;
  padding: 80px 5%;
  gap: 40px;
}

.service-content {
  flex: 1;
  position: relative;
  padding-top: 30px;
  z-index: 2;
}

.service-content .ghost-title {
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.05);
  font-weight: 700;
  pointer-events: none;
  user-select: none;
}

.service-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Orbitron', sans-serif;
}

.service-content p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}

.service-content .cta-btn {
  background-color: #a19c99;
  padding: 14px 24px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 90% 100%, 0% 100%);
  transition: background 0.3s ease;
}

.service-content .cta-btn:hover {
  background-color: #d0c9c5;
}

.service-image {
  flex: 1;
  display: flex;
  justify-content: center;
  top: 100px;
  position: relative;
}

.service-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .service-section {
    flex-direction: column;
    text-align: center;
    padding-top: 0px;
        padding-bottom: 30px;
  }

  .service-content .ghost-title {
    position: static;
    font-size: 40px;
    margin-bottom: 10px;
  }

  .service-image {
    margin-bottom: 30px;
  }

  .our-services {
    padding: 80px 5%;
    background-color: #0e0e0e;
    color: white;
    padding-top: 40px !important;
}
}


/* services */
.our-services {
  padding: 80px 5%;
  background-color: #0e0e0e;
  color: white;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid #222;
  padding-bottom: 20px;
}

.services-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 1400px; /* Increase width limit */
  margin: 0 auto;
  padding: 40px 5%;
padding-bottom: 20px;
  justify-items: stretch; /* makes each card fill its column */
}



.service-box {

  padding: 20px;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.service-box .icon {
  font-size: 32px;
  margin-bottom: 10px;
  display: inline-block;
}

.service-box h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: 'Orbitron', sans-serif;
}

.service-box p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 15px;
}

.details-btn {
  font-size: 13px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #a19d910f;
  padding: 6px 12px;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 90% 100%, 0% 100%);
  transition: background 0.3s ease;
}

.details-btn:hover {
  background-color: #d3531c00;
}

.all-btn {
  font-size: 14px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  background-color: #a19c99;
  padding: 12px 24px;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 90% 100%, 0% 100%);
}

.all-btn:hover {
  background-color: #dad4d0;
}

@media (max-width: 768px) {
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* images section */
.highlight-service {
  background-color: #0e0e0e;
  padding: 80px 5%;
  padding-top: 0px;
}

.highlight-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.service-text {
  flex: 1;
  color: #fff;
}

.service-text h2 {
  font-size: 36px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.4;
}

.ghost-title {
  font-size: 60px;
  color: rgba(255, 255, 255, 0.05);
  font-weight: 700;
  display: block;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.service-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #ccc;
  font-family: 'Roboto', sans-serif;
}

.service-features li::before {
  content: "⦿";
  position: absolute;
  left: 0;
  color: #c69e8c;
  font-size: 10px;
  top: 2px;
}

.service-text .cta-btn {
  background-color: #a19c99;
  padding: 14px 24px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 90% 100%, 0% 100%);
  transition: background 0.3s ease;
}

.service-text .cta-btn:hover {
  background-color: #f5c542;
}

.service-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 400px; /* LIMIT HEIGHT */
  overflow: hidden;
}

.service-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
/* contact us */
.contact-section {
  background-color: #0e0e0e;
  padding: 80px 5%;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;

}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #cab4a9;
  font-weight: bold;
  margin-top: 10px;
  gap: 10px;
}

.social-link img {
  width: autopx;
  height: 30px;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form button.cta-btn {
  align-self: flex-start;
  padding: 12px 24px;
  background-color: #a19c99;
  color: white;
  font-weight: bold;
  font-size: 14px;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 90% 100%, 0% 100%);
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.contact-form button.cta-btn:hover {
  background-color: #f5c542;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0e0e0e;
  padding: 30px 5%;
  text-align: center;
  color: #aaa;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}


/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}


/* gradient styles */

.btn-gold:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(137, 91, 17, 0.5);
}

.btn-outline-gold {
  background: none;
  border: 2px solid #f5c542;
  padding: 6px 17px;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  background-image: linear-gradient(90deg, #f5d77a, #f7c14b, #f5a623, #f7c14b, #f5d77a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background-color: rgba(245, 197, 66, 0.1);
  border-color: #f7c14b;
}

.btn-gold {
  background-image: linear-gradient(90deg, #f5d77a, #f7c14b, #f5a623);
  color: #000; /* or white, depending on your theme */
  padding: 12px 24px;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.btn-gold:hover {
  background-image: linear-gradient(90deg, #f7c14b, #f5a623, #f7c14b);
}

/* 📱 Responsive adjustments */
@media (max-width: 768px) {
  /* HERO CARDS: 2 per row */
  .cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    position: absolute;
    bottom: -40px;
    left: 5%;
    right: 5%;
    z-index: 3;
  }

  .card {
    flex: 0 0 calc(50% - 16px);
    padding: 16px;
    font-size: 14px;
  }

  .card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .card p {
    font-size: 13px;
    line-height: 1.4;
  }

  /* SERVICE GRID: 2 per row */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* hidden on desktop */
.desktop_only {
  display: block;
}

@media (max-width: 1024px) {
  .desktop_only {
    display: none !important;
  }
}

/* Default (desktop) */
.hero {
  min-height: 90vh;
}

/* Tablet & Mobile */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 60px 5%;
  }
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 22px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 13px;
    line-height: 1.4;
  }

  .cta-btn {
    font-size: 12px;
    padding: 8px 16px;
  }

  .hero-content {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  .cards {
    display: none !important;
    position: relative;
    top: -60px; /* Pulls cards up to overlap the hero */
    margin-bottom: -40px; /* Compensate for pull-up */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    z-index: 3;
  }

 
  .card {
    flex: 0 0 calc(50% - 12px);
    padding: 16px;
    font-size: 12px;
    margin-bottom: 12px;
  }

  .card h3 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .card p {
    font-size: 11px;
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
    .ghost-text {
        font-size: 39px;
        left: 55% !important;
        top: 10% !important;
        transform: translateX(-50%);
        letter-spacing: 5px;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.167) !important;
    }
}
@media (max-width: 768px) {
      .hero-content {
        max-width: 100%;
        top: 9px;
        left: -0px;
        text-align: left;
        padding-left: 10px;
    }

    .logo img {
  height: 70px; /* Adjust as needed */
  width: auto;
  display: block;
}

    .cta-btn {
        top: 3px;
        position: relative;
  background-color: #846021;
    }

     .mobile_only {
    display: none !important;
  }


    .hero{
        padding-bottom: 90px;
    }

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.241) 40%, rgba(0, 0, 0, 0.296));
  z-index: 1;
}

.container{
     padding-bottom: 0px;
  padding-top: 0px;
}

.top_book{
    right:45px;
    position: relative;
}
}

/* cta */
.cta-slider {
  width: 100%;
  overflow: hidden;
  background-color: #746c55; /* Gold background */
  color: #000000;
  padding: 12px 0;
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  position: relative;
  z-index: 1000;
    position: relative;   /* Ensures it scrolls with page */
  z-index: 0; 
}

.slider-text {
  display: inline-block;
  white-space: nowrap;
  animation: slide-left 15s linear infinite;
  font-size: 16px;
}

@keyframes slide-left {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }

  .service-image img{
    width: 100%;
    max-width: 400px;
    height: 300px;
    padding-bottom: 30px;
}
  .highlight-service {
  padding-bottom: 0px;
}

.service-content {
    padding-bottom:100px !important;
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
}


}

.nav-open .book-now-btn {
  display: none !important;
}



html, body {
  width: 100%;
 scroll-behavior: smooth;
 overflow-x: hidden !important;
}

.only_hidden_desktop {
  display: block;
}

@media (min-width: 1024px) {
  .only_hidden_desktop {
    display: none !important;
  }
}


/* Hide on mobile and tablets */
@media (max-width: 1024px) {
  .visible-desktop-only {
    display: none !important;
  }
}
.gallery-section {
  padding: 40px 5%;
}

.gallery-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  font-family: 'Orbitron', sans-serif;
}

.gallery-swiper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

@media (min-width: 769px) {
  .mobile-only {
    display: none;
  }
}

.gallery-scroll {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 5%;
}

.gallery-scroll img {
  flex: 0 0 auto;
  width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  scroll-snap-align: start;
}

/* Carousel base */
.gallery-section {
  padding: 40px 5%;
  text-align: center;
}

.carousel {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  transition: opacity 0.5s ease;
}

.carousel-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  z-index: 2;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}
.image-viewer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  overflow: auto;
}

.image-viewer img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}

.image-viewer .close-btn {
  position: fixed;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  z-index: 10000;
}

.image-viewer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
}

.image-viewer img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  padding: 5px 12px;
}
.footer-credit {
  font-size: 1.1rem; /* Increase overall size; adjust as needed */
}

.ample-aid-link {
  text-decoration: none;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  text-transform: uppercase; /* Make AMPLE AID uppercase */
  font-size: 1.2rem; /* Slightly larger than surrounding text */
}

