/* Fonts */
@font-face {
  font-family: 'Futura';
  src: url("fonts/futura medium bt.ttf");
}

@font-face {
  font-family: "Mont";
  src: url("fonts/mont");
}

@font-face {
  font-family: "Nexa light";
  src: url("fonts/nexa/Nexa-ExtraLight.ttf");
}

@font-face {
  font-family: "Nexa heavy";
  src: url("fonts/nexa/Nexa-Heavy.ttf");
}

@font-face {
  font-family: "Peugeot regular";
  src: url("fonts/peugeot/PeugeotRegular.otf");
}

body {
  font-family: "Nexa light";
  font-weight: bolder;
}


p{
  font-size: 20px;
}

.primary-text{
  color: #13328a;
}

.logo{
  width: 50%;
  padding: 0;
}

.navbar-nav li{
  transition: 0.1s ease-in-out;
  margin: 10px 0;
}

.navbar-nav li:hover{
  border-bottom: 1px solid #26148d;
  color: #26148d;
}


.nav-btn{
  background: linear-gradient(to left, #f1D000, #e8a703);
  margin: auto;
}

/* Hero Section */
.hero {
  background: url("../img/banner.jpg") center/cover no-repeat;
  min-height: 90vh;
  position: relative;
  font-family: 'Futura';
}

section p{
  text-align: justify;
}

.hero-section {
  background: linear-gradient(to right, #f8f9fa, #ffffff);
  padding: 4rem 0;
  border-bottom: 1px solid #eee;
}

  .director-img {
    max-width: 400px;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
  }
  .quote {
    font-style: italic;
    color: #555;
    border-left: 4px solid #ffc107;
    padding-left: 1rem;
  }
  
.projects-section{
  background-position: center;
  padding: 4rem 0;
  position: relative;
  background-size: cover;
}

.projects-section .container {
  position: relative;
  z-index: 2;
 }

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}


.hero .title{
  font-size: 250%;
}
.hero .subtitle{
  font-weight: 300;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.partner-card:hover{
  cursor: pointer;
}

.projects-title{
  font-size: 250%;
  color:#102a70;
}
.projects-subtitle{
  font-size: medium;
}


.presentation p{
  font-size: medium;
}

/* Card */
.card{
    border: 0;
    box-shadow: none;
}

.project-card{
  object-fit: contain;
  aspect-ratio: 16/9;
}

.project-card a{
  color: #102a70;
  text-decoration: none;
}

.project-card h5{
  font-family: "Peugeot regular";
}

#project-text{
  white-space: pre-line;
}

.card h5 {
  color: #102a70;
  font-size:large;
}

.card p{
    font-size: medium;
}

.card-img-top{
  height: 400px;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 768px) {
  .card-img-top {
    height: 200px;
  }
}

.card-img-top-2{
  width: 200px;
  margin: auto;
  margin-top: 0;
  margin-bottom: 0;
}

.bulb{
  width: 50%;
}

/* Make all cards stretch to the same height in a row */
.row.align-items-stretch > [class*='col-'] {
  display: flex;
}

.equal-card {
  display: flex;
  flex-direction: column;
}

/* Make all images same height */
.equal-img {
  height: 220px; /* adjust to your design */
  object-fit: cover;
}

/* Ensure body takes available vertical space evenly */
.equal-card .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Optional: consistent title spacing */
.equal-card h5 {
  min-height: 60px; /* adjust based on your design */
}

/* Optional: responsiveness tweaks */
@media (max-width: 768px) {
  .equal-img {
    height: 240px;
  }
}

/* Navbar */
.navbar .btn-warning {
  border-radius: 30px;
  padding: 0.5rem 1.2rem;
}

/* Buttons */
.btn-outline-primary {
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
}

.btn-warning {
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
}

.partner-card{
  width: 100%;
}

.partner-img{
  object-fit:contain;
  width: 100%;
}

.dg p{
  font-size: 14px;
  letter-spacing: 0;
  text-align: justify;
}

.section-divider {
  border-top: 2px solid #e0e0e0;
  margin: 0 auto;
  width: 80%;
}

.project-description p{
  font-size: 16px;
  font-weight: 600;
}

.btn-gallery{
  background-color: #091c51;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  box-sizing: border-box;
  text-align: center;
  transition: ease 0.3s all;
}

.btn-gallery:hover{
  background-color: #e8a703;
  color: #000;
  transform: scale(1.03);
}



footer{
  background-color: #091c51;
}

footer a{
  text-decoration: underline;
  color: #fff;
}

footer img{
  height: 80px; 
  filter: brightness(0) invert(1);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }
}

.polaroid {
      background: white;
      padding: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      transition: transform 0.2s ease-in-out;
      cursor: pointer;
    }
    .polaroid img {
      width: 100%;
      aspect-ratio: 4/3;
    }
    .polaroid:hover {
      transform: scale(1.05);
    }
    .fullscreen-viewer {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.9);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 2000;
    }
    .fullscreen-viewer img {
      max-width: 90%;
      max-height: 80%;
      border-radius: 10px;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    }
    .viewer-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.2);
      border: none;
      color: white;
      font-size: 2rem;
      padding: 0 10px;
      cursor: pointer;
    }
    .viewer-btn:hover {
      background: rgba(255, 255, 255, 0.4);
    }
    #prevBtn { left: 5%; }
    #nextBtn { right: 5%; }
    #closeBtn {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 2rem;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
    }
