@import url('header.css');
@import url('footer.css');

@font-face {
  font-family: 'Open Sans Condensed';
  src: local('Open Sans Condensed Regular'), local('OpenSansCondensed-Regular'),
      url('../fonts/OpenSans_Condensed-Regular.woff2') format('woff2'),
      url('../fonts/OpenSans_Condensed-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans Bold Condensed';
  src: local('Open Sans Condensed SemiBold'), local('OpenSansCondensed-SemiBold'),
      url('../fonts/OpenSans_Condensed-SemiBold.woff2') format('woff2'),
      url('../fonts/OpenSans_Condensed-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Permanent Marker';
  src: local('Permanent Marker Regular'), local('PermanentMarker-Regular'),
      url('../fonts/PermanentMarker-Regular.woff2') format('woff2'),
      url('../fonts/PermanentMarker-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --title-font: 'Permanent Marker';
  --body-font: 'Open Sans Condensed';
  --black: #000000;
  --white: #ffffff;
  --title-size: 2.5em;
  --body-size: 1.2em;
  --button-size: 1.7em;
  --container-width: 80%;
  --margin-left: 140px;
}

body {
  background-color: var(--black);
  overflow-x: hidden;
}

.main-content .work-together,
.main-content .what-you-get,
.main-content .reviews-section,
.main-content .contact-me-section {
  /* padding: 40px 0; */
}

.main-content .contact-content {
  width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.main-content .contact-content.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.main-content .work-together-content {
  flex: 0 0 50%;
  padding-right: 20px;
}

.main-content .work-together-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.main-content .work-together-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

.main-content .work-together-content h1,
.main-content .what-you-get h1 {
  font-family: var(--title-font);
  font-size: var(--title-size);
  color: var(--white);
  margin-bottom: 20px;
}

.main-content .work-together-content p,
.main-content .what-you-get p {
  font-family: var(--body-font);
  font-size: var(--body-size);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.6;
}

.main-content .get-items {
  display: flex;
  justify-content: space-around;
  gap: 2em;
  margin-top: 20px;
}

.main-content .get-items article {
  flex: 1;
}

.main-content .find-me-here ul,
.main-content .faq-section ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.main-content .find-me-here li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.main-content .find-me-here li a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--body-font);
  font-size: var(--body-size);
  display: flex;
  align-items: center;
}

.main-content .find-me-here li a::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(1);
}

.main-content .find-me-here li:nth-child(1) a::before {
  background-image: url('../media/phone-icon.svg');
}

.main-content .find-me-here li:nth-child(2) a::before {
  background-image: url('../media/email-icon.svg');
}

.main-content .find-me-here li:nth-child(3) a::before {
  background-image: url('../media/instagram-icon.svg');
}

.main-content .find-me-here li a:hover {
  color: #666;
}

.main-content section.reviews {
  /* margin-top: 40px; */
  background-color: transparent;
  overflow: hidden;
  width: 100%;
  text-align: center;
  position: relative;
  /* padding: 120px 0 40px; */
}

.main-content .reviews h1 {
  font-family: var(--title-font);
  font-size: var(--title-size);
  color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.main-content .reviews p {
  font-family: var(--body-font);
  font-size: var(--body-size);
  color: var(--white);
  text-align: center;
  margin: 0 0 30px;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.main-content .reviews p a {
  color: var(--white);
  text-decoration: underline;
  font-family: var(--title-font);
  transition: color 0.3s ease;
}

.main-content .reviews p a:hover {
  color: #f0f0f0;
}

.main-content .reviews > img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100px;
  object-fit: cover;
  z-index: 1;
  display: block;
}

.main-content .reviews-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
  z-index: 2;
}

.main-content .reviews-grid {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.review {
  flex: 0 0 100%;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(4px);
  margin: 0;
  width: 100%;
}

.review:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.08);
}

.review-content {
  max-width: 800px;
  text-align: center;
  width: 100%;
}

.review-text {
  font-family: var(--body-font);
  font-size: var(--body-size);
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-author {
  font-family: var(--title-font);
  font-size: calc(var(--body-size) * 1.2);
  color: var(--white);
  margin-top: 20px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.review-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  margin-right: 5px;
}

.review-date {
  font-family: var(--body-font);
  font-size: calc(var(--body-size) * 0.9);
  color: var(--white);
  opacity: 0.7;
  margin-top: 10px;
}

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.slider-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.slider-button.prev {
  left: 20px;
}

.slider-button.next {
  right: 20px;
}

.marker-bg {
  font-family: var(--title-font);
  font-size: var(--title-size);
  color: var(--black);
  background-image: url('../media/contact-marker-bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding: 35px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

.reviews .marker-bg {
  font-family: var(--title-font);
  font-size: var(--title-size);
  color: var(--black);
  background-image: url('../media/reviews-bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

.find-me-here .marker-bg,
.faq-section .marker-bg {
  position: static;
  width: auto;
  height: auto;
  text-align: center;
  background-image: url('../media/contact-marker-bg.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 10px 30px;
  background-position: center;
  color: var(--black);
  display: inline-block;
  margin-bottom: 20px;
}

.find-me-here,
.faq-section {
  max-width: 100%;
  width: 100%;
  text-align: left;
}

.faq-section h3 {
  font-family: var(--body-font);
  font-size: var(--body-size);
  color: var(--white);
  margin-bottom: 5px;
}

.faq-section p {
  font-family: var(--body-font);
  font-size: var(--body-size);
  color: var(--white);
  margin-bottom: 5px;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  .main-content .contact-content {
    flex-direction: column;
    width: 90%;
  }

  .main-content .contact-content img {
    max-width: 100%;
    height: auto;
  }

  .main-content .work-together-content {
    width: 90%;
  }

  .main-content .work-together-content img {
    max-width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 991px) {
  .main-content .contact-content {
    grid-template-columns: 1fr;
    width: 90%;
    gap: 2em;
  }

  .main-content .work-together-content,
  .main-content .work-together-image,
  .main-content .find-me-here,
  .main-content .faq-section {
    max-width: 95%;
  }

  .main-content .work-together-content h1,
  .main-content .what-you-get h1 {
    font-size: 2.2em;
  }

  .main-content .work-together-content p,
  .main-content .what-you-get p {
    font-size: 1.1em;
  }

  .main-content .get-items {
    gap: 1.5em;
  }

  .main-content .get-items article h1 {
    font-size: 1.8em;
  }

  .main-content .get-items article p {
    font-size: 1em;
  }

  .main-content .find-me-here .marker-bg,
  .main-content .faq-section .marker-bg {
    font-size: 2em;
    padding: 8px 25px;
    height: 80px;
  }

  .main-content .reviews h1 {
    font-size: 2.2em;
  }

  .main-content .review {
    height: 450px;
  }

  .main-content .review img {
    max-width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .main-content .contact-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .main-content .work-together-content,
  .main-content .work-together-image {
    flex: 0 0 100%;
    width: 100%;
    padding-right: 0;
  }

  .main-content .work-together-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
  }

  .main-content .work-together-content h1,
  .main-content .what-you-get h1 {
    font-size: 2em;
  }

  .main-content .work-together-content p,
  .main-content .what-you-get p {
    font-size: 1.1em;
  }

  .main-content .get-items {
    flex-direction: column;
    gap: 2em;
  }

  .main-content .get-items article {
    width: 100%;
  }

  .main-content .get-items article h1 {
    font-size: 1.8em;
  }

  .main-content .get-items article p {
    font-size: 1em;
  }

  .main-content .find-me-here,
  .main-content .faq-section {
    width: 100%;
    text-align: center;
    padding: 0 10px;
  }

  .main-content .find-me-here ul,
  .main-content .faq-section ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
  }

  .main-content .find-me-here li,
  .main-content .faq-section li {
    text-align: center;
    width: 100%;
    max-width: 400px;
  }

  .main-content .find-me-here .marker-bg,
  .main-content .faq-section .marker-bg {
    padding: 8px 15px;
    font-size: 1.6em;
    height: auto;
    background-size: 100% 100%;
    width: auto;
    display: inline-block;
  }

  .main-content .reviews h1 {
    font-size: 2em;
  }

  .main-content .review {
    height: 550px;
    padding: 20px 15px;
  }

  .main-content .review-content {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px 0;
  }

  .main-content .review-text {
    font-size: 1.1em;
    line-height: 1.7;
  }

  .main-content .review-author {
    font-size: 1.2em;
    margin-top: 15px;
  }

  .main-content .slider-button {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .main-content .contact-content,
  .main-content .work-together-content {
    padding: 0 0.5em;
  }

  .main-content .contact-info h1,
  .main-content .work-together-text h1 {
    font-size: 1.8em;
  }

  .main-content .contact-info p,
  .main-content .work-together-text p {
    font-size: 1em;
  }

  .main-content .get-items article h1 {
    font-size: 1.4em;
  }

  .main-content .get-items article p {
    font-size: 0.9em;
  }

  .main-content .find-me-here,
  .main-content .faq-section {
    padding: 0 5px;
  }

  .main-content .find-me-here li,
  .main-content .faq-section li {
    max-width: 300px;
  }

  .main-content .find-me-here .marker-bg,
  .main-content .faq-section .marker-bg {
    padding: 5px 10px;
    font-size: 1.4em;
    height: auto;
    background-size: 100% 100%;
    width: auto;
  }

  .main-content .reviews h1 {
    font-size: 1.8em;
  }

  .main-content .slider-button {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }

  .main-content .review {
    height: 650px;
    padding: 20px 10px;
  }

  .main-content .review-content {
    max-width: 85%;
  }

  .main-content .review-text {
    font-size: 1em;
    line-height: 1.6;
  }

  .main-content .review-author {
    font-size: 1.1em;
    margin-top: 12px;
  }

  .main-content .find-me-here {
    padding: 15px;
  }

  .main-content .marker-bg {
    font-size: 1.8em;
  }

  .main-content .find-me-here li a {
    font-size: 1em;
  }
}

/* Print styles */
@media print {
  body {
    background-color: white;
  }

  .main-content .contact-content {
    width: 100%;
  }

  .main-content .contact-info,
  .main-content .work-together-text {
    width: 100%;
    margin-bottom: 2em;
  }

  .main-content .contact-info h1 {
    color: black;
  }

  .main-content .contact-info p {
    color: black;
  }
}

.main-content .contact-me-section {
  padding: 40px 0;
  text-align: center;
}

.main-content .contact-me-section .contact-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  flex-direction: row;
}

.main-content .find-me-here,
.main-content .faq-section {
  width: 100%;
  text-align: center;
}

.main-content .find-me-here ul,
.main-content .faq-section ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.main-content .find-me-here li,
.main-content .faq-section li {
  text-align: center;
  width: 100%;
  max-width: 400px;
}

/* Update responsive styles */
@media screen and (max-width: 767px) {
  .main-content .contact-me-section .contact-content {
    width: 90%;
    gap: 30px;
    flex-direction: column;
  }
}

/* Universal spacing between main sections */
.main-content > section {
  margin-bottom: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
}
