/* DRUK Wide Bold for Site Title */
@font-face {
  font-family: "Druk Wide Bold";
  src: url("../fonts/DRUKWide-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevent Horizontal Scrolling */
body {
  overflow-x: hidden;
  background:  linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
                url("../images/bg.jpg") no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  font-family: "Neue Haas Grotesk Display Pro 55 Roman", sans-serif;
  text-align: center;
  letter-spacing: 1px;
  font-size: 16px
}

/* Transition Overlay for Smooth Transitions */
#transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  display: block;
}

/* HEADER */
header {
  position: static;
  top: 0;
  z-index: 10;
  background: transparent;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
}
.logo-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.site-title a {
  color: #fff;
  text-decoration: none;
  font-family: "Druk Wide Bold", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
}
.site-title a:hover,
.site-title a:visited {
  color: #fff;
}
/* Partial Red Line Under Header */
.header-line {
  width: 80%;
  margin: 0.5rem auto 0;
  height: 2px;
  background-color: red;
}

/* NAVIGATION */
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
nav li {
  position: relative;
}
nav li:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: red;
  font-weight: 900;
  font-size: 1.6rem;
}
nav a {
  text-decoration: none;
  color: #fff;
  font-size: 1.3rem;
  font-family: "the-seasons", sans-serif;
  text-transform: lowercase;
}

/* SECTIONS & CONTAINERS */
.section {
  padding: 3rem 1rem;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
}

/* HEADINGS */
h2,
h3 {
  font-family: "the-seasons", sans-serif;
  color: #fff;
}
h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
h3 {
  font-size: 1.5rem;
  margin: 1rem 0;
}

/* PARAGRAPHS */
p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* ABOUT PAGE LAYOUT */
.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.about-image,
.about-text {
  flex: 1 1 300px;
}
.about-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
}
.about-left {
  flex: 1;
  text-align: center;
}
.about-right {
  flex: 1;
  text-align: center;
}
.spaced-list {
  margin-bottom: 1rem;
}

/* PORTFOLIO GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.portfolio-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  text-align: left;
}
.portfolio-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 6;
  overflow: hidden;
}
.portfolio-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Helvetica, sans-serif;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}
.portfolio-image-container:hover .portfolio-overlay {
  background: rgba(255, 0, 0, 0.7);
  color: #fff;
}

/* VIDEO SECTION */
.video-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
  padding-bottom: 56.25%;
  height: 0;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-text p {
  text-align: center;
  letter-spacing: 1px;
  font-size: 20px
}

.video-text h1 {
  text-align: center;
  letter-spacing: 1px;
  font-size: 26px
}


/* CONTACT PAGE */
.contact-details p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.contact-details a {
  color: #fff;
  text-decoration: none;
}
.contact-details a:hover {
  text-decoration: underline;
}

/* CONTACT FORM */
.contact-form {
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: left;
}
.contact-form .form-group {
  margin-bottom: 1rem;
}
.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-family: "Neue Haas Grotesk Display Pro 55 Roman", sans-serif;
  color: #fff;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: "Neue Haas Grotesk Display Pro 55 Roman", sans-serif;
  color: #000;
  background-color: #fff;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

/* SEND BUTTON */
.send-button {
  background: red;
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-family: "Druk Wide Bold", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  display: block;
  margin: 1rem auto 0;
  text-align: center;
}
.send-button:hover {
  background: darkred;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  header {
    flex-direction: column;
  }
  .header-inner {
    flex-direction: column;
    gap: 1rem;
  }
  nav ul {
    flex-direction: column;
  }
  nav li:not(:last-child)::after {
    display: none;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-container {
    flex-direction: column;
  }
}
.logo-carousel {
  overflow: hidden;
  width: 100%;
  margin: 2rem auto;
}
.logo-track {
  display: flex;
  width: calc(200%); /* Using duplicated images for seamless loop */
  animation: scroll 40s linear infinite;
}
.logo-track img {
  flex: 0 0 auto;
  height: 50px; /* Adjust as needed */
  margin: 0; /* No space between images */
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }

}
.logo-track {
  display: flex;
  width: calc(200%);
  animation: scroll 40s linear infinite;
}

.back-button-container {
  text-align: left;
  margin: 0.5rem 2rem;
}

.back-button {
  display: inline-block;
  background: #fff;
  color: red;
  border: 2px solid red;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-family: "Druk Wide Bold";
  src: url("../fonts/DRUKWide-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-size: 1rem;
  transition: background 0.3s, color 0.3s;
}
.back-button:hover {
  background: red;
  color: #fff;
}

/* HAMBURGER MENU STYLES */
.hamburger-menu {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: #000;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: none; /* initially hidden; appears on scroll */
  z-index: 10000;
}

.hamburger-menu span {
  display: block;
  height: 4px;
  background: red;
  margin: 5px auto;
  width: 70%;
}

.hamburger-dropdown {
  display: none;
  position: absolute;
  top: 45px; /* below the hamburger icon */
  right: 0;
  background: #fff; /* White background */
  border: none;     /* Remove red border */
  width: 150px;
  text-align: center; /* Center text */
}

.hamburger-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hamburger-dropdown li {
  /* Remove the red border on each list item */
  border-bottom: none;
}

.hamburger-dropdown a {
  display: block;
  padding: 10px;
  color: #000;       /* Black text */
  text-decoration: none;
  font-family: "Druk Wide Bold";
  src: url("../fonts/DRUKWide-Bold.ttf") format("truetype");
  font-size: 1rem;
}

.hamburger-dropdown a:hover {
  /* Optional hover effect: black background, white text */
  background: #000;
  color: #fff;
}

}

.portfolio-item a {
  text-decoration: none;
  color: inherit;
}

table {
  margin: 1em auto;          /* Center the table */
  border-collapse: collapse; /* Remove extra spacing between cells */
  width: 90%;
  background-color: #222;    /* Slightly lighter than background for contrast */
}
th, td {
  border: 1px solid #fff;
  padding: 10px;
  vertical-align: top;
  color: #fff;
}
th {
  background-color: #444;    /* Darker background for table headers */
  text-align: left;
}

  .doc-content {
    text-align: left;
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    line-height: 1.6;
  }
  .doc-content h1,
  .doc-content h2,
  .doc-content h3,
  .doc-content h4 {
    color: #fff;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
  }
  .doc-content p {
    margin: 0.8em 0;
  }
  .doc-content ul,
  .doc-content ol {
    margin-left: 1.8em;
    padding-left: 1em;
    list-style-position: outside;
  }
  .doc-content ul li,
  .doc-content ol li {
    margin: 0.3em 0;
  }
  .doc-content blockquote {
    margin: 1em 2em;
    font-style: italic;
    color: #ccc;
  }
  .doc-content table {
    margin: 1em auto;
    width: 100%;
    border-collapse: collapse;
    background-color: #222;
  }
  .doc-content table th, 
  .doc-content table td {
    border: 1px solid #fff;
    padding: 10px;
    vertical-align: top;
    color: #fff;
  }
  .doc-content table th {
    background-color: #444;
    text-align: left;
  }

/* VOSS header styling: centered and 50% smaller */
.voss-header {
  text-align: center;
  margin: 1rem 0;
}
.voss-header img {
  width: 50%;
  height: auto;
  display: inline-block;
  
}

/* Side images styling: larger by 200% (now 160px wide) */
.side-images {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 5;
}
.side-images.left {
  left: 0;
  padding-left: 1rem;
}
.side-images.right {
  right: 0;
  padding-right: 1rem;
}
.side-images img {
  width: 210px;  /* 200% of 80px */
  height: auto;
  display: block;
}


.cb-guide img {
  max-width: 80%;
  height: auto;
  display: inline-block;
  text-align: center;
}

/* Lightbox Modal Styles */
#lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

#lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  display: block;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  font-weight: bold;
}
@media (max-width: 768px) {
  .side-images {
    position: static;       /* Remove absolute positioning */
    transform: none;        /* Remove the translateY */
    margin: 1rem 0;         /* Add some spacing */
    flex-direction: row;    /* Display images in a row */
    justify-content: center;
  }

  .side-images.left,
  .side-images.right {
    padding-left: 0;
    padding-right: 0;
  }

  .side-images img {
    width: 80px;   /* Make them smaller if needed */
    margin: 0 0.5rem; /* Small horizontal gap */
  }
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh; /* Adjusts the container height */
  text-align: center;
  padding: 20px;
}

.image-container img {
  max-width: 90%; /* Ensures the image is responsive */
  height: auto;
  max-height: 70vh; /* Prevents the image from overflowing */
}

/* Media Queries */
@media screen and (max-width: 1024px) {
  .image-container {
    height: 70vh; /* Adjust container height for tablets */
  }
  .image-container img {
    max-width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .image-container {
    height: 60vh; /* Adjust height for smaller tablets */
  }
  .image-container img {
    max-width: 85%;
  }
}

@media screen and (max-width: 480px) {
  .image-container {
    height: auto;
    padding: 10px;
  }
  .image-container img {
    max-width: 95%;
  }
}

.shorts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.shorts-grid video {
  width: 100%;
  height: 500px;
  object-fit: cover; /* Ensures the video fills its container */
  border: none;
}
@media (max-width: 768px) {
  .shorts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .shorts-grid {
    grid-template-columns: 1fr;
  }
}

    /* Basic grid styling */
    .insta-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .insta-grid img {
      width: 200px;
      height: auto;
    }


.clients-header {
  white-space: nowrap;
}
