/* Base Styles (for all screens) */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #0d0d0d, #0a0a0a);;
  color: #ffffff;
  line-height: 1.6;
}

/* Smooth transition for all elements */
* {
  transition: all 0.3s ease-in-out;
}

.logo {
  max-width: 160px;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
}


/* Smooth hover effect for nav links and buttons */
nav a,
button,
.cta-link {
  transition: all 0.3s ease-in-out;
}

nav a:hover {
  color: #D4AF37;
}

.cta-link:hover {
  background-color: #fff;
  color: #000;
}

body {
  opacity: 0;
  transition: opacity 0.8s ease-in;
}

body.loaded {
  opacity: 1;
}


header {
  background-color: #121212;
  padding: 1.5rem 1rem;
  text-align: center;
  border-bottom: 2px solid #D4AF37;
}

header h1 {
  color: #D4AF37;
  margin: 0;
  font-size: 1.8rem;
}

nav {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.cta-link {
  color: #D4AF37;
}

#hero {
  background-color: #0A0A0A;
  text-align: center;
  padding: 3rem 1rem;
}

#hero h2 {
  color: #D4AF37;
  font-size: 1.5rem;
}

.cta-button {
  background-color: #D4AF37;
  color: #121212;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
}

section {
  background-color: rgba(255, 255, 255, 0.02);
  padding: 2rem 1rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  border-left: 2px solid transparent;
}


section:hover {
  transform: scale(0.97);
  box-shadow: inset 0 0 25px rgba(212, 175, 55, 0.35),
              inset 0 0 35px rgba(212, 175, 55, 0.2);
  border-left: 4px solid #D4AF37;
}

section:hover h2,
section:hover p {
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}



section h3 {
  color: #D4AF37;
}

.preview a {
  color: #D4AF37;
  text-decoration: underline;
}

.testimonials blockquote {
  border-left: 4px solid #D4AF37;
  margin: 1rem 0;
  padding-left: 1rem;
  font-style: italic;
}

.why-us ul {
  list-style-type: none;
  padding-left: 0;
}

.why-us li {
  margin: 8px 0;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #121212;
  color: #ffffff;
  border-top: 1px solid #D4AF37;
  font-size: 0.9rem;
}

.services-intro {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #0A0A0A;
  border-bottom: 1px solid #D4AF37;
}

.services-intro h2 {
  font-size: 2rem;
  color: #D4AF37;
}

.services-intro p {
  max-width: 600px;
  margin: 1rem auto 0;
  color: #ffffff;
}


.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem 1rem;
}

body.services-page {
  background: url('images/darker-gold-texture-background.jpg') center/cover no-repeat;
}


@media (max-width: 900px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-list {
    grid-template-columns: 1fr;
  }
}


.service-card {
  background-color: rgba(255, 255, 255, 0.04);
  border-left: 4px solid #D4AF37;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: all 0.3s ease-in-out;
}


.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.service-item h3 {
  color: #D4AF37;
  margin-bottom: 0.5rem;
}

.service-item p {
  color: #eaeaea;
  font-size: 0.95rem;
}

#about-hero {
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  padding: 3rem 1rem;
  border-bottom: 1px solid #D4AF37;
}

.about-hero h2 {
  font-size: 2rem;
  color: #D4AF37;
}

.about-hero p {
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
  color: #ffffff;
}

.about-content {
  padding: 2rem 1rem;
  background: url('images/dark-gold-texture-background.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 100vh;
}

.overlay-layer {
  background-color: rgba(0, 0, 0, 0.6); /* dark semi-transparent layer */
  padding: 2rem;
  border-radius: 12px;
  width: 100%;
  max-width: 850px;
}


.glass-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(8px);
  padding: 2rem;
  max-width: 800px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  color: #fff;
}

.glass-box h3 {
  color: #D4AF37;
  margin-top: 1.5rem;
}

.glass-box p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
}


.about-content h3 {
  color: #D4AF37;
  margin-top: 2rem;
}

.about-content p {
  color: #eaeaea;
  font-size: 1rem;
}

.about-content ul {
  list-style-type: none;
  padding-left: 0;
}

.about-content li {
  margin: 8px 0;
}

body.contact-page {
  background: url('images/royal-dark-gold-background.jpg') center/cover no-repeat;
  background-attachment: fixed;
}


#contact-hero {
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  padding: 3rem 1rem;
  border-bottom: 1px solid #D4AF37;
}

#contact-hero h2 {
  color: #D4AF37;
  font-size: 1.8rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 1800px;
  margin: 0 auto;
}

.contact-info, .contact-form {
  background-color: #1F1F1F;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
}

.contact-info h3,
.contact-form h3 {
  color: #D4AF37;
}

.contact-info p a,
.contact-info p {
  color: #ffffff;
  text-decoration: none;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 1rem;
  margin-bottom: 0.3rem;
  font-weight: bold;
  color: #ffffff;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  background-color: #2A2A2A;
  border: 1px solid #444;
  border-radius: 4px;
  color: #ffffff;
}

.contact-form button {
  margin-top: 1.5rem;
  background-color: #D4AF37;
  color: #121212;
  padding: 0.75rem;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}

#book-hero {
  background-color: #0A0A0A;
  text-align: center;
  padding: 3rem 1rem;
}

#book-hero h2 {
  color: #D4AF37;
  font-size: 1.8rem;
}

.book-form-section {
  padding: 2rem 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.book-form {
  background-color: #1F1F1F;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
  display: flex;
  flex-direction: column;
}

.book-form label {
  color: #ffffff;
  font-weight: bold;
  margin-top: 1rem;
}

.book-form input,
.book-form select,
.book-form textarea {
  padding: 0.75rem;
  background-color: #2A2A2A;
  border: 1px solid #444;
  border-radius: 4px;
  color: #ffffff;
  margin-top: 0.3rem;
}

.book-form button {
  margin-top: 1.5rem;
  background-color: #D4AF37;
  color: #121212;
  padding: 0.75rem;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.modal.hidden {
  opacity: 0;
  pointer-events: none;
  display: none;
}

.modal-content {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
  color: #fff;
  max-width: 90%;
  width: 400px;
  animation: fadeInModal 0.4s ease-out;
}


.modal-content h3 {
  color: #D4AF37;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.modal-content button {
  margin-top: 1.5rem;
  background-color: #D4AF37;
  border: none;
  padding: 0.6rem 1.5rem;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modal-content button:hover {
  background-color: #b8942e;
}

@keyframes fadeInModal {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


/* Responsive Styles */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.4rem;
  }

  #hero h2 {
    font-size: 1.3rem;
  }

  nav {
    flex-direction: column;
    gap: 5px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 1rem;
  }

  section {
    padding: 1.5rem 1rem;
  }

  .testimonials blockquote {
    font-size: 0.95rem;
  }

  footer {
    font-size: 0.8rem;
  }
}

/* -----------------------------
   Interactive Hover Effects
----------------------------- */

/* Buttons & CTA links */
button,
.cta-link,
.cta-button {
  transition: all 0.3s ease;
}

button:hover,
.cta-link:hover,
.cta-button:hover {
  background-color: #ffffff;
  color: #121212;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Service Cards Hover */
.service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

/* Form Inputs Hover & Focus */
input:hover,
textarea:hover,
select:hover,
input:focus,
textarea:focus,
select:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
  outline: none;
}

/* All links hover */
a:hover {
  color: #D4AF37;
  text-decoration: underline;
}

/* Optional: Section Glow on Hover */
section:hover {
  background-color: #101010;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.05);
}

/* -----------------------------
   Hamburger Nav (Mobile)
----------------------------- */

/* Hamburger icon style */
.hamburger {
  display: none;
  font-size: 1.5rem;
  color: #D4AF37;
  cursor: pointer;
  padding-top: 10px;
}

/* Mobile nav defaults */
#nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* Show hamburger only on small screens */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  #nav-links {
    display: none;
    flex-direction: column;
    background-color: #121212;
    border-top: 1px solid #D4AF37;
    margin-top: 10px;
    padding: 1rem;
    animation: slideDown 0.3s ease-out forwards;
  }

  #nav-links.active {
    display: flex;
  }

  #nav-links a {
    padding: 0.5rem 0;
    text-align: center;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* -----------------------------
   Sparkle Background for Homepage
----------------------------- */

.sparkle-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #D4AF37;
  border-radius: 50%;
  opacity: 0.7;
  animation-fill-mode: both;
  animation-timing-function: linear;
}


.sparkle:nth-child(1)  { top: 90%; left: 5%;  animation: floatSparkle 6.8s linear infinite, twinkle 2s ease-in-out infinite;  animation-delay: -2.3s; }
.sparkle:nth-child(2)  { top: 85%; left: 15%; animation: floatSparkle 7.5s linear infinite, twinkle 2.5s ease-in-out infinite; animation-delay: -3.1s; }
.sparkle:nth-child(3)  { top: 95%; left: 25%; animation: floatSparkle 9s linear infinite, twinkle 2.1s ease-in-out infinite;  animation-delay: -4.2s; }
.sparkle:nth-child(4)  { top: 88%; left: 35%; animation: floatSparkle 8.2s linear infinite, twinkle 3s ease-in-out infinite;  animation-delay: -1.7s; }
.sparkle:nth-child(5)  { top: 93%; left: 45%; animation: floatSparkle 6.5s linear infinite, twinkle 1.7s ease-in-out infinite;  animation-delay: -2.9s; }
.sparkle:nth-child(6)  { top: 91%; left: 55%; animation: floatSparkle 7.9s linear infinite, twinkle 3.2s ease-in-out infinite; animation-delay: -3.8s; }
.sparkle:nth-child(7)  { top: 89%; left: 65%; animation: floatSparkle 8.8s linear infinite, twinkle 2.3s ease-in-out infinite; animation-delay: -2.4s; }
.sparkle:nth-child(8)  { top: 92%; left: 75%; animation: floatSparkle 7.2s linear infinite, twinkle 2.6s ease-in-out infinite; animation-delay: -3.5s; }
.sparkle:nth-child(9)  { top: 94%; left: 85%; animation: floatSparkle 9.5s linear infinite, twinkle 1.9s ease-in-out infinite; animation-delay: -1.2s; }
.sparkle:nth-child(10) { top: 90%; left: 95%; animation: floatSparkle 6.9s linear infinite, twinkle 2.8s ease-in-out infinite; animation-delay: -3.6s; }
.sparkle:nth-child(11) { top: 97%; left: 10%; animation: floatSparkle 8.3s linear infinite, twinkle 2.4s ease-in-out infinite; animation-delay: -2.6s; }
.sparkle:nth-child(12) { top: 96%; left: 30%; animation: floatSparkle 7.7s linear infinite, twinkle 1.6s ease-in-out infinite; animation-delay: -4.0s; }
.sparkle:nth-child(13) { top: 98%; left: 50%; animation: floatSparkle 8.6s linear infinite, twinkle 2.2s ease-in-out infinite; animation-delay: -3.3s; }
.sparkle:nth-child(14) { top: 99%; left: 70%; animation: floatSparkle 9.3s linear infinite, twinkle 2.7s ease-in-out infinite; animation-delay: -1.5s; }
.sparkle:nth-child(15) { top: 95%; left: 90%; animation: floatSparkle 7.4s linear infinite, twinkle 2s ease-in-out infinite;  animation-delay: -3.9s; }

@keyframes floatSparkle {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120vh) scale(0.4);
    opacity: 0;
  }
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.4;
  }
}

.glass-section {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 2rem 1rem;
  border-radius: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.4);
  width: 100%;
}


.glass-section:hover {
  border-left: 3px solid #D4AF37;
  box-shadow: inset 0 0 25px rgba(212, 175, 55, 0.15);
  transform: scale(0.99);
}

.glass-inner {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  max-width: 1800px;
  margin: auto;
}
