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


body {
    background-color: #EEEEEC;
    font-family: "Neue Haas Grotesk Display Thin", sans-serif;
    color: #000000;
    margin: 0;
    font-weight: 200;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #EEEEEC;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
  font-family: 'Panchang Variable', sans-serif;
  font-weight: 400;
  font-size: 1.8vw;
}

#go-back {
    /* Match whatever styles you used for your h2 */
    font-size: 18px;     /* same as your h2 */
    font-weight: 200;
    font-family: "Neue Haas Grotesk Display Thin", sans-serif;
    margin-bottom: -5px;
    /* plus your existing button styles if you like */
    color: #000;
    border: 1.3px solid #000;
    background-color: #d4d4d470;
    border-radius: 50px;
    padding: 6px 15px;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
  }

  #go-back:hover {
    background-color: #28282A; /* White background on hover */
    color: #EEEEEC; /* Blue text on hover */
    border: 1.7px solid #031ba600; /* Keep blue outline */
  }

.title-section {
    margin: 0;
    padding: 0;
  }
  
  .title-section h2 {
    font-family: 'Neue Haas Grotesk Display Pro Light', sans-serif;
    font-weight: 300;
    text-align: center;
    margin: 40px 0 20px 0;
    font-size: clamp(8px, 3vw, 17px); /* Responsive font size */
    line-height: 1.2;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}
  
  .title-section .main-photo {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 20px 0;      /* Only bottom spacing; no horizontal margin */
  }

  .description {
    max-width: 650px;        /* Optional: limit line width */
   margin-left: 2vw;
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.4;
    text-align: left;        /* Keep paragraph text left-aligned */
  }

  .description1 {
    max-width: 550px;        /* Optional: limit line width */
   margin-top: 30vh;

    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.4;
    text-align: left;        /* Keep paragraph text left-aligned */
  }
  
    

      @font-face {
        font-family: "Panchang Variable";
        src: url("./fonts/Panchang-Variable.woff2") format("woff2");
        font-weight: 100 900;
        font-style: normal;
    }
    
/* Floating Photo Section */
.floating-photo-section {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.floating-photo{
  width: 35vw; /* Scales with screen width */
  max-width: 1000px; /* Prevents it from getting too big */
  margin-right: 5vw; /* Adjust spacing dynamically */
}

.floating-photo3 {
  width: 40vw; /* Scales with screen width */
  max-width: 1000px; /* Prevents it from getting too big */
  margin-right: 5vw; /* Adjust spacing dynamically */
}

.floating-photo img,
.floating-photo3 img {
  width: 100%;
  height: auto;
}


.floating-photo2 {
  width: 40vw; /* Scales with screen width */
  max-width: 1000px; /* Prevents it from getting too big */
  margin-right: 5vw; /* Adjust spacing dynamically */
  margin-top: -20vh;
  margin-bottom: 20vh;
}

.floating-photo2 img {
  width: 100%;
  mix-blend-mode:normal;
  height: auto;

}

/* Glued Photo & Text Container */
.glued-container {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap; /* Allows wrapping */
  margin-top: -10vh; /* Use viewport height for better scaling */
  margin-bottom: 20vh; /* Use viewport height for better scaling */
}

/* Glued Photo */
.glued-photo,
.glued-photo2  {
  width: 45vw; /* Scales with screen width */
  max-width: 750px;
  margin-left: 2vw;
}
.glued-photo {
  margin-bottom: 20vh;
}

.glued-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.glued-photo.glued-left {
  margin-left: 0 !important;
  padding-left: 0;
  width: 40vw; /* Make it span full screen width */
  margin-bottom: -20vh;
  max-width: none;
}

.glued-photo.glued-left img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Text Block */
.description-block {
  flex: 1;
  min-width: 300px;
  max-width: 45vw; 
  padding-left: 10vw;
  margin-top: 60vh; /* Align with glued photo */
  margin-bottom: auto;
}

.description {
  font-size: 1em; /* Scale with screen size */
  line-height: 1.6;
}

.description1 {
  font-size: 1em; /* Scale with screen size */
  line-height: 1.6;
}

.full-width-gallery {
  margin: 0;      /* remove default margin if any */
  padding: 0;     /* remove default padding if any */
}

.photo.wide-large,
.photo.wide-small,
.photo.full-width {
display: block;
width: 100%;
margin: 0; /* remove bottom margin */
}

.photo-set {
  display: block;
  margin: 0;      /* remove default margins */
  padding: 0;
  gap: 0;         /* if you’re using gap, set it to 0 to remove spacing */
}

.photo.wide-large {
  display: block;
  width: 100%;
  margin-bottom: 0px;
}

.photo.wide-small {
  display: block;
  width: 100%;
  margin-bottom: 200px;
}

.photo.full-width {
  width: 100%;
  margin-bottom: 0px;
}

@font-face {
  font-family: "Panchang Variable";
  src: url("./fonts/Panchang-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
}

.carousel-container {
  width: 60vw; /* You can tweak this */
  aspect-ratio: 10 / 6; /* Maintains the 10:6 ratio */
  margin: 5vh auto; /* Centers it horizontally and adds vertical spacing */
  margin-bottom: 40vh;
  overflow: hidden;
  position: relative;
  border-radius: 0px; /* Optional: rounded corners */
  /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Optional: soft shadow */
}

.carousel-slide {
  display: flex;
  height: 100%; /* Match the height of the container */
  transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Navigation buttons */
.carousel-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(0, 0, 0, 0);
color: #fff;
border: none;
font-size: 2rem;
padding: 0.5rem 1rem;
cursor: pointer;
z-index: 10;
}

.prevBtn {
left: 10px;
}

.nextBtn {
right: 10px;
}

.carousel-container:nth-of-type(2) {
  background-color: #aaaaa8; /* black background for contrast */
}

.carousel-container:nth-of-type(2) .carousel-slide img {
  mix-blend-mode: normal; /* or multiply, overlay, etc. */
  opacity: 0.8;
  object-fit: cover;
  object-position: center center;  /* Force the image to focus on its center */
}

/* Larger size and new aspect ratio */
.carousel-container:nth-of-type(2) {
  width: 70vw;               /* Adjust width as needed */
  aspect-ratio: 3 / 2.1;        /* Set the new aspect ratio */
  margin: 5vh auto;
  margin-top: 20vh;  
}

@font-face {
  font-family: "Neue Haas Grotesk Display Thin";
  src: url("./fonts/NeueHaasDisplay-Thin.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
}

/* =======================================
   FOOTER STYLES
   ======================================= */
   footer {
    background-color: #D0CDC5;
    padding: clamp(10px, 3vw, 20px); /* Adjusts padding dynamically */
  }
    
    /* Top row: H1 on left, H2 on right */
    .footer-top-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: clamp(10px, 5vw, 20px); /* Shrinks margin */
    }
    
    .footer-top-row h3 {
      font-size: clamp(50px, 8vw, 100px);
      margin-bottom: clamp(50px, 10vw, 150px); /* Shrinks space below */
    }
    
    .footer-top-row h2 {
      font-size: 1.4vw;
    }
    
    /* Bottom row */
    .footer-bottom-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: clamp(10px, 2vw, 20px); /* Dynamic spacing */
      padding: clamp(10px, 2vw, 20px) 0; /* Shrinks vertical padding */
    }
    
    /* Make bottom-row text shrink */
    .footer-bottom-row h2 {
      font-size:1.4vw;
    }
    
    .left-footer {
      text-align: left;
    }
    
    .center-footer {
      text-align: center;
    }
    
    .right-footer {
      text-align: right;
    }

    h2 {
      font-size: 1,4vw;
      font-weight: lighter;
      margin-bottom: -5px;
    }
    
    h3 {
      font-size: 4vw;
      font-weight: 500;
      font-family: "Panchang Variable", sans-serif;
      color: #ededf1;
    }

    /* Ensure layout remains intact */
    @media (max-width: 768px) {
      .footer-top-row {
        flex-direction: column;
        text-align: center;
        margin-bottom: clamp(10px, 5vw, 20px);
      }
    
      .footer-bottom-row {
        flex-direction: column;
        text-align: center;
        gap: clamp(5px, 2vw, 10px);
      }
    }

    /* Reset / base styling (optional) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

/* Hide the default cursor */
body {
  cursor: none;
}

/* Style for the custom cursor */
.custom-cursor {
  width: 15px;
  height: 15px;
  background-color: black;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, width 0.2s ease, height 0.2s ease;
  z-index: 1000;
}

a, button {
  cursor: none !important;
}

a:hover .custom-cursor,
button:hover .custom-cursor {
    width: 30px;
    height: 30px;
}

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

/* 🔹 Responsive Tweaks */
@media (max-width: 1200px) {
  .floating-photo-section {
    justify-content: right; /* Keep the photo centered */
  }

  .floating-photo {
    width: 65vw;
    margin-right: 0;
  }

  .glued-container {
    flex-direction: column; /* Stack elements */
    align-items: left;
    margin-top: 5vh;
  }

  .glued-photo {
    width: 60vw;
  }


  .glued-photo.glued-left{
    flex-direction: column; /* Stack elements */
    align-items: left;
    margin-top: -20vh;
    width:45vw;
  }

  .description-block {
    max-width: 80%;
    text-align: left;
    padding-left: 0;
    margin-left: 30vw;
    margin-top: 6vh;
  }

  .description {
    font-size: 0.9em;
    margin-bottom: 15vh;
    max-width: 50vw;
  }

  .description {
    font-size: 0.9em;
  }
}

@media (max-width: 768px) {
  .floating-photo-section {
    justify-content: right; /* Keep the photo centered */
  }

  .floating-photo {
    width: 65vw;
    margin-right: 0;
    margin-bottom: 10vh;
    margin-top: 0vh;
  }

  .floating-photo3 {
    width: 65vw;
    margin-right: 0;
    margin-bottom: 0vh;
    margin-top: 0vh;
  }

  .glued-container {
    flex-direction: column; /* Stack elements */
    align-items: left;
    margin-top: 5vh;
  }

  .glued-photo.glued-left{
    flex-direction: column; /* Stack elements */
    width: 70vw;
    align-items: left;
    margin-bottom: 0vh;
    margin-top: 3vh;
  }

  .glued-photo {
    width: 60vw;
  }

  .description-block {
    max-width: 80%;
    text-align: left;
    padding-left: 0;
    margin-left: 1vw;
    margin-top: 10vh;
  }

  .description {
    font-size: 0.9em;
    margin-bottom: 15vh;
    max-width: 70vw;
  }
  
  .description1 {
    font-size: 0.9em;
    margin-top: -20vh;
    margin-left: 5vw;
  }

  .carousel-container {
    width: 80vw; /* You can tweak this */
    aspect-ratio: 10 / 6; /* Maintains the 10:6 ratio */
    margin-bottom: 20vh;
    margin-top: -15vh;

  }


.carousel-slide {
  width: 70vw;
  display: flex;
  width: 100%; /* Match the height of the container */
  transition: transform 0.5s ease-in-out;
}

      header h1 {
  font-size: 3vw;
}
}

@media (hover: none) and (pointer: coarse) {
  .custom-cursor {
    display: none;
  }
}