body {
  background: #000;
  color: #fff;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* PAGE FADE */
body {
  opacity: 0;
  transition: opacity 0.4s ease;
}

body.fade-in {
  opacity: 1;
}

body.fade-out {
  opacity: 0;
}

/* NAVBAR HOVER */
/* NAV LINK UNDERLINE EFFECT */
.nav-link {
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #eab308; /* yellow */
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #facc15;
}


/* HERO ANIMATION */
.hero-title { animation: fadeUp 1s ease-out forwards; }
.hero-sub { animation: fadeUp 1.5s ease-out forwards; }

@keyframes fadeUp {
  from {opacity:0; transform: translateY(30px);}
  to {opacity:1; transform: translateY(0);}
}

/* CARD HOVER */
.card {
  transition: 0.3s ease;
}
.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 25px rgba(201,161,74,0.3);
}

/* .hero-title */
/* =========================
   SECTION SCOPED ANIMATION
   (same style as contactsPage)
   ========================= */

.animated-section {
  opacity: 0;
  transform: translateY(25px);
  animation: sectionFadeUp 0.8s ease-out both;
}

/* ANIMATION */
@keyframes sectionFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* SHAKING MODAL */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.shake {
  animation: shake 0.6s ease-in-out;
}

/* FIXED MARQUEE */
@keyframes slideRTL {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.animate-slide-rtl {
  display: inline-block;
  animation: slideRTL 15s linear infinite;
}

/* TODAY HIGHLIGHT */
.today-highlight {
  background: rgba(201, 161, 74, 0.3);
  border-left: 4px solid #FFD700;
  color: #FFD700;
  font-weight: bold;
}

/* HEADER GRADIENT FIX */
header {
  position: relative;
}

header::before,
header::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
}

header::before {
  left: 0;
  background: linear-gradient(to right, black, transparent);
}

header::after {
  right: 0;
  background: linear-gradient(to left, black, transparent);
}

/* GALLERY.HTML */

/* IMAGE ENTRY ANIMATION */
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: fadeLeft 0.8s ease forwards;
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* STAGGER EFFECT */
.fade-left:nth-child(1) { animation-delay: 0.1s; }
.fade-left:nth-child(2) { animation-delay: 0.2s; }
.fade-left:nth-child(3) { animation-delay: 0.3s; }
.fade-left:nth-child(4) { animation-delay: 0.4s; }
.fade-left:nth-child(5) { animation-delay: 0.5s; }
.fade-left:nth-child(6) { animation-delay: 0.6s; }
.fade-left:nth-child(7) { animation-delay: 0.7s; }
.fade-left:nth-child(8) { animation-delay: 0.8s; }


/* LIGHTBOX ANIMATIONS */
#lightboxImg {
  transform: scale(0.5) rotate(-5deg);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.45s ease;
}

/* ACTIVE OPEN STATE */
#lightbox.show #lightboxImg {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

/* CLOSING STATE */
#lightbox.closing #lightboxImg {
  transform: scale(0.5) rotate(180deg);
  opacity: 0;
}



/* CONTACTS.HTML */
/* =========================
   CONTACT PAGE SCOPED STYLES
   ========================= */

#contactsPage .contact-card {
  animation: contactsFadeUp 0.8s ease-out both;
}

#contactsPage .contact-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(201,161,74,0.3);
}

#contactsPage .contact-btn {
  transition: all 0.3s ease;
}

#contactsPage .contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

#contactsPage .contact-icon {
  transition: all 0.3s ease;
}

#contactsPage .contact-icon:hover {
  transform: scale(1.15);
  color: #facc15;
}

/* IMAGE EFFECT ONLY FOR CONTACT PAGE */
#contactsPage .contact-image {
  transition: transform 0.7s ease;
}

#contactsPage .contact-image:hover {
  transform: scale(1.08);
}

/* ANIMATION */
@keyframes contactsFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BOOK.HTML */
#serviceModal {
  transition: transform 0.35s ease-in-out;
}

/* ✨ PREMIUM GLOW EFFECT */
.service-card {
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.25),
              0 0 50px rgba(255, 215, 0, 0.15);
}

/* ICON STYLE */
.icon-box {
  width: 50px;
  height: 50px;
  margin: auto;
  margin-bottom: 10px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.4);
  transition: 0.3s;
}

.service-card:hover .icon-box {
  background: rgba(255,215,0,0.2);
  box-shadow: 0 0 15px rgba(255,215,0,0.4);
}

/* MODAL CONTENT ANIMATION */
.modal-fade-out {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

.modal-fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.25s ease;
}