* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
}

/* HERO SECTION */
.hero {
  width: 100%;
  height: 85vh;
  position: relative;
  overflow: hidden;
  border-bottom: 0px solid rgba(0, 0, 0, 0.5);
}


.hero-bg {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out; /* same feel as your bottom slider */
  z-index: 0;
}

.hero-bg.active {
  opacity: 1;
}


.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-text,
nav {
  position: relative;
  z-index: 2;
}

/* NAVBAR */
nav {
  width: 100%;
  display: flex;
  background-color: rgba(255, 255, 255, 0.05);
  justify-content: space-between;
  align-items: center;
  padding: 25px 50px;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

nav .logo {
  font-size: 28px;
  font-weight: 50;
  color: white;
  letter-spacing: 1px;
}

.logo img {
    height: 50px;     /* adjust size */
    width: auto;      /* keeps proportions */
    margin-right: 10px; 
    vertical-align: middle;
}


nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: 0.3s ease;
}

nav ul li a:hover {
  color: #e0e0e0;
}

/* HAMBURGER (for mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger div {
  width: 28px;
  height: 3px;
  background: white;
}

/* HERO TEXT */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
}

.hero-text h1 {
  font-size: 70px;
  font-weight: 10;
  margin-bottom: 20px;
  color:rgba(255, 255, 255, 0.8);
  text-shadow: 0px 0px 2px rgba(0,0,0,0.09);
}

.hero-text p {
  font-size: 19px;
  color:rgba(255, 255, 255, 0.8);
  text-shadow: 0px 0px 2px rgba(0,0,0,0.0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 80px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
  }

  nav ul.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-text h1 {
    font-size: 45px;
  }
}




/* Slider Container */
.image-slider {
    
    position: relative;
    background: url(/images/stone.png);
    align-content: center;
    padding: 100px;
    width: 100%;
    height: 130vh;
    overflow: hidden;
}




/* All slides */
.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Slide Images */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slide Text */
.slide-text {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: white;
    font-size: clamp(25px, 4.0vw, 41px);
    font-weight: 500;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.5s ease, transform 1s ease;
}

/* Active text animation */
.slide.active .slide-text {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation arrows */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 9px;
    transition: background 0.3s ease;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}


.prev {
    left: 90px;
}

.next {
    right: 90px;
}



/* ------------------ PHONE VIEW (max-width: 600px) ------------------ */
@media (max-width: 600px) {

    .image-slider {
        padding: 20px;
        height: auto;                 /* remove 130vh on phones */
        min-height: 100vh;            /* still fills screen */
        background-size: cover;
        background-position: center;
        overflow: visible;
        display: block;               /* stack everything vertically */
    }

    /* Slides container becomes smaller and readable */
    .slides {
        width: 100%;
        height: auto;
        position: relative;
    }

    /* Each slide fits the phone width */
    .slide {
        width: 100%;
        height: auto;
        position: relative;           /* disable absolute stacking */
        opacity: 1 !important;        /* show only active through JS */
        display: none;                /* hide inactive ones */
    }

    .slide.active {
        display: block;               /* show only active slide */
    }

    /* Images scale properly */
    .slide img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Text becomes centered and smaller */
    .slide-text {
        bottom: 20px;
        left: 20px;
        right: 20px;
        font-size: 22px;
        text-align: left;
        transform: translateY(20px);
    }

    /* Navigation arrows */
    .slider-btn {
        font-size: 1.8rem;
        padding: 8px 12px;
        top: unset;
        bottom: 30px;                 /* move arrows below the image */
        transform: none;
        background: rgba(0, 0, 0, 0.15);
    }

    .prev {
        left: 20px;
    }

    .next {
        right: 20px;
    }
}


.button {
  height: 50px;
  width: 100%;
  padding-top: 20px;
  align-items: center;
  justify-content: center;
}

.book-button {
  padding: 13px;
  font-size: 1rem;
  width: 100%;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  color: #fff;
  transition: background 0.3s;
  background-color: rgba(0, 247, 255, 0.9);
  color: white;
}

.book-button:hover {
  background-color: rgba(85, 27, 0, 0.9);
}


footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px 0;
}
.social-icons a {
  color: white;
  font-size: 22px;
  transition: 0.3s;
}
.social-icons a:hover {
  color: rgb(0, 236, 253);
  transform: scale(1.1);
}