/* Base Styles */
:root {
  --primary-color: black;
  --secondary-color: black;
  --accent-color: #c9a778;
  --text-color: #423627;
  --background-color: #fff;
  --font-heading: "League Gothic", serif;
  --font-body: "Source Sans 3", sans-serif;
  --font-heading2: "League Gothic", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color);
  margin-top: 75px;
}

@view-transition {
  navigation: auto;
}
.wrapper {
  --wrapperWidth: 1600px;
  padding-inline: max(20px, (100% - var(--wrapperWidth)) / 2);
}
.wrapper--1500 {
  --wrapperWidth: 1500px;
}
.wrapper--1400 {
  --wrapperWidth: 1400px;
}
.wrapper--1300 {
  --wrapperWidth: 1300px;
}
.wrapper--1200 {
  --wrapperWidth: 1200px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
}

p + p {
  margin-top: 10px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* Header Styles */
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1B1B1D;
  transition: padding 0.3s ease;
  align-items: center;
  height: 75px;
  padding-right: 30px;
  padding-left: 30px;
  padding-top: 0px;
  padding-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-heading2);
  position: fixed;
  z-index: 999;
}
header li a {
  font-family: var(--font-heading2) !important;
  font-weight: 700 !important;
}

.header__left {
  display: flex;
  gap: clamp(10px, 1.5625vw, 30px);
  align-items: center;
  align-content: center;
}
@media (max-width: 400px) {
  .header__left {
    flex-direction: column;
  }
}
.header__left a {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.header__socials {
  display: flex;
  gap: clamp(5px, 0.5208333333vw, 10px);
  height: 20px;
  align-items: center;
}
.header__socials a {
  line-height: 1;
}
.header__socials a:hover svg, .header__socials a:hover svg * {
  fill: #DB0035;
}
.header__socials a svg, .header__socials a svg * {
  transition: 0.2s ease;
}
@media (max-width: 400px) {
  .header__socials {
    display: none;
  }
}

.logo {
  width: clamp(150px, 13.5416666667vw, 260px);
}

.tagline {
  font-size: 0.8rem;
  color: var(--accent-color);
  letter-spacing: 3px;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li a {
  color: #fff;
  font-size: clamp(16px, 1.3020833333vw, 25px);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 400;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--secondary-color);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.portfolio {
  padding-bottom: clamp(20px, 2.6041666667vw, 50px) !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: calc(100% - 40px);
  width: 100%;
  margin: 0 auto;
  padding-top: 20px;
}

.portfolio-grid {
  grid-column: 1/13;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: min-content;
  gap: 10px;
}
@media (max-width: 700px) {
  .portfolio-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.portfolio-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  padding: clamp(20px, 1.8229166667vw, 35px) clamp(20px, 2.6041666667vw, 50px);
  display: flex;
  justify-content: start;
  align-items: end;
  align-content: end;
}
@media (max-width: 700px) {
  .portfolio-item {
    aspect-ratio: 16/9;
  }
}
.portfolio-item h3 {
  font-size: clamp(20px, 2.8645833333vw, 55px);
  color: #fff;
  z-index: 5;
  position: relative;
  line-height: 1;
  margin-bottom: 0;
  text-decoration: underline;
  text-underline-offset: 0.1em;
  text-decoration-thickness: 0.05em;
  text-decoration-color: transparent;
  transition: 0.2s ease;
}
.portfolio-item::before {
  content: "";
  position: absolute;
  height: 50%;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  z-index: 4;
}
@media (min-width: 700px) {
  .portfolio-item:first-child, .portfolio-item:nth-child(4n+1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 16/9;
  }
}
.portfolio-item img, .portfolio-item video {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.portfolio-item video {
  z-index: 3;
}
.portfolio-item:hover h3 {
  text-decoration-color: currentColor;
}

.about {
  padding-top: clamp(20px, 5.2083333333vw, 100px) !important;
  padding-bottom: clamp(20px, 5.2083333333vw, 100px) !important;
}

.about {
  display: flex; /* Enable flexbox for easy side-by-side arrangement */
  gap: clamp(20px, 5.2083333333vw, 100px); /* Add spacing between left and right sections */
  justify-content: space-between;
}

.about-left {
  flex: 1; /* Allow the left section to take up available space */
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.about-left__title {
  color: #DB0035;
  font-size: clamp(30px, 3.90625vw, 75px);
  font-family: var(--font-heading2);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
}

.about-left__subtitle {
  color: #161615;
  text-transform: uppercase;
  font-size: clamp(27px, 2.34375vw, 45px) !important;
  font-weight: 400;
  font-family: var(--font-heading2);
  line-height: 1;
  margin-bottom: clamp(20px, 1.5625vw, 30px);
}

.about-left__text {
  font-size: clamp(16px, 1.0416666667vw, 20px); /* Adjust text font size as needed */
  line-height: 1.3; /* Adjust line spacing as needed */
  font-family: var(--font-body);
  color: var(--text-color);
}
.about-left__text p {
  max-width: 560px;
}
.about-left__text p b {
  font-weight: 600;
}
.about-left__text p + p {
  margin-top: clamp(15px, 1.40625vw, 27px);
}

.about-right {
  flex: 1;
  display: flex;
  justify-content: center;
  max-width: 418px;
  align-self: center;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 418/743;
}

.about-right img {
  max-width: 100%; /* Ensure image doesn't exceed container width */
  height: auto; /* Maintain aspect ratio */
}

img {
  display: flex;
  margin-bottom: 0;
}

/* Responsive adjustments (optional) */
@media (max-width: 768px) {
  .about {
    flex-direction: column; /* Stack sections vertically on smaller screens */
    gap: 30px;
  }
  .about-left, .about-right {
    flex: 0 0 100%; /* Make sections full width */
  }
}
.contact {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 5.2083333333vw, 100px);
  overflow: hidden;
}

.contact__right {
  position: relative;
}
.contact__right .contact__image {
  height: 100%;
  width: 100%;
}
.contact__right img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.contact__title {
  color: #DB0035;
  font-size: clamp(30px, 3.90625vw, 75px);
  font-family: var(--font-heading2);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
  text-align: center;
  text-transform: uppercase;
}

.contactitems {
  margin-top: 20px;
}
.contactitems > div {
  display: flex;
  flex-direction: column;
}

.contact__items {
  display: flex;
  flex-wrap: wrap;
}
.contact__items > div {
  max-width: 50%;
  width: 100%;
}
@media (max-width: 800px) {
  .contact__items > div {
    max-width: 100%;
  }
}
@media (max-width: 800px) {
  .contact__items {
    flex-direction: column;
  }
}

.contact__left {
  padding: clamp(50px, 10.4166666667vw, 200px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  align-content: center;
}
@media (max-width: 900px) {
  .contact__left {
    padding: clamp(20px, 2.6041666667vw, 50px);
  }
}
.contact__left > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: clamp(18px, 1.0416666667vw, 20px);
}

.project__header {
  padding-top: clamp(20px, 2.6041666667vw, 50px);
  padding-bottom: clamp(20px, 2.6041666667vw, 50px);
  border-radius: 4px;
}

.project__header__image {
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
}
.project__header__image img {
  object-fit: cover;
  width: 100%;
  border-radius: 4px;
}

.project__content {
  padding-top: clamp(20px, 2.6041666667vw, 50px);
  padding-bottom: clamp(20px, 2.6041666667vw, 50px);
  display: flex;
  gap: clamp(20px, 5.2083333333vw, 100px);
  justify-content: space-between;
}
@media (max-width: 600px) {
  .project__content {
    flex-direction: column;
  }
}
.project__content > div {
  max-width: 50%;
}
@media (max-width: 600px) {
  .project__content > div {
    max-width: 100%;
  }
}

.project__content__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project__content__title {
  color: #DB0035;
  font-size: clamp(30px, 3.90625vw, 75px);
  font-family: var(--font-heading2);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
}
@media (max-width: 800px) {
  .project__content__title {
    font-size: 30px;
  }
}

.project__content__text {
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1.3;
  font-family: var(--font-body);
  color: var(--text-color);
  max-width: 500px;
}

.project__content__right {
  width: 100%;
}

.project__content__crew {
  flex-direction: column;
  display: grid;
  grid-template-columns: auto 1fr;
}

.project__content__crew-heading {
  color: #161615;
  text-transform: uppercase;
  font-size: clamp(20px, 2.34375vw, 45px) !important;
  font-weight: 400;
  font-family: var(--font-heading2);
  line-height: 1;
  margin-bottom: clamp(20px, 1.5625vw, 30px);
}
@media (max-width: 800px) {
  .project__content__crew-heading {
    font-size: 30px !important;
    margin-bottom: 10px;
  }
}

.project__content__crew-item {
  gap: 20px;
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: subgrid;
  padding: 5px;
  font-size: clamp(16px, 1.0416666667vw, 20px);
}
@media (max-width: 800px) {
  .project__content__crew-item {
    padding: 0;
  }
}

.crew-role {
  font-weight: 600;
}

.project__stills {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
  gap: 10px;
  padding-top: clamp(20px, 2.6041666667vw, 50px);
  padding-bottom: clamp(20px, 2.6041666667vw, 50px);
}
@media (max-width: 900px) {
  .project__stills {
    grid-template-columns: 1fr 1fr;
  }
}

.project__stills__item {
  position: relative;
}
.project__stills__item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(10px, 1.0416666667vw, 20px);
  border-top: 1px solid #DB0035;
}
footer nav ul li a {
  color: #DB0035;
  font-size: clamp(16px, 1.3020833333vw, 25px);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 400;
}

.footer__logo {
  width: clamp(150px, 13.5416666667vw, 260px);
}

.footer__left {
  display: flex;
  gap: 20px;
  align-items: center;
  align-content: center;
}

/*# sourceMappingURL=main.css.map */
