/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background-color: #000;
  color: #fff;
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.6;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
}

.logo {
  font-size: 1rem;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  position: relative;
}

.text-content {
  max-width: 600px;
}

.circle-text {
  font-size: 1.2rem;
  opacity: 0.3;
  margin-bottom: 20px;
}

.circle {
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 5px 12px;
  margin: 0 5px;
}

h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  line-height: 1.1;
  position: relative;
}

.highlight {
  font-size: 100px;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.highlight::before {
  content: "";
  position: absolute;
  background: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/159/331/original/project_paint_image.png?1741161070");
  /* background: rgba(255, 0, 0, 0.5); Red for testing */
  background-size: cover;
  width: 100%;
  height: 120%;
  left: 0;
  top: -10%;
  opacity: 0.6;
  mix-blend-mode: multiply;
  z-index: -1;
  pointer-events: none;
}

p {
  font-size: 1rem;
  opacity: 0.8;
  margin-top: 20px;
}

.artist-image {
  position: relative;
}

.artist-image img {
  width: 400px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  margin-left: -100px; /* Overlap effect */
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .artist-image {
    margin-top: 30px;
  }

  .artist-image img {
    margin-left: 0;
  }
  .circle-text {
    font-size: 1rem;
    text-align: center;
    padding: 0 10px;
  }
  .highlight {
    font-size: 7rem;
    line-height: 1.2;
    display: inline-block;
    text-align: center;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .circle-text {
    font-size: 1.2rem;
    padding: 0 15px;
  }
  .highlight {
    font-size: 4rem;
    padding: 0 15px;
  }
}

.btn {
  font-size: 17px;
  background: transparent;
  border: none;
  padding: 1em 1.5em;
  color: #ffedd3;
  text-transform: uppercase;
  position: relative;
  transition: 0.5s ease;
  cursor: pointer;
}

.btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #ffc506;
  transition: 0.5s ease;
}

.btn:hover {
  color: #1e1e2b;
  transition-delay: 0.5s;
}

.btn:hover::before {
  width: 100%;
}

.btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  background-color: #ffc506;
  transition: 0.4s ease;
  z-index: -1;
}

.btn:hover::after {
  height: 100%;
  transition-delay: 0.4s;
  color: aliceblue;
}

/* second page section */
/* Diamond Gallery Section */
.diamond-gallery-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 20px;
  background-image: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/159/329/original/my_background_image.jfif?1741157254");
  background-size: cover;
  /* background-position: center;
  background-repeat: no-repeat;
  height: 100%; */
  color: #fff;
  gap: 40px;
  /* opacity: 0; Initially hidden */
  transition: opacity 1s ease-out;
}

/* .diamond-gallery-section.show {
  opacity: 1; /* Show when in view */
/* } */
*/ .diamond-title {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInDown 1s ease forwards;
}

.diamond-gallery {
  display: grid;
  grid-template-columns: repeat(5, 100px);
  grid-template-rows: repeat(5, 100px);
  gap: 10px;
  transform: rotate(45deg);
  animation: fadeIn 1.5s ease forwards;
}

.diamond-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.diamond-item:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

.diamond-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(-45deg);
}

/* Positioning the diamond */
.diamond-item:nth-child(1) {
  grid-column: 3;
  grid-row: 1;
}
.diamond-item:nth-child(2) {
  grid-column: 2;
  grid-row: 2;
}
.diamond-item:nth-child(3) {
  grid-column: 3;
  grid-row: 2;
}
.diamond-item:nth-child(4) {
  grid-column: 4;
  grid-row: 2;
}
.diamond-item:nth-child(5) {
  grid-column: 1;
  grid-row: 3;
}
.diamond-item:nth-child(6) {
  grid-column: 2;
  grid-row: 3;
}
.diamond-item:nth-child(7) {
  grid-column: 3;
  grid-row: 3;
}
.diamond-item:nth-child(8) {
  grid-column: 4;
  grid-row: 3;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: rotate(45deg) translateY(50px);
  }
  to {
    opacity: 1;
    transform: rotate(45deg) translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .diamond-gallery {
    grid-template-columns: repeat(5, 60px);
    grid-template-rows: repeat(5, 60px);
    gap: 5px;
  }

  .diamond-title {
    font-size: 1.8rem;
  }
}

/*this is the about section */
.about-section {
  position: relative;
  padding: 80px 10%;
  background-color: #0d0d0d;
  color: #d6d6d6;
  overflow: hidden;
  line-height: 1.8;
  font-family: "Open Sans", sans-serif;
}

.about-section__title {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 160px;
  color: #1a1a1a;
  letter-spacing: 20px;
  font-weight: 900;
  pointer-events: none;
  z-index: 1;
}

.about-section__content {
  display: flex;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.about-section__left {
  flex: 1;
  max-width: 30%;
}

.about-section__artist-name {
  font-size: 24px;
  color: #ffedd3;
  letter-spacing: 3px;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-top: 84px;
}

.about-section__side-text {
  font-size: 14px;
  opacity: 0.6;
  padding-top: 17px;
  /* display: none; */
}

.about-section__right {
  flex: 2;
  max-width: 70%;
}

.about-section__bio {
  margin-bottom: 30px;
}

.about-section__image-wrapper {
  width: 100%;
  max-width: 600px;
  margin-top: 20px;
}

.about-section__image {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-section__image:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

@media (max-width: 992px) {
  .about-section__content {
    flex-direction: column;
  }

  .about-section__left,
  .about-section__right {
    max-width: 100%;
  }

  .about-section__title {
    font-size: 100px;
  }

  .about-section__side-text {
    display: block;
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .about-section__title {
    font-size: 60px;
  }

  .about-section__artist-name {
    font-size: 20px;
  }
}
/* Contact Section */
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  height: 100vh; /* Full page height */
  background-color: black;
  padding-right: 10vw;
  text-align: right;
}

/* Big "Let's Talk" text */
.contact-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12vw; /* Huge size */
  font-weight: bold;
  color: rgb(252, 229, 98);
  line-height: 1;
  padding-right: 334px;
}

/* Client Email */
.contact-email {
  font-size: 4vw;
  color: rgb(243, 220, 87);
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-title {
    font-size: 14vw; /* Adjust font size for medium screens */
    padding-right: 25vw; /* Adjust padding for medium screens */
  }

  .contact-email {
    font-size: 5vw; /* Adjust email font size for medium screens */
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 18vw; /* Adjust font size for smaller screens */
    padding-right: 20vw; /* Adjust padding for smaller screens */
  }

  .contact-email {
    font-size: 6vw; /* Adjust email font size for smaller screens */
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 22vw; /* Further adjust font size for very small screens */
    padding-right: 15vw; /* Adjust padding for very small screens */
  }

  /* .contact-email {
    font-size: 8vw; /* Further adjust email font size for very small screens */
  /* } */

  .contact-email {
    font-size: 8vw; /* Further adjust email font size for very small screens */
    margin-top: 3px; /* Reduce margin for very small screens */
    max-width: 85%; /* Adjust max width for better fit */
    word-wrap: break-word; /* Allow wrapping for very long email addresses */
  }
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #444040;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.logo span {
  color: rgb(252, 241, 179);
  font-size: 20px;
  font-family: "Georgia", serif;
}
.underline {
  width: 100%;
  height: 4px;
  background-color: rgb(245, 236, 188);
  margin-top: 5px;
}

/* making sure everything is completely responsive */
