@charset "utf-8";

/* =========================
   Base
========================= */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: "strenuous", Arial, sans-serif;
  background-color: #F9F0E4;
  background-image: url("../images/projects_hero.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding-bottom: 70px;
}

h2 {
  color: #ED8CC4;
  font-family: "strenuous", Arial, sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

h3 {
    color: #5B3A8A;
    font-family: "strenuous", Arial, sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 2.5rem);
    margin-top: 100px;
}

h4 {
  color: #4D375C;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
}

p {
  font-family: "Montserrat", Arial, sans-serif;
}

body {
  background-repeat: repeat-y; /* add this */
}


.project-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 15% 100px 15%; /* increase left and right padding */
}

/* =========================
   Global Images
========================= */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   Project Layout
========================= */
.project-layout {
  display: flex;
  flex-direction: row-reverse; /* text right, image left */
  align-items: flex-start;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 5% 100px 5%;
}

.project-text {
  flex: 1;
  text-align: left;
  padding-right: 40px;
}

.project-image {
  flex: 1;
}

.project-image img {
  width: 100%;
  height: auto;
}

/* =========================
   Image Classes
========================= */
.image-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  width: 100%;
}

.image-row img {
  flex: 1;
  width: 0; /* lets flex control the width */
  min-width: 0;
  height: auto;
  max-width: none;
  margin: 0;
}

.image-row img {
  width: 20%;
  height: auto;
  max-width: none;
  margin: 0;
}
.image-row a {
  flex: 1;
  display: flex;
}

.image-row a img {
  width: 100%;
  height: auto;
}

.infographic-photo {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    margin-top: 100px;
}
.billboard-photo{
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    margin-top: 100px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 20px;
}
.flier-photo {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 20px;
}

.swamp-photo,
.gpamountain-photo,
.lakejames-photo {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  margin: 0;
}

.poster-photo {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    margin-top: 100px;
}



.typemockup {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    margin-top: 100px;
}

.bookletcover,
.bookletmiddle,
.bookletback {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}
.packaging-photo {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    margin-top: 100px;
}

.longsilks {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    margin-top: 100px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
}
.silkshirt{
 width: 100%;
  max-width: none;
  height: auto;
  display: block;
  margin: 0 auto;	
}


/* =========================
   Project Navigation
========================= */
.project-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  z-index: 1000;
	
}

.project-nav-home {
  color: #ED8CC4;
  text-decoration: none;
  font-family: "strenuous", Arial, sans-serif;
  font-weight: 800;
  font-size: 22px;
  transition: transform 0.2s ease;
	
}

.project-nav-btn {
  color: #ED8CC4;
  text-decoration: none;
  font-family: "strenuous", Arial, sans-serif;
  font-weight: 800;
  font-size: 22px;
  transition: transform 0.2s ease;
	

}

.project-nav-home:hover,
.project-nav-btn:hover {
  transform: scale(1.08);
}

.project-layout {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 5% 100px 5%;
}

.project-image {
  flex: 1.5; /* bigger than text column */
}

.project-text {
  flex: 1;
  text-align: left;
  padding-right: 0;
}

/* =========================
   Responsive
========================= */

/* Tablet (max 900px) */
@media (max-width: 900px) {
  body {
    background-image: url("../images/tablet_about.png");
    background-attachment: scroll;
    background-size: contain;
  }

  .project-layout {
    flex-direction: column;
    padding: 20px 15% 100px 15%; /* adjust this number */
  }

  .project-text {
    padding-right: 0;
  }
}

/* Mid tablet (max 768px) */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

/* Mobile (max 520px) */
@media (max-width: 520px) {
  body {
    background-image: url("../images/mobile_contact.png");
  }
  .project-layout {
    padding: 20px 10% 100px 10%;
  }
}

/* Mid tablet (max 768px) */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
	.project-layout {
    padding: 20px 35% 100px 35%;
  }
}

/* Mobile (max 520px) */
@media (max-width: 520px) {
  body {
    background-image: url("../images/mobile_contact.png");
  }
	.project-layout {
    padding: 20px 10% 100px 10%;
  }
}

