body {
  background-color: rgb(17, 22, 22);
}

.resort {
  padding: 120px 25px 200px;
}
.resort h1 {
  font-size: 75px;
  font-weight: 700;
  color: #fff;
  -webkit-text-stroke: 1px #DAA425;
   text-shadow:
       3px 3px 0 #DAA425,
     -1px -1px 0 #DAA425,  
      1px -1px 0 #DAA425,
      -1px 1px 0 #DAA425,
       1px 1px 0 #DAA425;
}
.resort-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  /* grid-template-areas: ""; */
  min-height: 100svh;
  padding: 10px;
  gap: 10px;
  margin-bottom: 80px;
  background-color: #DAA425;
  /* border: 1px solid #fff; */
  /* background-color: rgb(15, 31, 31); */
  /* background-color: rgb(234, 255, 255); */
  /* background-image: url("/assets/images/pattern.jpg"); */
}
.resort-grid img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  /* border: 1px solid #fff; */
}
.resort-grid-col-1,
.resort-grid-col-3 {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}
.resort-grid-col-2 {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
}


.country-yard {
  padding: 40px 25px 120px;
}
.country-yard h1 {
  font-size: 75px;
  font-weight: 700;
  color: #fff;
}
.country-yard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  /* grid-template-areas: ""; */
  min-height: 100svh;
  padding: 10px;
  gap: 10px;
  /* background-color: rgb(15, 31, 31); */
  /* background-color: rgb(234, 255, 255); */
  /* background-image: url("/assets/images/pattern.jpg"); */
}
.country-yard-grid img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.country-yard-grid-col-1,
.country-yard-grid-col-3 {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}
.country-yard-grid-col-2 {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
}

.weddings-contact-btn {
  color: #fff;
  background-color: #DAA425;
  border-radius: 8px;
  padding: 15px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  border: 2px solid #fff;
}
.resort-text {
  color: #fff;
  margin-bottom: 40px;
}
.resort-text ul {
  list-style-type: disc;
  font-size: 28px;
  margin-left: 10%;
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 640px) {
}

@media screen and (max-width: 768px) {
  .resort h1 {
    font-size: 58px;
  }
  .resort-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 5px;
    gap: 5px;
  }
  .resort-grid-col-1, .resort-grid-col-2, .resort-grid-col-3 {
    gap: 5px;
  }
  .resort-grid-col-3 {
    grid-template-rows: 0.7fr;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column: span 2 / span 2;
  }
  .country-yard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .country-yard-grid-col-3 {
    grid-template-rows: 0.7fr;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column: span 2 / span 2;
  }
}

