* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Tondu';
  src: url('tondu.woff2') format('woff2'),
       url('tondu.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Barlow", sans-serif;
  background-color: #000;
  color: #eee;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
nav a,
button,
.footer-contact,
.footer-copyright {
  font-family: "Tondu", sans-serif;
}

/* Navbar */
/* Make nav fixed at all times — it will overlay content */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.70) 30%,
    rgba(0, 0, 0, 0.25) 70%,
    rgba(0, 0, 0, 0.00) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Mobile adjustments */
@media (max-width: 768px) {

  /* Keep nav overlaying hero */
  nav {
    padding: 1rem 5%;
    flex-wrap: wrap;
  }

  /* Remove any top padding from hero itself */
  .hero:first-of-type {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  /* Push ONLY the content down below the nav */
  .hero:first-of-type .hero-content {
    margin-top: 90px; /* Adjust if your nav height changes */
  }

    .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
    padding: 1.5rem 0;
    background: rgba(0,0,0,0.9);
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

}


/* Desktop – nav overlays hero, no top padding needed */
@media (min-width: 769px) {
  .hero#narrative,
  .hero:first-of-type {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  body {
    padding-top: 0;
    margin-top: 0;
  }
}


.logo {
  font-size: 1.8rem;
  font-weight: normal;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
}

.logo {
  display: block;
  line-height: 0;
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.logo:hover .logo-img {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 1.05rem;
  position: relative;
  transition: color 0.3s ease, transform 0.2s ease;
  padding-bottom: 4px;
}

.nav-links a:hover,
.nav-links a:focus {
  color: #ffffff;
  transform: scale(1.05);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #ffffff;
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
  left: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #eee;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ───────────────────────────────────────────────
   HERO SECTION – Centered text + clean overlay
──────────────────────────────────────────────── */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;              /* prevents collapse on wide screens */
  overflow: hidden;
  display: flex;                  /* helps with content centering */
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Base overlay – subtle darkening everywhere */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);      /* light uniform darkening */
  z-index: 1;
  transition: background 0.6s ease, opacity 0.6s ease;
  pointer-events: none;
}

/* Optional: stronger centered vignette behind the text */
.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 25%,
    rgba(0, 0, 0, 0.65) 70%,
    rgba(0, 0, 0, 0.85) 100%
  );
  opacity: 0.75;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

/* Hover / focus states */
@media (hover: hover) and (pointer: fine) {
  .hero:hover .hero-overlay {
    background: rgba(0, 0, 0, 0.48);
  }
  .hero:hover .hero-overlay::after {
    opacity: 0.92;
  }
}

@media (hover: none) {
  .hero:active .hero-overlay {
    background: rgba(0, 0, 0, 0.65);
  }
  .hero:active .hero-overlay::after {
    opacity: 1;
  }
}

/* Centered content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 90%;
  width: 100%;
  padding: 2rem;
  opacity: 0;
  transform: translateY(40px);
  transition: 
    opacity 0.8s ease,
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero:hover .hero-content,
.hero:active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  margin: 0 0 1.2rem 0;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 0.92;
  font-weight: normal;
  text-shadow: 0 4px 24px rgba(0,0,0,0.85);
}

.hero p {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  margin: 0 auto;
  max-width: 720px;
  font-weight: normal;
  opacity: 0.94;
  text-shadow: 0 3px 16px rgba(0,0,0,0.9);
}

/* ───────────────────────────────────────────────
   MOBILE ADJUSTMENTS
──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: unset;
    overflow: visible;          /* allow natural height */
  }

  .hero-image {
    position: relative;         /* changed so it dictates container height */
    width: 100%;
    height: auto;
    object-fit: contain;        /* ← your original */
    object-position: center top;
    display: block;
  }

  .hero-overlay,
  .hero-overlay::after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3.5rem 5% 5rem;
    max-width: 100%;
    margin: 0;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 9vw, 4.5rem);
    letter-spacing: 2.5px;
  }

  .hero p {
    font-size: clamp(1rem, 4vw, 1.35rem);
    max-width: 90%;
  }

  .hero-content * {
    text-shadow: 0 2px 10px rgba(0,0,0,0.95);
    margin: 0;
    padding: 0;
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 3rem 5% 6rem;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 8.5vw, 3.8rem);
  }

  .hero p {
    font-size: clamp(0.95rem, 4.2vw, 1.25rem);
  }
}

/* ───────────────────────────────────────────────
   HERO LINK
──────────────────────────────────────────────── */
.hero-link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}

.hero-link:focus {
  outline: none;
}

.hero-link:focus .hero-content {
  text-shadow: 0 0 0 4px rgba(255,255,255,0.35);
}



/* Add this block anywhere in your CSS (preferably near the .hero:hover rules) */

/* The "simulated hover" state */
.hero.is-active .hero-overlay {
  background: rgba(0, 0, 0, 0.48) !important;   /* match your hover darkness */
}

.hero.is-active .hero-overlay::after {
  opacity: 0.92 !important;                     /* stronger vignette */
}

.hero.is-active .hero-content {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Optional: make sure desktop hover still works normally */
@media (hover: hover) and (pointer: fine) {
  .hero:hover .hero-overlay {
    background: rgba(0, 0, 0, 0.48);
  }
  .hero:hover .hero-overlay::after {
    opacity: 0.92;
  }
  .hero:hover .hero-content {
    opacity: 1;
    transform: translateY(0);
  }
}

/* On touch devices, we can reduce transition delay if desired */
@media (hover: none) {
  .hero .hero-content {
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
}


#about {
  background: #000;
  color: #fff;
  padding: 8rem 5%;
}


.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 5rem;
}


.about-image-wrapper {
  flex: 0 0 340px;
  max-width: 340px;
}

.about-profile-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.8);
  object-fit: contain;          
  object-position: center;
}


.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: normal;
  letter-spacing: -0.5px;
  line-height: 1.05;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  text-align: left;
}

.about-text p {
  font-size: clamp(1.05rem, 3vw, 1.18rem);
  line-height: 1.78;
  opacity: 0.93;
  text-align: left;
}


@media (max-width: 767px) {
  #about {
    padding: 5rem 4% 7rem;
  }

  .about-container {
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
  }

  .about-image-wrapper {
    width: 100%;
    max-width: 420px;           
    box-sizing: border-box;
  }

  .about-text {
    width: 100%;
    max-width: 720px;
    padding: 0 10%;           
    box-sizing: border-box;
  }

  .about-text h2 {
    font-size: clamp(2.2rem, 7.5vw, 3.2rem);  
    text-align: center;
    margin-bottom: 2rem;
  }

  .about-text p {
    font-size: clamp(0.98rem, 4vw, 1.08rem);
    text-align: left;
  }
}


@media (max-width: 400px) {
  #about {
    padding: 4rem 3% 6rem;
  }

  .about-image-wrapper {
    flex: 0 0 240px;
    padding-left: 14%;  
    padding-right: 14%;  
    padding-bottom: 0%;
    padding-top: 0%;
  }

  .about-text {
    padding: 0 14%;
  }

  .about-text h2 {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
  }

  .about-text p {
    font-size: clamp(0.94rem, 4.5vw, 1.02rem);
    line-height: 1.7;
  }
}

#contact {
  position: relative;
  height: auto;                   
  min-height: 700px;              
  max-height: 900px;              
  overflow: hidden;
  color: #fff;
}

.contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;              
  object-position: center;      
  z-index: 1;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.70);
  z-index: 2;
}

.contact-content {
  position: relative;
  z-index: 3;
  padding: 6rem 8% 8rem;          
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;        
  min-height: 700px;               
  box-sizing: border-box;
}

.contact-content h2 {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: normal;
  letter-spacing: 1.5px;
  margin-bottom: 3.5rem;
  text-transform: uppercase;
  text-align: left;
}


form {
  width: 100%;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

input, textarea {
  width: 100%;
  padding: 1.4rem 1.6rem;
  font-size: 1.1rem;
  background: rgba(50, 50, 50, 0.75);
  border: none;
  border-radius: 0;
  color: #fff;
  outline: none;
}

input::placeholder, textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

button {
  font-family: "Tondu", sans-serif;
}

input,
textarea,
select {
  font-family: "Barlow", sans-serif;
}

button {
  margin-top: 1.5rem;
  padding: 1.1rem 3rem;
  font-size: 1.05rem;
  font-weight: normal;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
}

button:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

@media (max-width: 768px) {

  #contact {
    min-height: 600px;
    padding: 4rem 6% 8rem;
  }

  .contact-content {
    padding: 4rem 6% 8rem;
    justify-content: flex-start;
  }

  .contact-content h2 {
    font-size: clamp(2.4rem, 8vw, 3.8rem);
    text-align: left;
  }

  /* Center form elements horizontally */
  #contact form {
    align-items: center;
  }

  /* Keep inputs full width */
  #contact input,
  #contact textarea {
    width: 100%;
  }

  /* Center the submit button only */
  #contact form button {
    align-self: center;
  }

  /* Keep Back to Top centered */
  .back-to-top {
    right: 50%;
    transform: translateX(50%);
    bottom: 2rem;
    transition: opacity 0.3s ease;
  }

  .back-to-top:hover,
  .back-to-top:focus-visible {
    opacity: 0.85 !important;
    transform: translateX(50%) !important;
  }

  .back-to-top:active {
    opacity: 1;
  }
}


.back-to-top {
  position: absolute;
  bottom: 2.5rem;
  right: 6%;
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: normal;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 3;
}

/* Desktop hover only (real mouse devices) */
@media (hover: hover) and (pointer: fine) {
  .back-to-top:hover {
    opacity: 1;
    transform: translateY(-3px);
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .back-to-top {
    right: 50%;
    bottom: 2rem;
    transform: translateX(50%);
    
    /* Remove transform animation to prevent shifting */
    transition: opacity 0.3s ease;
  }

  /* Prevent hover/focus bleed on touch */
  .back-to-top:hover,
  .back-to-top:focus-visible {
    opacity: 0.85 !important;
    transform: translateX(50%) !important;
  }

  /* Optional tap feedback (opacity only, no movement) */
  .back-to-top:active {
    opacity: 1;
  }
}


@media (max-width: 768px) {
  #contact {
    min-height: 600px;         
    padding: 4rem 6% 8rem;
  }

  .contact-content {
    padding: 4rem 6% 8rem;
    justify-content: flex-start;  
  }

  .contact-content h2 {
    font-size: clamp(2.4rem, 8vw, 3.8rem);
  }

  .back-to-top {
    right: 50%;
    transform: translateX(50%);
    bottom: 2rem;
  }
}


@media (max-width: 768px) {
  nav {
    padding: 1rem 5%;
    flex-wrap: wrap;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;               
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
    padding: 1.5rem 0;
    background: rgba(0,0,0,0.9);
    text-align: center;
  }

  .nav-links.active {
    display: flex;             
  }


  .nav-links a {
    font-size: 1.3rem;
    padding: 0.8rem 0;
  }

  section {
    padding: 5rem 5%;
  }

  #about h2, #contact h2 {
    font-size: 2.4rem;
  }

  .hero-content {
    padding: 0 5% 12% 5%;
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 6rem);
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 3rem; }
  .hero p   { font-size: 1.3rem; }
}


footer {
  width: 100%;
  background-color: #000;
  color: #fff;
  padding: 1.2rem 5%;             
  box-sizing: border-box;
}

.footer-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.0rem;                     
}

.footer-contact {
  font-size: 0.95rem;
  font-weight: normal;
  color: #cccccc;
  letter-spacing: 0.5px;
}

.footer-copyright {
  font-size: 0.95rem;
  font-weight: normal;
  color: #cccccc;
  letter-spacing: 0.5px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.social-icon {
  height: 32px;                
  width: auto;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.12);
  opacity: 0.9;
}


@media (max-width: 768px) {
  footer {
    padding: 1rem 5%;              
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }

  .footer-left {
    align-items: center;
  }

  .footer-contact,
  .footer-copyright {
    font-size: 1rem;
  }

  .footer-right {
    justify-content: center;
    gap: 1.5rem;
  }

  .social-icon {
    height: 36px;                  
  }
}



/* Responsive YouTube embeds – maintains 16:9 aspect ratio */
.video-container {
  position: relative;
  width: 100%;
  max-width: 100%px;           /* Optional: cap max width on large screens */
  padding-top: 56.25%;         /* 9/16 = 56.25% → perfect 16:9 */
  overflow: hidden;
  background: #111;            /* Dark placeholder while loading */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-wrapper {
  width: 100%;
  max-width: 100%;                /* Ensures no capping */
}

.video-container {
  position: relative;
  width: 100%;                    /* Full width of parent */
  padding-top: 56.25%;            /* 9/16 = 56.25% for 16:9 aspect ratio */
  overflow: hidden;
  background: #111;               /* Dark placeholder color */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;         /* Force full width */
  height: 100% !important;        /* Force full height */
  border: none;
}

/* Mobile adjustments (optional) */
@media (max-width: 768px) {
}


/* Hide mobile duplicate by default */
.mobile-hero-top {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-hero-top {
    display: block;
  }

  /* Optional: adjust height for mobile so it's just a top crop */
  .mobile-hero-top .hero-image {
    width: 200px;
    height: 65px;
    object-fit: cover;
    object-position: center top;
  }

  .mobile-hero-top .hero-content {
    bottom: 10px;  /* make text sit nicely on top of cropped image */
    left: 5%;
    max-width: 90%;
    font-size: clamp(0.8rem, 4vw, 1rem);
  }
}

/* VIDEO SECTION SPACING */
.video-item {
  width: 100%;
}

.video-caption {
  text-align: center;          /* keep content centered */
  padding: 2rem 8% 2rem;
  margin: 0 auto;
  max-width: 3000px;
  font-family: "Barlow", sans-serif; /* default font for text */
  display: flex;               /* align h3 and p in one row */
  justify-content: center;     /* center horizontally */
  gap: 0.5rem;                 /* space between h3 and p */
  flex-wrap: wrap;             /* allows wrapping on mobile */
  align-items: baseline;       /* aligns p nicely with h3 text */
}

.video-caption h3 {
  font-family: "Tondu", sans-serif; /* keep h3 in Tondu */
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  letter-spacing: 1px;
  margin: 0;                    /* remove default spacing */
  text-transform: uppercase;
  line-height: 1.2;
}

.video-caption p {
  font-family: "Barlow", sans-serif; /* ensure p uses Barlow */
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  margin: 0;                        /* remove default spacing */
  line-height: 1.4;
}

/* Mobile – optional adjustments */
@media (max-width: 768px) {
  .video-caption h3 {
    font-size: clamp(1.1rem, 3.8vw, 1.35rem);
    letter-spacing: 0.8px;
  }

  .video-caption p {
    font-size: clamp(1.1rem, 3.8vw, 1.35rem);
  }
}