* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tinos', sans-serif;
    background: #a8cb0c;
    background: linear-gradient(0deg, #a8cb0c 0%, #272926 100%);
  }
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    justify-content: center;
    padding: 15px 20px 12px;
    backdrop-filter: blur(16px);
    background: black;
    border-bottom: 2px solid #a8cb0c;
}

.topbar-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.brand {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo {
    height: 100px;
    width: auto;
    display: block;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 16px;
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  font-size: 20px;
}
.nav-links a {
  position: relative;
  padding: 8px 0;
  transition: color 0.25s ease;
  text-decoration: none;
  color: white;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
  background: linear-gradient(90deg, transparent, #a8cb0c, transparent);
}

.nav-links a:hover,
.nav-links a.active {
  color: #a8cb0c;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}


.menu-btn {
  display: none;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  border: 1px solid #a8cb0c;
  background: rgba(255, 255, 255, 0.04);
  color: #a8cb0c;
  cursor: pointer;
  font-size: 25px;
}

  .container {
  width: 85%;
  margin: auto;
}

.section-padding {
  padding: 30px 0;
}
  .hero-section {
  position: relative;
  background-image: url('photos/DLUX-Ent-Captain-Hook-Shadow.jpg'); /* your image path */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 12rem 1rem;
  color: white;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  height: auto;
  background-attachment: fixed;
  border-bottom: 3px solid #a8cb0c;
}
.hero-section .container{
  width: 90%;
}
/* Overlay to darken the image and improve text contrast */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7); /* Adjust opacity for readability */
  z-index: -1;
}

.hero-section span{
  color: #a8cb0c;
}
.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  margin-top: 30px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.hero-section p {
  font-size: 1.7rem;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 4px rgb(14, 0, 92);
}

      .hero-section .btn-grad {
    background-image: linear-gradient(to right, #000000 0%, #a8cb0c 51%, #000000 100%);
    margin: 10px auto; /* top/bottom = 10px, left/right = auto for centering */
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block; /* ensures it behaves as a block element for margin auto to work */
    font-size: 20px;
    text-decoration: none;
}
.hero-section a{
  text-decoration: none;
}
          .hero-section .btn-grad:hover {
            background-position: right center; /* change the direction of the change here */
            color: #fff;
            text-decoration: none;
            cursor: pointer;
         }
.tv-origin-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  border: 3px solid #a8cb0c;
}
.tv-origin-video {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px;
}

.tv-origin-video video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.tv-origin-section {
  padding: 80px 0;
  background-color: white;
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.01) 25%, transparent 25%),
    linear-gradient(225deg, rgba(0, 0, 0, 0.01) 25%, transparent 25%);
  background-size: 40px 40px;
}
.tv-replay-btn {
    display: none;
    margin: 25px auto 0;
    padding: 12px 28px;
    border: 2px solid #a8cb0c;
    border-radius: 30px;
    background: transparent;
    color: black;
    font-size: 21px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.tv-replay-btn:hover {
    background: #a8cb0c;
    color: black;
}
.tv-origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tv-origin-section .section-title {
    width: 100%;
    color: #a8cb0c;
    font-size: 55px;
    text-align: center;
    margin-bottom: 30px;
}

.tv-origin-section .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #a8cb0c;
    margin: 15px auto 0;
}
.tv-origin-section .section-title span{
  color: #272926;
}
@media (max-width: 1100px) {
    .tv-origin-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .tv-origin-image {
    order: 1;
  }
  .tv-origin-section .section-title{
    width: 100%;
    order: -1;
}
}
.contact-section {
  padding: 60px 20px;
background: #a8cb0c;
background: linear-gradient(180deg, black 0%, #a8cb0c 100%);}

.contact-container {
  width: 85%;
  margin: 0 auto;
  text-align: left;
}

.contact-container h1 {
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 12px;
  color: white;
  text-align: center;
}

.contact-container p {
  font-size: 30px;
  line-height: 1.6;
  color: white;
  margin-bottom: 40px;
  text-align: center;
  font-style: italic;
}
.contact-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 320px;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 21px;
    width: auto;
    font-weight: 700;
    transition: all 0.3s ease;
    box-sizing: border-box;
    overflow-wrap: anywhere;
}

.btn-email {
    background: #a8cb0c;
    color: white;
    border: 2px solid #a8cb0c;
}

.btn-email:hover {
    background: white;
    color: #a8cb0c;
    transform: translateY(-3px);
}

.btn-contact {
    background: white;
    color: #a8cb0c;
    border: 2px solid #a8cb0c;
}

.btn-contact:hover {
    background: #a8cb0c;
    color: white;
    transform: translateY(-3px);
}
.gallery2 {
  padding: 50px 20px;
  background-color: black;
  /* Floral background */
background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
  background-repeat: repeat;
  background-position: center;
  background-size: 200px 200px;
  opacity: 1;
  position: relative;
  z-index: 1;
}
.gallery2::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.05); /* white overlay with slight transparency */
  z-index: -1;
}
.gallery-heading {
  text-align: center;
  width: 90%;
  margin: 0 auto 60px;
}
.gallery-heading h1 {
  font-size: 50px;
  margin-bottom: 20px;
  color: #a8cb0c;
  letter-spacing: 1px;
}
.gallery-heading p {
  font-size: 28px;
  color: white;
  font-style: italic;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 90%;
    margin: 0 auto 50px;
    padding: 0 10px;
}
.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    border: 3px solid #a8cb0c;
}
.gallery-grid img:hover {
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .gallery-heading h1 {
    font-size: 45px;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    width: 90%;
}
  .gallery2{
    padding: 40px 0px 10px 0px;
  }
  .gallery-heading{
    margin: 0 auto 30px;
    width: 90%;
  }
  .gallery-heading p {
    font-size: 25px;
  }
}
.about-section {
    padding: 50px 10px;
    background-color: black;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
}
.about-container {
    width: 90%;
    margin: 0 auto;
}
.about-title {
    margin: 0;
    text-align: center;
    color: white;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
}
.about-title::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    margin: 18px auto 25px;
    background: black;
    border-radius: 10px;
}
.about-intro {
    margin: 0 auto 60px;
    text-align: center;
    color: white;
    font-size: 25px;
    line-height: 1.7;
}
.about-bios {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 65px;
}
.about-person {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.about-person h2 {
    margin: 0 0 18px;
    color: #a8cb0c;
    font-size: 32px;
    text-align: center;
}
.about-person h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    margin: 12px auto 20px;
    background: #a8cb0c;
    border-radius: 5px;
}
.about-person p {
    margin: 0;
    color: #272926;
    font-size: 21px;
    line-height: 1.8;
}
.about-headshot {
    width: 250px;
    height: 250px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #a8cb0c;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.about-headshot img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-couple-photo {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    border: 3px solid white;
}
.about-couple-photo img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}
.about-couple-photo img:hover {
    transform: scale(1.02);
}
@media (max-width: 768px) {
    .about-section {
        padding: 50px 15px;
    }
    .about-container {
        width: 95%;
    }
    .about-title {
        font-size: 40px;
    }
    .about-intro {
        margin-bottom: 40px;
    }
     .about-headshot {
        width: 200px;
        height: 200px;
    }
    .about-bios {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    .about-person {
        padding: 30px 25px;
    }
    .about-person h2 {
        font-size: 30px;
    }
    .about-person p {
        font-size: 20px;
    }
    .about-couple-photo {
        border-radius: 14px;
    }
}
.wonderland-page {
    overflow: hidden;
    color: black;
}
.wonderland-hero {
    position: relative;
    min-height: 600px;
    display: flex;
        background-image: url("photos/DLUX-Ent-Alice-in-Tree.jpg");
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid #a8cb0c;
        padding-bottom: 60px;
    align-items: flex-end;
    justify-content: center;

}
.neverland-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    background-image: url("photos/Copy-of-DLUX-Ent-Captain-Hook-862x549.jpg");
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid #a8cb0c;
      padding-bottom: 60px;
    align-items: flex-end;
    justify-content: center;
}
.pinocchio-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    background-image: url("photos/Pinocchio\ Logo.jpg");
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid #a8cb0c;
      padding-bottom: 60px;
    align-items: flex-end;
    justify-content: center;
}
.wonderland-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
}
.wonderland-hero-content {
    position: relative;
    z-index: 1;
    width: 90%;
    text-align: center;
    color: white;
}
.wonderland-logo {
    display: block;
    width: min(500px, 80%);
    height: auto;
    margin: 0px auto 20px auto;
    border: 2px solid #a8cb0c;
    border-radius: 10px;
}
.wonderland-hero h1 {
    margin: 0 0 20px;
    font-size: 50px;
    font-weight: 700;
}
.neverland-hero h1 {
    margin: 0 0 20px;
    font-size: 50px;
    font-weight: 700;
}
.pinocchio-hero h1 {
    margin: 0 0 20px;
    font-size: 50px;
    font-weight: 700;
}
.wonderland-tagline {
    max-width: 850px;
    margin: 0 auto;
    font-size: 21px;
    line-height: 1.6;
    font-style: italic;
}

.wonderland-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.wonderland-intro {
    padding: 50px 20px;
    background: white;
    border-bottom: 3px solid #a8cb0c;
}
.wonderland-intro h2,
.wonderland-message h2,
.wonderland-details h2,
.wonderland-history h2,
.wonderland-gallery h2 {
    margin: 0 0 25px;
    text-align: center;
    font-size: 45px;
    line-height: 1.2;
}
.wonderland-intro h2 span,
.wonderland-message h2 span,
.wonderland-details h2 span,
.wonderland-history h2 span,
.wonderland-gallery h2 span {
    color: #a8cb0c;
}
.wonderland-divider {
    width: 85px;
    height: 4px;
    margin: 0 auto 35px;
    background: #a8cb0c;
    border-radius: 10px;
}
.wonderland-intro p {
    max-width: 900px;
    margin: 0 auto 25px;
    font-size: 18px;
    line-height: 1.8;
}
.wonderland-intro p:last-child {
    margin-bottom: 0;
}
.wonderland-message {
    padding: 70px 20px;
    background: #272926;
    text-align: center;
    color: white;
    border-bottom: 3px solid #a8cb0c;
}
.wonderland-message p {
    max-width: 950px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.8;
}
.wonderland-details {
    padding: 70px 20px;
    background: white;
}
.wonderland-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.wonderland-detail {
    padding: 35px 25px;
    text-align: center;
    border-radius: 16px;
    background: #f7f7f7;
}
.wonderland-detail i {
    margin-bottom: 15px;
    font-size: 35px;
    color: #a8cb0c;
}
.wonderland-detail h3 {
    margin: 0 0 10px;
    font-size: 25px;
}
.wonderland-detail p {
    margin: 0;
    line-height: 1.6;
    font-size: 20px;
}
.wonderland-history {
    padding: 70px 20px;
    background: #a8cb0c;
    color: white;
    text-align: center;
}
.wonderland-history h2 span {
    color: #272926;
}
.wonderland-history p {
    max-width: 950px;
    margin: 0 auto;
    font-size: 21px;
    line-height: 1.8;
}
.wonderland-gallery {
    padding: 70px 20px;
    background: white;
}
.wonderland-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}
.wonderland-gallery-grid img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.wonderland-gallery-grid img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .wonderland-hero {
        min-height: 500px;
    }
    .wonderland-hero h1 {
        font-size: 40px;
    }
    .neverland-hero {
        min-height: 500px;
    }
    .neverland-hero h1 {
        font-size: 40px;
    }
    .wonderland-tagline {
        font-size: 20px;
    }
    .wonderland-intro,
    .wonderland-people,
    .wonderland-message,
    .wonderland-details,
    .wonderland-history,
    .wonderland-gallery {
        padding: 45px 15px;
    }
    .wonderland-intro h2,
    .wonderland-message h2,
    .wonderland-details h2,
    .wonderland-history h2,
    .wonderland-gallery h2 {
        font-size: 35px;
    }
    .wonderland-people-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .wonderland-detail-grid {
        grid-template-columns: 1fr;
    }
    .wonderland-gallery-grid {
        grid-template-columns: 1fr;
    }
}
.site-footer {
 background: #272926;
  color: white;
    padding: 40px 0 20px;
    border-top: 3px solid white;
}
.footer-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    text-align: center;
    margin: 0 auto;
}

.site-footer h4 {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 21px;
  color: var(--accent);
  text-decoration: none;
  transition: all 0.25s ease;
  width: fit-content;
}

.footer-links a:hover {
  color: #a8cb0c;
  transform: translateX(4px);
    border-bottom: 2px solid #a8cb0c;
}
.footer-brand p{
  font-size: 22px;
  text-align: center;
}
.footer-brand img {
    display: block;
    width: 300px;
    height: auto;
    margin: 0px auto 20px auto;
    border-radius: 15%;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 15px;
  border: 3px solid #a8cb0c;
}

.site-footer h4 {
  margin-bottom: 15px;
  color: #a8cb0c;
}
.footer-links i{
  color: #a8cb0c;
  margin-right: 10px;
  font-size: 22px;
}
.site-footer p,
.site-footer a {
  color: var(--accent);
  margin-bottom: 10px;
    font-size: 20px;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
}
.footer-bottom .bwd{
  color: #a8cb0c;
}
.bwd {
  margin-top: 6px;
}

.bwd a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
  transition: 0.25s ease;
  position: relative;
}

/* subtle underline effect */
.bwd a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #a8cb0c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.bwd a:hover::after {
  transform: scaleX(1);
}

.bwd a:hover {
  color: #ffffff;
}
/* === Mobile (up to 599px) === */
@media (max-width: 599px) {
.hero-section{
padding: 2rem 0rem;
background-attachment: scroll;
}
.hero-section .container{
  padding-left: 10px;
  padding-right: 10px;
}
.hero-section h1{
  font-size: 45px;
}
.hero-section p{
  font-size: 27px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.tv-origin-section .container{
  width: 100%;
}
.tv-origin-section .section-title{
  font-size: 40px;
}
.tv-origin-section{
  padding: 30px;
}
}
/* === Tablet (600px to 1023px) === */
@media (min-width: 600px) and (max-width: 1023px) {
.hero-section{
padding: 2rem 1rem;
}
.hero-section .container{
  width: 100%;
}
.tv-origin-section{
  padding: 40px;
}


}

/* === Laptop (1024px to 1439px) === */
@media (min-width: 1024px) and (max-width: 1439px) {
.hero-section{
padding: 2rem 1rem;
  background-image: url('photos/DLUX-Ent-Captain-Hook-Shadow.jpg'); /* your image path */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}  
}

/* === Desktop / Large Screens (1440px and up) === */
@media (min-width: 1440px) {
.hero-section{
padding: 5rem 1rem;
  background-image: url('photos/DLUX-Ent-Captain-Hook-Shadow.jpg'); /* your image path */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

}
@media (max-width: 1000px) {
   .topbar {
        padding: 10px 15px;
    }

    .topbar-inner {
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
    }

    .brand-logo {
        height: 65px;
    }

    .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
  .nav-links {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-top: 14px;
    padding: 14px 16px;
    background: linear-gradient(
      180deg,
      rgba(19, 58, 11, 0.96),
      rgba(7, 37, 7, 0.96)
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  }

  .topbar.is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 4px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
  .nav-actions{
    margin-bottom: 10px;
  }
  .nav-actions .btn {
    display: none;
  }
  .topbar.is-open .nav-actions .btn{
 display: inline-flex;
  }

  .menu-btn {
    display: grid;
    place-items: center;
  }
}