  html, body {
    margin: 0;
    background-color: #FFF;
    font-family: "Manrope","DM Sans", sans-serif
  }

  /* Navigation panel */
  #nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 15px 20px;
    opacity: 0;
    animation: navFadeIn 1s forwards;
    z-index: 20;
    display: flex;
    justify-content: left;
  }

  @keyframes navFadeIn { to { opacity: 1; } }

  .nav-content {
    display: flex;
    align-items: center;
	gap:8px;
  }

#nav a {
  margin: 0 10px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Fancy underline animation */
#nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #FFD700; /* gold underline */
  transition: width 0.3s ease;
}

#nav a:hover {
  color: #FFD700; /* change text color on hover */
  transform: scale(1.1); /* subtle zoom */
}

#nav a:hover::after {
  width: 100%; /* animate underline on hover */
}

.text-wrapper {max-width:800px; margin:auto; font-size:18px; line-height:24px;}
.text-wrapper p {margin-bottom:30px;}
.text-wrapper img {max-width:240px; aspect-ratio: 1 / 1;}

figure {margin:20px 0;}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 900px;
  margin: 40px auto;
  padding: 10px;
}

.gallery img {
  width: 300px;
  height:225px;
  object-fit:cover;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index:21;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.lightbox.active {
  display: flex;
}


.contact-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px 25px;
  border-radius: 8px;
  width: 800px;
  margin:auto;

}

.contact-form h2 {
  margin-bottom: 15px;
  text-align: center;
}

.contact-form label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.contact-form textarea {
  resize: vertical;
  height: 100px;
}

.contact-form button {
  margin-top: 15px;
  width: 100%;
  padding: 10px;
  background: #007BFF;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #0056b3;
}

  /* Logo animation */
  #logo-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
    width: 300px;
    height: auto;
    animation: logoAnimation 6s forwards;
    z-index: 10;
  }

  @keyframes logoAnimation {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(2.5); }
    20% { opacity: 1; transform: translate(-50%, -50%) scale(2.5); }
    70% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1); }
  }

  /* Background containers for crossfade */
  .bg-slide {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
  }

  .bg-slide.active {
    opacity: 1;
  }

  /* Navigation panel */
  .homepage #nav {
    animation: navFadeIn 1s forwards;
    animation-delay: 4s;
  }

  @keyframes navFadeIn { to { opacity: 1; } }

  .nav-content {
    display: flex;
    align-items: center;
  }
/* WordPress theme integration and responsive refinements */
*,*::before,*::after{box-sizing:border-box}body{margin:0}.page-content{padding:85px 20px 40px}.contact-form{width:min(800px,100%)}.gallery{grid-template-columns:repeat(3,minmax(0,1fr))}.gallery img{width:100%;height:auto;aspect-ratio:4/3}@media(max-width:700px){.nav-content{gap:4px;flex-wrap:wrap}#nav{padding:12px 10px}#nav a{margin:0 6px;font-size:14px}.gallery{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;padding:0}.text-wrapper{font-size:16px}.text-wrapper .flex-row{flex-direction:column}.process-inner{padding:20px;flex-direction:column}.process-inner>div{flex-basis:auto!important}}
