

/*  HEADER  HEADER  HEADER  HEADER  HEADER  HEADER  HEADER  HEADER  HEADER  HEADER   */
header {
  /* border-bottom: 2px solid #000000; */
  min-height: 70px;
  /* margin-bottom: 20px; */
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.322);
}

header h2 {
  font-family: "Anton", sans-serif;
}

.logo {
  max-width: 100%;
  height: auto;
  max-width: 69px;
}

/* mobile logo  */
.logo {
  width: 200px;
  height: auto;
}

/* tablet logo */
@media (min-width: 768px) {
  .logo {
    width: 220px;
  }
}
/* desktop logo  */
@media (min-width: 1024px) {
  .logo {
    width: 250px;
  }
}

@media (min-width: 1200px) {
  header.grid-con {
    width: 100%;
    max-width: none;
    padding-left: max(15px, calc((100vw - min(90vw, 1200px)) / 2));
    padding-right: max(15px, calc((100vw - min(90vw, 1200px)) / 2));
  }

  header.grid-con #nav {
    grid-column: 7 / -1;
  }
}
/*  vav styles */
#nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  position: relative;
}

#nav a {
  text-decoration: none;
  color: #000000;
}

/* nav menu */
.nav-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* burg nav styles  */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #000000;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 200px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.934);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  .nav-menu a {
    color: white;
  }
  .nav-menu.running {
    left: 0;
  }
  .nav-toggle.running span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .nav-toggle.running span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.running span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  /* showcase section mobile */
  .showcase {
    flex: 0 0 calc(50% - 10px);
  }
}

/* =============================================
   PROJECT PAGE — MENDEL
   ============================================= */

.project-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.project-title {
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #111;
  margin: 0;
  letter-spacing: -0.01em;
}

.hero-videos-section {
  border-top: 1px solid #e0e0e0;
  padding-top: 32px;
}

.hero-videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.hero-video-card {
  /* border: 1px solid #e0e0e0; */
  background: #efefef00;
  border-radius: 18px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.205);
}

.hero-video-card video {
  width: 100%;
  display: block;
  height: auto;
  border-radius: 18px 18px 0 0;
 
}

.hero-video-note {
  margin: 0;
  padding: 14px 16px 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #222;
  /* border-top: 1px solid #e0e0e0; */
}

/* Section label shared */
.section-label {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 20px;
}

/* Tools Used */
.tools-section {
  border-top: 1px solid #e0e0e0;
  padding-top: 32px;
}

.tools-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tools-list li {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #000;
  padding: 6px 16px;
  letter-spacing: 0.05em;
}

/* Overview */
.overview-section {
  border-top: 1px solid #e0e0e0;
  padding-top: 32px;
}

.overview-section p,
.process-section p,
.impact-section p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #222;
  max-width: 720px;
  margin: 0;
}

/* Image Showcase */
.showcase-section {
  width: 100%;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "spread spread"
    "stack facebook";
  gap: 16px;
  align-items: start;
}

.showcase-item--spread {
  grid-area: spread;
}

.showcase-stack {
  grid-area: stack;
  display: grid;
  gap: 16px;
}

.showcase-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.205);
}

.showcase-item--stacked img {
  object-fit: contain;
}

.showcase-item--facebook img {
  object-fit: contain;
}

.showcase-item--facebook {
  grid-area: facebook;
}

/* logo */

.logo-section {
  border-top: 1px solid #e0e0e0;
  padding-top: 32px;
}

.logo-layout {
  display: grid;
  grid-template-columns: minmax(180px, 320px) 1fr;
  gap: 28px;
  align-items: center;
}

.logo-layout__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.logo-layout__text p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #222;
  margin: 0;
}

.instagram-section {
  border-top: 1px solid #e0e0e0;
  padding-top: 32px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.205);
}

/* Process */
.process-section {
  border-top: 1px solid #e0e0e0;
  padding-top: 32px;
}

/* Impact & Outcomes */
.impact-section {
  border-top: 1px solid #e0e0e0;
  padding-top: 32px;
}

/* Responsive — stack single column on mobile */
@media (max-width: 600px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "spread"
      "stack"
      "facebook";
  }

  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .logo-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .project-main {
    gap: 48px;
    padding: 40px 16px 80px;
  }
}

/* FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER */
footer {
  min-height: 600px;
  background-color: rgba(199, 199, 199, 0.168);
  padding-top: 30px;
}

@media (min-width: 1200px) {
  footer.grid-con {
    width: 100%;
    max-width: none;
    padding-left: max(15px, calc((100vw - min(90vw, 1200px)) / 2));
    padding-right: max(15px, calc((100vw - min(90vw, 1200px)) / 2));
  }
}

#footer-text {
  display: flex;
  color: rgb(129, 129, 129);
  flex-direction: column;
  font-size: 23px;
  font-family: "League Spartan";
}

#footer-logo {
  width: 400px;
}

#x-icon {
  width: 60px;
}

#insta-icon {
  width: 60px;
}

#linkedin-icon {
  width: 67px;
}

#youtube-icon {
  width: 64px;
  margin-left: 10px;
}

#socials {
  display: flex;
  flex-direction: row;
  margin-top: 20px;
}

#socials img {
  margin-right: 20px;
}

#footer-buttons button {
  background-color: #00000000;
  color: rgb(129, 129, 129);
  margin-right: 20px;
  max-width: 450px;
  padding: 20px 47px;
  border-radius: 70px;
  font-size: 30px;
  cursor: pointer;
  border: 2px solid rgb(129, 129, 129);
  margin-top: 7px;
  font-family: "League Spartan";
}

#footer-buttons h2 {
  color: rgb(129, 129, 129);
  font-size: 30px;
  margin-top: 45px;
  font-family: "League Spartan";
  font-weight: 500;
}

#footer-contact p {
  color: rgb(129, 129, 129);
  font-size: 30px;
  font-family: "League Spartan";
}

#footer-contact-button {
  
  
  font-family: "League Spartan";
  margin-right: 40px;
  max-width: 450px;
  padding: 20px 137px;
  border-radius: 70px;
  font-size: 30px;
  cursor: pointer;
  
  margin-top: 50px;
  list-style: none;
  margin-top: 30px;
border-radius: 12px;

   box-shadow: -2px 2px 6px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.121);
    border: none;
}

#footer-contact a {
  text-decoration: none;
 color: rgb(129, 129, 129);
 
}