@font-face {
  font-family: Poppins;
  src: url(./font/Poppins/Poppins-BlackItalic.ttf);
}
@font-face {
  font-family: futura;
  src: url(./font/futura/FuturaCyrillicDemi.ttf);
}
@font-face {
  font-family: montserrat;
  src: url(./font/montserrat/Montserrat-VariableFont_wght.ttf);
}
@font-face {
  font-family: montserratthin;
  src: url(./font/montserrat/static/Montserrat-Light.ttf);
}
@font-face {
  font-family: montserratthin1;
  src: url(./font/montserrat/static/Montserrat-LightItalic.ttf);
}
@font-face {
  font-family: montserratthin3;
  src: url(./font/montserrat/static/Montserrat-Medium.ttf);
}
@font-face {
  font-family: vogue;
  src: url(./font/Vogue\ Highline\ Serif\ Thin/);
}
@font-face {
  font-family: "Vogue Highline Serif Thin";
  src: url("https://db.onlinewebfonts.com/t/05c8e2e40ee75361007d7cdc8a85bc81.eot");
  src: url("https://db.onlinewebfonts.com/t/05c8e2e40ee75361007d7cdc8a85bc81.eot?#iefix")format("embedded-opentype"),
  url("https://db.onlinewebfonts.com/t/05c8e2e40ee75361007d7cdc8a85bc81.woff2")format("woff2"),
  url("https://db.onlinewebfonts.com/t/05c8e2e40ee75361007d7cdc8a85bc81.woff")format("woff"),
  url("https://db.onlinewebfonts.com/t/05c8e2e40ee75361007d7cdc8a85bc81.ttf")format("truetype"),
  url("https://db.onlinewebfonts.com/t/05c8e2e40ee75361007d7cdc8a85bc81.svg#Vogue Highline Serif Thin")format("svg");
}
@font-face {
  font-family: solomon;
  src: url(./font/solomon/Solomon-Light-Demo.otf);
}
/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: "Cormorant Garamond", serif;
    line-height: 1.6;
    /* background-color: #000; */
    background-color: rgb(13, 13, 13);

    color: #fff;
  }

  /* Main Content Container */
.container {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 40px;
}


  /* Navigation */
.navbar {
  position: fixed;
  width: 100%;
  padding: 2rem 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  /* background-color: rgba(0, 0, 0, 0.9); */
  background-color: rgb(13, 13, 13);
  z-index: 1000;
  transition: transform 0.3s ease, opacity 0.3s ease;

}

.nav-links {
  display: flex;
  gap: 2rem;
}
/* Previous styles remain the same */



/* Add new navbar states */
.navbar.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.navbar.visible {
  transform: translateY(0);
  opacity: 1;
}

/* Rest of the previous styles remain the same */

.logo img{
  /* font-family: "Antic Didone", serif; */
  font-family: vogue;
  font-weight: 100;
  width: 20rem;
  font-size: 2.5rem;
  font-weight: lighter;
  /* letter-spacing: 2px; */
  letter-spacing: 2;
  text-align: center;
  flex: 0.45;
}

.nav-links button{
  text-decoration: none;
  all: unset; /* Resets all styles */
  display: inline-block; /* Makes it behave like a normal element */
  cursor: pointer;
  
}

.nav-links a , .nav-links button{
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 300;
  font-family: futura;
  transition: opacity 0.3s ease;
}

.nav-links.left {
  justify-content: flex-end;
}

.nav-links.right {
  justify-content: flex-start;
}

  

  /* hero part */
  .hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
}

.hero-title {
    font-family: 'Times New Roman', serif;
    font-size: 4.5rem;
    letter-spacing: 8px;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
}
/* Hero Section Updates */
.hero {
  height: 90vh;
  position: relative;
  overflow: hidden;
  top: 8rem;
  padding: 0 40px;
}

.hero-content {
  max-width: 1400px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: "Bodoni Moda", serif;
  font-size: 8rem;
  margin-bottom: 1.5rem;
  letter-spacing: 6px;
}


/* Portfolio Section Styles */
.portfolio-section {
  /* padding: 4rem 0; */
  background-color: #000000;
  
  color: #fff;
}

.content-container {
  width: 100%;
  /* margin: 0 auto; */
  max-width: 1800px;
}
.content-container-space{
  width: 20%;
}
/* Portfolio Row Layout */
.portfolio-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.portfolio-row.reversed {
  direction: rtl;
}

.portfolio-row.reversed > * {
  direction: ltr;
}

/* Left and Right Column Styles */
.portfolio-left,
.portfolio-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Image Styles */
.small-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.large-image {
  position: relative;
  aspect-ratio: 3/4;
  height: 100%;
  overflow: hidden;
}

.small-image img,
.large-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: grayscale(0.3);
}

.small-image:hover img,
.large-image:hover img {
  transform: scale(1.03);
  filter: grayscale(0);
}
.portfolio-section {
  padding: 2.5% 0 0 0;
  /* background: #000; */
  background-color: #000000;

  color: #fff;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  max-width: 100%;
  margin: 0 auto;
  padding: 10vw 0 2.5vw;
  background-color: #131313;

}

.image-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);

}

.testimonial-column {
  background-color: #171717;
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 100%; */

}

.testimonial {
  text-align: center;
  max-width: 80%;


}

.testimonial p {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 400;
}

.testimonial span {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}
.image-column{
  display: flex;
  align-items: last baseline;
}
.large-image-column .image-wrapper {
  height: 100%;
}

@media (max-width: 1024px) {
  .grid-container {
      gap: 24px;
      /* padding: 0 24px; */
  }
  
  .testimonial p {
      font-size: 20px;
  }
}

@media (max-width: 768px) {
  .grid-container {
      grid-template-columns: 1fr;
      gap: 32px;
  }
  
  .image-column {
      flex-direction: row;
  }
  
  .image-column .image-wrapper {
      width: 50%;
  }
  
  .testimonial-column {
      padding: 40px 20px;
  }
}




/* Text Block Styles */
.text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
  text-align: center;
  /* max-width: 900px; */
  max-width: 100%;
  /* margin: 6rem auto; */
  padding: 0 2rem;
  background-color: #171717;
  padding: 10% 0;
}
.text-block2{
  display: flex;
  max-width: 60%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.text-block h2 {
  /* font-family: "Bodoni Moda", serif; */
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
}

/* Keep Going Section Styles */
.keep-going {
  text-align: center;
  max-width: 400px;
}

.keep-going h3 {
  font-family: "Bodoni Moda", serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.keep-going p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Button Styles */
.btn-outline {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-top: 2rem;
}

.btn-outline:hover {
  background-color: #fff;
  color: #000;
}


/* Responsive Design */
@media (max-width: 1200px) {
  .content-container {
      width: 100%;
  }
  
  .portfolio-row {
      gap: 1rem;
  }
}

@media (max-width: 768px) {
  .portfolio-row {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .portfolio-left,
  .portfolio-right {
      flex-direction: row;
      flex-wrap: wrap;
  }
  
  .small-image {
      flex: 1 1 calc(50% - 1rem);
  }
  
  .text-block h2 {
      font-size: 1.5rem;
  }
}
  

/* Keep Going Section Styles */
.keep-going-section {
  padding: 2.5% 0;
  background-color: rgb(13, 13, 13);
  color: #fff;
}

.keep-going-row {
  display: flex;
  justify-content: flex-end;
}

.keep-going-text {
  padding: 5%;
}

.keep-going-text h3 {
  font-family: "Bodoni Moda", serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.keep-going-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Cormorant Garamond", serif;
}

.keep-going-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.keep-going-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.keep-going-image:hover img {
  transform: scale(1.03);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .keep-going-row {
      gap: 2rem;
  }
  
  .keep-going-text {
      padding-right: 1rem;
  }
  
  .keep-going-text h3 {
      font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .keep-going-row {
      grid-template-columns: 1fr;
      gap: 3rem;
  }
  
  .keep-going-text {
      padding-right: 0;
      text-align: center;
  }
  
  .keep-going-image {
      aspect-ratio: 3/4;
  }
}
 

  
  /* booking section new */
  .booking-section {
    background-color: rgb(13, 13, 13);
    padding: 200px 20px;
    text-align: center;
}

.booking-title {
    /* font-family: 'Times New Roman', serif; */
    font-family: "Antic Didone", serif;
    font-weight: 100;
    color: #fff;
    font-weight: lighter;
    font-size: 45px;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.booking-form {
    max-width: 55%;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
    color: #fff;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

textarea.form-control {
    min-height: 200px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-decoration: none;
    display: inline-flex
;
    background-color: #2d2d2d;
    height: 50px;
    font-size: 16px;
    border-radius: 0%;
    border: none;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.5s;
}

.submit-btn:hover {
    background-color: #fff;
    color: #000;
    display: inline-block;
    background: rgb(255, 255, 255);
    color: #000;
    height: 60px;
}

/* Updated Booking Section */

  /* Buttons */
  .btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .btn:hover {
    background-color: #fff;
    color: #000;
  }

  /* Quote Section */
.quote-section {
  padding: 100px 0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.quote-text {
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 20px;
}

.quote-author {
  font-size: 1.2rem;
  color: #888;
}

/* Image Gallery Additions */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}


  /* Footer */
  footer {
    padding: 6rem 5% 3rem;
    background-color: rgb(13, 13, 13);
    text-align: center;
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
  }

  .footer-content h3 {
    font-family: "Bodoni Moda", serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
  }

  .footer-content ul {
    list-style: none;
  }

  .footer-content ul li {
    margin-bottom: 0.8rem;
  }

  .footer-content a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }

  .footer-content a:hover {
    color: #fff;
  }

  .social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .social-links a {
    color: #fff;
    font-size: 1.2rem;
  }

  footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
  }


  
  /* footer css here */
.footer{
  margin-top: auto;
}
.footercontainer{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0px;
}
.footercontainercase{
}
.left_side .ftlogo{
  position: relative;
  top: 4px;
  pointer-events: none;
  width: 300px;
}
.box1{
  padding: 10px;
  height: 100px;
  width: 450px;
}
.box2{
  padding: 10px;
  height: 100px;
  width: 300px;
}
.box3{
  padding: 10px;
  height: 100px;
  width: 450px;
}
.mail{
  position: relative;
  top: 8px;
  font-size: 16px;
  font-family: montserrat,sans-serif;
  text-decoration: none;
  color: #fff;
  left: 0px;
}
.fb{
  position: relative;
  top: 9px;
  font-size: 16px;
  font-family: montserrat,sans-serif;
  text-decoration: none;
  color: #fff;

}
.ins{
  position: relative;
  top: 0px;
  font-size: 16px;
  font-family: montserrat,sans-serif;
  text-decoration: none;
  color: #fff;

}
.copyright{
  position: relative;
  top: 10px;
  padding-left: 14px;
  font-size: 14px;
  font-family: montserrat,sans-serif;
}
.connectwithwe{
  letter-spacing: 1px;
  font-size: 20px;
  font-family: futura,sans-serif;

}
.contactwithme{
  letter-spacing: 1px;
  font-size: 20px;
  font-family: futura,sans-serif;
}



  /* Responsive Design */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 3.5rem;
    }

    .portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .keep-going {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

  /* Responsive Updates */
@media (max-width: 1200px) {
  .container {
      padding: 0 20px;
  }
  
  .portfolio-grid {
      grid-template-columns: repeat(6, 1fr);
  }
  
  .portfolio-item {
      grid-column: span 3;
  }
  
  .portfolio-item.large {
      grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .navbar {
      flex-direction: column;
      padding: 1rem;
  }
  
  .nav-links {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
  }
  
  .portfolio-grid {
      grid-template-columns: 1fr;
  }
  
  .portfolio-item,
  .portfolio-item.large {
      grid-column: span 1;
  }
  
  .hero-title {
      font-size: 3rem;
  }
}




  /* test */
  /* Reset and Global Styles */





/* Portfolio Grid Updates */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding: 40px 0;
  margin: 0 auto;
  max-width: 1400px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
}

.portfolio-item.large {
  grid-column: span 8;
  grid-row: span 2;
}

.portfolio-item.vertical {
  grid-row: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}






.portfolio-section {
  padding: 2.5% 0 0 0;
  color: #fff;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0% 0 5% 0;
}

.image-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px; /* Added border radius */
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.testimonial-column {
  background-color: #171717;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px; /* Added border radius */
  padding: 40px 20px;
}

.testimonial {
  text-align: center;
  max-width: 80%;
}

.testimonial p {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 400;
}

.testimonial span {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .grid-container {
    gap: 24px;
  }
  
  .testimonial p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .image-column {
    flex-direction: row;
  }
  
  .image-column .image-wrapper {
    width: 50%;
  }
  
  .testimonial-column {
    padding: 40px 20px;
  }
}
.portfolio-section {
  padding: 2.5% 0 0 0;
  color: #fff;
  background-color: rgb(13, 13, 13);

}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  max-width: 100%;
  margin: 0 auto;
  padding: 7.5rem 0 2rem;
  background-color:rgb(13, 13, 13);
}

.image-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Make all image columns handle full height properly */
.image-column:first-child {
  height: 100%;
}

.image-column:first-child .image-wrapper {
  height: calc((100% - 32px) / 2); /* Account for the gap between images */
}

.image-column:last-child {
  height: 100%;
}

.image-column:last-child .image-wrapper {
  height: 100%;
}

.image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.testimonial-column {
  background-color: #171717;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  height: 100%;
}

.testimonial {
  text-align: center;
  max-width: 80%;
}

.testimonial p {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 400;
}

.testimonial span {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .grid-container {
    gap: 24px;
  }
  
  .testimonial p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .image-column {
    flex-direction: row;
  }
  
  .image-column .image-wrapper {
    width: 50%;
    height: 400px; /* Set fixed height for mobile */
  }
  
  .testimonial-column {
    padding: 40px 20px;
  }
}

/* pot 2 */
.portfolio-section2 {
  color: #fff;
  background-color: rgb(13, 13, 13);

}

.grid-container2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  max-width: 100%;
  margin: 0 auto;
  background-color:rgb(13, 13, 13);
}

.image-column2 {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Make all image columns handle full height properly */
.image-column2:first-child {
  height: 100%;
}

.image-column2:first-child .image-wrapper {
  height: calc((100% - 32px) / 2); /* Account for the gap between images */
}

.image-column2:last-child {
  height: 100%;
}

.image-column2:last-child .image-wrapper {
  height: 100%;
}

.image-wrapper2 {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.image-wrapper2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-wrapper2:hover img {
  transform: scale(1.05);
}



