* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0e0e0e;
    color: white;
  }
  
  /* HERO */
  .hero {
    height: 100vh;
    background: url("assets/background/hero-bg.jpg") center/cover no-repeat;
    position: relative;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    margin: 0;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin: 15px 0;
  }

  .hero {
    animation: zoomBg 20s ease-in-out infinite alternate;
  }

  @keyframes zoomBg {
    from {
      background-size: 100%;
    }
    to {
      background-size: 110%;
    }
  }
  
  /* BUTTON */
  .btn {
    padding: 14px 40px;
    font-size: 1rem;
    background: #ff4d4d;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .btn:hover {
    background: #ff3333;
  }
  
  /* PORTFOLIO */
  .portfolio {
    padding: 80px 10%;
  }
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
  
  .gallery img {
    width: 100%;
    height: 260px;           /* controls tile height */
    object-fit: cover;      /* prevents stretching */
    border-radius: 10px;
    display: block;
    transition: transform 0.3s ease;
  }

  /* CLICKABLE CURSOR */
  .gallery img {
    cursor: pointer;
  }
  
  /* LIGHTBOX */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  
  .lightbox.active {
    display: flex;
  }
  
  .lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
  }
  
  @keyframes zoomIn {
    from {
      transform: scale(0.85);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
  }  
  
  .gallery img:hover {
    transform: scale(1.05) rotate(1deg);
  }
  
  /* MODAL */
  .modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10;
  }
  
  .modal.active {
    display: flex;
  }
  
  .booking-card {
    background: #121212;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    position: relative;
    animation: fadeUp 0.4s ease;
  }
  
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
  }
  
  .booking-card h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  input,
  select,
  textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 6px;
    border: none;
  }
  
  textarea {
    resize: none;
    height: 80px;
  }
  
  .booking-card button {
    width: 100%;
    padding: 12px;
    background: #ff4d4d;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
  }
  
  #confirmation {
    text-align: center;
    margin-top: 10px;
    color: #6aff6a;
  }
  
/* INTRO ANIMATION STATES */
.hero-content h1,
.hero-content p,
.hero-content .btn {
  opacity: 0;
  transform: translateY(40px);
}

/* ACTIVE STATE */
.hero-content.show h1 {
  animation: fadeSlideUp 0.8s ease forwards;
}

.hero-content.show p {
  animation: fadeSlideUp 1s ease forwards;
  animation-delay: 0.2s;
}

.hero-content.show .btn {
  animation: fadeSlideUp 1.2s ease forwards;
  animation-delay: 0.4s;
}

/* KEYFRAME */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

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

/* FOOTER */
.footer {
  padding: 60px 10%;
  text-align: center;
  background: #0a0a0a;
}

.footer h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.footer p {
  color: #aaa;
  margin-bottom: 20px;
}

/* SOCIAL LINKS */
.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.socials a {
  text-decoration: none;
  color: white;
  padding: 10px 18px;
  border: 1px solid #444;
  border-radius: 30px;
  transition: 0.3s;
}

.socials a i {
  font-size: 1.2rem;
}

/* HOVER EFFECT */
.socials a:hover {
  background: #ff4d4d;
  border-color: #ff4d4d;
  transform: translateY(-3px);
}

/* COPYRIGHT */
.footer .copyright {
  font-size: 0.9rem;
  color: #666;
}

/* LIGHTBOX LAYOUT */
.lightbox-content {
  display: flex;
  gap: 30px;
  max-width: 1000px;
  width: 90%;
  align-items: center;
}

/* IMAGE */
.lightbox-content img {
  width: 60%;
  border-radius: 10px;
}

/* INFO PANEL */
.lightbox-info {
  width: 40%;
  color: white;
}

.lightbox-info h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.lightbox-info p {
  color: #ccc;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .lightbox-content {
    flex-direction: column;
  }

  .lightbox-content img {
    width: 100%;
  }

  .lightbox-info {
    width: 100%;
    text-align: center;
  }
}
