/* Reset */
:root {
  --global-text-color: #D6BD6E;  
  --site-width: 1400px;
}
@font-face {
  font-family: 'Euclid';
  src: url('../fonts/Euclid.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neiko';
  src: url('../fonts/Neiko.otf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  font-family: 'Euclid', -apple-system, BlinkMacSystemFont,
               'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
               'Helvetica Neue', Arial, sans-serif;
  background-color: black;
  color: var(--global-text-color);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Euclid', sans-serif;
  font-weight: 500;
  color: var(--global-text-color);  
}
.container {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 20px;
}
/* ================= Banner ================= */
.hero-bg{
  width: 100%;
  min-height: 950px;
  background: url('../images/banner-gradient.png') bottom/cover no-repeat;
}
.hero-banner {
  width: 100%;
  min-height: 950px;
  background: url('../images/banner_bg.png') center/cover no-repeat;
  position: relative;
  padding-top: 30px;
  color: var(--global-text-color);
  box-shadow: rgb(0 0 0 / 100%) 0px -100px 100px -28px inset;
}

/* ================= Navigation ================= */
.nav-wrapper {
  margin-bottom: 80px;
}

.custom-nav {
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(0, 0, 0);
  border-radius: 50px;
  padding: 8px 40px;
  box-shadow: 0px 0px 51.6px 0px #D6BD6E99;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-left,
.nav-right {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.custom-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.custom-nav a {
  text-decoration: none;
  color: var(--global-text-color);
  font-size: 15px;
  transition: opacity 0.3s ease;
}

.custom-nav a:hover {
  color:#ffffff;
}
.navbar-expand-lg .navbar-collapse{
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 40px;
}
.nav-logo{
  font-size: 36px;
}
/* ================= Banner Content ================= */
.hero-content {
  padding-bottom: 80px;
}
.text-content{
  padding-top: 10%;
}
.text-content h1 {
  font-family: 'Neiko';
  font-size: 120px;
  letter-spacing: 5px;
  font-weight: 400;
  margin-bottom: 15px;
}

.text-content h4 {
  font-family: 'Neiko';
  font-size: 58px;
  font-weight: 400;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 16px;
  max-width: 500px;
  line-height: 1.6;
}

/* SECTION */
.ivfx-about {
  padding: 100px 0 50px 0;
}

/* GRID */
.ivfx-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 320px;
}

/* SUBTITLE WITH BULLET */
.ivfx-subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-size: 17px;
  margin-bottom: 20px;
  font-family: 'Euclid', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
}
.ivfx-subtitle span{
	color: #fff;
}

.ivfx-bullet {
  width: 10px;
  height: 10px;
  background-color: #ffffff;
}

/* TITLE */
.ivfx-title {
  font-family: 'Neiko';
  font-size: 56px;
  line-height: 1.1;
  font-weight: 500;
  margin: 0;
}

/* DESCRIPTION */
.ivfx-description {
  font-family: 'Euclid', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 520px;
}

/* BUTTON */
.ivfx-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  text-decoration: none;
  position: relative;
  color: #ffffff;
}

.ivfx-btn .arrow {
  transition: transform 0.3s ease;
}

.ivfx-btn:hover .arrow {
  transform: translateX(5px);
}

.ivfx-content-section {
  height: 800px;
  background-image: url('../images/ivfx-bg.png'); 
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: rgb(0 0 0 / 100%) 0px -100px 100px -28px inset;
}

/* PUSH CONTENT TO RIGHT */
.ivfx-content-section .wrapper {
  display: flex;
  justify-content: flex-end;
  padding-top: 370px;
}

/* CONTENT BOX */
.ivfx-content-box {
  max-width: 600px;
  font-size: 16px;
  line-height: 1.8;
  float: right;
  margin-top: 40%;
}

/* CATEGORIES SECTION BASE */
.ivfx-categories {
  background-color: #000;
  padding: 100px 0 80px 0;
}

/* ROW 1 – HEADER */
.ivfx-categories-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 320px;
  margin-bottom: 30px;
  align-items: start;
}

/* LEFT */
.ivfx-title-sm {
  font-size: 56px;
  font-weight: 500;
  margin: 0;
   font-family: 'Neiko';
}

/* RIGHT */
.ivfx-categories-intro p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 520px;
	margin-top: 10%;
}
.ivfx-categories-intro
{
	margin-top: 5%;
}

/* ROW 2 – CARDS GRID */
.ivfx-categories-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

/* CARD */
.ivfx-card {
  padding: 5px 0px;
  transition: background 0.3s ease;
}

.ivfx-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
}
.ivfx-card .ivfx-card-details{
  padding: 10px 20px;
}
.ivfx-card p.title {
  color: #ffffff;
}
.ivfx-card p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* HOVER EFFECT */
.ivfx-card:hover {
  background: #151515;
}
/* SECTION BASE */
.ivfx-panel {
  background-color: #000;
  padding: 40px 0;
}

/* ROW 1 */
.ivfx-panel__header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 320px;
  margin-bottom: 20px;
  align-items: start;
}

/* RIGHT CONTENT */
.ivfx-panel__intro p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 520px;
	margin-top: 10%;
}

/* SECTION */
.ivfx-panel-table {
  background: #000;
  padding: 40px 0;
}

/* HEADER */
.ivfx-panel-table__head {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(214, 189, 110, 0.3);
  font-size: 18px;
  opacity: 0.8;
  color: #fff;
}

/* ROW */
.ivfx-panel-table__row {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid rgba(214, 189, 110, 0.2);
  transition: background 0.3s ease;
}

.ivfx-panel-table__row:hover {
  background: #151515;
}

/* PERSON */
.ivfx-panel-person {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ivfx-panel-person img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  filter: grayscale(100%);
}
.ivfx-panel-person span
{
	font-size: 18px;
}

/* POSITION */
.ivfx-panel-position {
  font-size: 18px;
  opacity: 0.9;
}

/* MESSAGE */
.ivfx-panel-message {
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
}

/* Section background */
.iaff-cta-section {
  background-color: #000;
  padding: 40px 20px; /* top-bottom spacing */
  display: flex;
  justify-content: center;
}

/* Gradient block */
.iaff-cta-box {
  width: 1000px;
  height: 336px;
  background: linear-gradient(
    90deg,
    #D6BD6E 0%,
    #39321D 30%,
    #000000 50%,
    #39321D 70%,
    #D6BD6E 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content center */
.iaff-cta-content {
  max-width: 477px;
  text-align: center;
}

/* Text */
.iaff-cta-content p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 25px;
}

/* Button */
.iaff-cta-btn {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  padding: 12px 28px;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.iaff-cta-btn:hover {
  background-color: #f2f2f2;
}
/* SECTION */
.vibes-section {
  /* background-image: repeating-linear-gradient(18deg, rgba(214, 189, 110, 0.11), rgba(214, 189, 110, 0.11) 1px, transparent 1px, transparent 6px); */
  /* background-size: 4px 4px; */
  background-image: url('../images/gallery-bg.png'); 
  background-size: cover;
  background-position: center;
  padding: 60px 0 60px;
}

/* HEADER */
.vibes-header {
  margin-bottom: 80px;
}

.section-subtitle {
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.section-subtitle .dot {
  width: 6px;
  height: 6px;
  background: #ffffff;
  display: inline-block;
}

.section-title {
  color: #D6BD6E;
  font-size: 56px;
  font-weight: 400;
  font-family: 'Neiko';
}

/* WRAPPER */
.vibes-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}

/* SLIDER */
.vibes-slider {
  display: flex;
  transition: transform 0.8s ease;
  will-change: transform;
}

.vibes-slide {
  min-width: 25%;
  padding: 0;
}

.vibes-slide img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  cursor: pointer;
}

/* RECTANGLE BULLETS */
.vibes-rect-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 65px;
  position: relative;
}
.vibes-rect-dots::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 1px;
  background: #ffffff;
  transform: translateY(-50%);
  max-width: 50%;
  left: 25%;
}
.vibes-rect-dots span {
  width: 28px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.4s ease;
}

.vibes-rect-dots span.active {
  background: #D6BD6E;
  width: 40px;
}

/* FOOTER MAIN */
.iaff-footer {
  background-image: url('../images/footer-bg.png');
  background-size: cover;
  background-position: center;
  padding: 80px 0 0;
  color: #ffffff;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: #D6BD6E;
  cursor: pointer;
  user-select: none;
}

.lightbox-nav.prev { left: 30px; }
.lightbox-nav.next { right: 30px; }

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

/* COLUMN */
.footer-col h6 {
  color: #D6BD6E;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
  opacity: 1;
}

/* IAFF LOGO */
.footer-logo {
  text-align: center;
  margin: 60px 0;
}
.footer-logo img {
  max-width: 160px;
}
.footer-logo a 
  {
    background: linear-gradient(to bottom right, #594E2E 37%, #D6BD6E 56%, #52482A 77%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    font-size: 200px;
    letter-spacing: 300px;
    text-decoration: none;
    text-align: center;
    font-weight: 400;
	  opacity: 0.2;
}

/* BOTTOM BAR */
.footer-bottom {
  padding: 0 0 25px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 18px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--global-text-color);
}

.footer-bottom img {
  height: 100px;
}

/* ================= Responsive ================= */
@media (max-width: 991px) {
  .custom-nav {
    flex-direction: column;
    gap: 15px;
    border-radius: 30px;
    background:none;
  }
   .nav-logo {
    display: none;
  }

  /* vertical menu */
   .navbar-collapse {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transform: translateY(-30px);
    pointer-events: none;

    transition: opacity 0.45s ease, transform 0.45s ease;
    z-index: 9999;
  }

  /* When menu opens */
  .navbar-collapse.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Menu lists */
  .nav-left,
  .nav-right {
    flex-direction: column;
    align-items: center;
  }

  .nav-link {
    font-size: 1.2rem;
    letter-spacing: 1px;
    padding: 14px 0;
  }

  /* Hide center logo inside menu */
  .nav-logo {
    display: none;
  }

  /* Keep hamburger above overlay */
  .navbar-toggler {
    z-index: 10000;
  }
  .custom-nav a{
    font-size: 30px;
  }
  .navbar-toggler-icon {
    filter: invert(1);
  }
  .navbar-expand-lg .navbar-collapse{
    justify-content: center;
  }
  .text-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .text-content p {
    margin: 0 auto;
  }
  .ivfx-about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ivfx-card img{
    height: auto;
  }

  .ivfx-title {
    font-size: 42px;
  }
  .ivfx-content-section {
    height: auto;
    padding: 80px 0;
    background-position: center bottom;
    background-size: cover;
  }

  .ivfx-content-box {
    font-size: 18px;
    margin-top: 5%;
  }
  .ivfx-categories-header-row {
    gap: 2rem;
    width: 100%;
  }

  .ivfx-categories-cards {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .ivfx-title-sm {
    font-size: 34px;
  }
    .ivfx-panel__header-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
    .ivfx-panel-table__head {
    display: none;
  }

  .ivfx-panel-table__row {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 25px 0;
  }

  .ivfx-panel-message {
    max-width: 100%;
  }
  .vibes-gallery {
    flex-direction: column;
  }

  .vibes-item.highlight {
    padding: 15px;
  }

  .section-title {
    font-size: 36px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }
  .footer-logo a {
    letter-spacing: 82px;
  }
}

@media (max-width: 576px) {
  .ivfx-content-section{
    float: left;
  }
  .ivfx-categories{
    margin-top: 5%;
  }
  .ivfx-categories-header-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
  }
  .text-content h1 {
    font-size: 106px;
    letter-spacing: 19px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-logo a {
    letter-spacing: 20px;
    font-size: 135px;
  }
  .vibes-slide { min-width: 100%; }
}

@media (max-width: 1199px) {
  .ivfx-categories-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .iaff-cta-box {
    width: 100%;
    height: auto;
    padding: 60px 20px;
  }
}
