.sec-1 {
  width: 100%;
}

.sec-1-container {
  width: 95%;
  margin: 12px auto 0 auto;
}

.sec-1-hero {
  position: relative;
  width: 100%;
}

.sec-1-hero-image {
  width: 100%;
  height: 700px;
  position: relative;
  overflow: hidden;
  background: url("../images/sec-1-img-1.png") no-repeat center / cover;
}

.sec-1-image-overlay {
  width: 100%;
  height: 100%;
  background: #0000006e;
}

.sec-1-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  min-width: 730px;
  padding: 20px;
}

.sec-1-title {
  font-size: 75px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
  letter-spacing: 1px;
}

.sec-1-subtitle {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 60px;
  letter-spacing: 1px;
  font-family: var(--font-secondary);
}

.sec-1-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
 
}

.sec-1-btn {
  padding: 12px 28px;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid white;
  background: transparent;
  color: white;
  min-width: 200px;
  font-family: var(--font-secondary);
  transition: all .3s ease;
  text-decoration: none;
}

.sec-1-btn:hover {
  transform: translateY(-3px);
}

.sec-1-btn-solid {
  background: white;
  color: black;
}

.sec-1-btn-outline {
  background: transparent;
}

.sec-1-content {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  font-size: 37px;
  padding: 50px 0px;
  align-items: center;
}

.sec-1-content .right {
  font-family: var(--font-secondary);
  text-align: end;
  width: 50%;
  max-width: 450px;
}

.sec-1-content .left {
  font-family: var(--font-tertiary);
  width: 50%;
  max-width: 450px;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .sec-1-title {
    font-size: 48px;
  }

  .sec-1-hero-image {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .sec-1-title {
    font-size: 36px;
  }
	
	.sec-1-hero-content {
		min-width: 440px;
	}

  .sec-1-subtitle {
    font-size: 16px;
	margin-bottom: 30px;
  }

  .sec-1-actions {
    flex-direction: column;
  }

  .sec-1-hero-image {
    height: 420px;
  }

  .sec-1-content {
    font-size: 20px;
    padding: 25px 0px;
  }
	
  .sec-1-btn{
	 font-size: 14px;
   }
}

@media (max-width: 480px) {
  .sec-1-title {
    font-size: 28px;
  }

  .sec-1-hero-image {
    height: 360px;
  }

  .sec-1-content {
    flex-direction: column;
    gap: 1.2rem;
  }

  .sec-1-content .right {
    text-align: center;
    width: 90%;
  }

  .sec-1-content .left {
    text-align: center;
    width: 90%;
  }
	
  .sec-1-hero-content {
	min-width: 360px;
  }
}

@media (max-width: 360px) {
  .sec-1-hero-content {
	min-width: auto;
  }
}




/******************** Sec 2 **********************/

.sec-2 {
  width: 100%;
  padding: 80px 20px;
}

.sec-2-container {
  max-width: 1200px;
  margin: auto;
}

.sec-2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* ---------- Images ---------- */

.sec-2-images {
  position: relative;
  width: 100%;
  height: 490px;
}

.sec-2-img {
  object-fit: cover;
  display: block;
}

/* main image */

.sec-2-img-main {
  width: 340px;
  height: 420px;
  border: 5px solid #fff;
  z-index: 2;
  position: relative;
}

/* overlay image */

.sec-2-img-overlay {
  position: absolute;
  left: 220px;
  top: 120px;
  width: 340px;
  height: 370px;
  z-index: 1;
}

/* ---------- Content ---------- */

.sec-2-content {
  max-width: 500px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sec-2-text {
  font-size: 18px;
  letter-spacing: -3%;
  line-height: 1.8;
  margin-bottom: 65px;
  color: #000;
  margin-top: auto;
}

.sec-2-btn {
  margin-top: 10px;
  padding: 14px 32px;
  border: none;
  background: #7b3b1a;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  font-family: var(--font-secondary);
  font-weight: 400;
  letter-spacing: 1px;
  width: 200px;
}

/* ---------- Responsive ---------- */

@media (max-width: 1200px) {
  .sec-2-grid {
    gap: 40px;
  }

  .sec-2-img-main {
    width: auto;
    height: 340px;
  }

  .sec-2-img-overlay {
    width: auto;
    height: 290px;
    left: 150px;
  }

  .sec-2-images {
    height: 416px;
  }

  .sec-2-text {
    margin-bottom: 30px;
  }
}

@media (max-width: 950px) {
  .sec-2-img-main {
    height: 270px;
  }

  .sec-2-img-overlay {
    height: 240px;
  }

  .sec-2-images {
    height: 363px;
  }
}

@media (max-width: 850px) {
  .sec-2-grid {
    grid-template-columns: 1fr;
  }

  .sec-2-images {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .sec-2-img-main,
  .sec-2-img-overlay {
    position: relative;
    width: 100%;
    height: 260px;
    left: auto;
    top: auto;
    bottom: auto;
    border: 5px solid #fff;
  }

  .sec-2-content {
    max-width: 100%;
  }

  .sec-2 {
    padding: 40px 20px;
  }
}


/********************** Sec 3 *******************************/

.sec-3 {
  width: 100%;
  padding: 80px 0px;
}

.sec-3-container {
  max-width: 100%;
  margin: auto;
}

.sec-3-layout {
  position: relative;
  display: flex;
  align-items: center;
}

/* image */

.sec-3-image-wrap {
  width: 55%;
}

.sec-3-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

/* brown block */

.sec-3-bg-wrapper {
  width: 50%;
  margin-left: -120px;
  display: flex;
  align-items: center;
}

.sec-3-bg {
  background: #7b2f10;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* reservation card */

.sec-3-card {
  background: #ffffff;
  padding: 40px;
  width: 320px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.sec-3-card-title {
  font-size: 28px;
  margin-bottom: 24px;
  text-align: center;
  font-family: var(--font-secondary);
  font-weight: 400;
}

.sec-3-input, 
.sec-3-select {
  width: 100%;
  height: 44px;
  padding: 0 14px;

  font-size: 14px;
  border: 1px solid #d8d9db;
  border-radius: 0;
  background-color: #fff;
  color: #000;

  outline: none;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  box-sizing: border-box;
}

/* remove weird inner spacing */
input[type="date"].sec-3-input::-webkit-datetime-edit {
  padding: 0;
}

/* fix text alignment */
input[type="date"].sec-3-input::-webkit-datetime-edit-fields-wrapper {
  display: flex;
  align-items: center;
}

/* style calendar icon */
input[type="date"].sec-3-input::-webkit-calendar-picker-indicator {
  opacity: 0.6;
  cursor: pointer;
  filter: invert(0.4);
}


.sec-3-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23666' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;

  padding-right: 36px; /* space for arrow */
}

.sec-3-btn {
  width: 100%;
  padding: 14px;
  border: none;
  background: #7b2f10;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* note */

.sec-3-note {
  max-width: 200px;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}

/* ------------------- */
/* Responsive */
/* ------------------- */

@media (max-width: 1024px) {
  .sec-3-layout {
    flex-direction: column;
  }

  .sec-3-image-wrap {
    width: 100%;
  }

  .sec-3-image {
    height: 420px;
  }

  .sec-3-bg-wrapper {
    width: 100%;
    margin-left: 0;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .sec-3-note {
    max-width: 400px;
  }
  .sec-3 {
    padding: 40px 0px;
  }
}

@media (max-width: 600px) {
  .sec-3-card {
    width: 100%;
    max-width: 320px;
  }

  .sec-3-card-title {
    font-size: 24px;
  }

  .sec-3-bg {
    width: 100%;
    flex-direction: column-reverse;
  }
}


/********************* Sec 4 ***********************/


.sec-4 {
  width: 100%;
  padding: 80px 10px;
  background: #fff;
}

.sec-4-container {
  width: 95%;
  margin: auto;
}

/* Header */

.sec-4-header {
  text-align: center;
  margin-bottom: 50px;
}

.sec-4-subtitle {
  font-size: 14px;
  margin-bottom: 10px;
  font-family: var(--font-secondary);
  font-weight: 400;
}

.sec-4-title {
  font-size: 34px;
  line-height: 1.3;
  font-family: var(--font-secondary);
  margin: auto;
  max-width: 650px;
  font-weight: 400;
}

.sec-4-title span {
  font-family: var(--font-primary);
}

/* Grid */

.sec-4-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Cards */

.sec-4-card {
  position: relative;
  overflow: hidden; 
  text-decoration: none;
  color: #000;
  transition: all .3s ease;
}

.sec-4-card:hover {
	transform: translatey(-3px);
}

.sec-4-card:active {
  color: #000;
}

.sec-4-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

/* Overlay box */

.sec-4-card-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #e6e1d8;
  padding: 8px 8px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #000000;
  min-width: 220px;
}

.sec-4-card-wrapper {
  border: 1px solid #000000;
  padding: 8px 8px;
}

.sec-4-card-title {
  font-size: 34px;
  margin-bottom: 4px;
  font-family: var(--font-secondary);
  font-weight: 400;
}

.sec-4-card-desc {
  font-size: 15px;
  letter-spacing: -3%;
}

/* Responsive */

@media (max-width: 1200px) {
	.sec-4-card-wrapper{
		padding: 8px 8px;
	}
	
	.sec-4-card-title{
		font-size: 30px;
	}
}

@media (max-width: 900px) {
  .sec-4-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .sec-4-grid {
    grid-template-columns: 1fr;
  }

  .sec-4-img {
    height: 300px;
  }

  .sec-4-title {
    font-size: 26px;
  }
}


/********************** Sec 5 ************************/
.sec-5 {
  width: 100%;
  padding: 80px 0px;
}

.sec-5-container {
  width: 95%;
  margin: auto;
}

/* Header */

.sec-5-header {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 60px;
}

.sec-5-header-left {
  font-size: 64px;
  font-weight: 700;
  color: #7b2f10;
  line-height: 1;
}

.sec-5-header-right {
  font-size: 64px;
  font-weight: 400;
  color: #7b2f10;
  line-height: 1;
  font-family: var(--font-secondary);
}

/* Wrapper */

.sec-5-gallery-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 20px;
}

/* Left two tall images */

.sec-5-gallery-1 {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Right collage */

.sec-5-gallery-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Images */

.sec-5-img {
  width: 100%;
  object-fit: cover;
  display: block;
  height: 100%;
}

/* Tall images */

.sec-5-img-tall {
  height: 100%;
}

/* Wide image (top right) */

.sec-5-img-long {
  grid-column: span 2;
  height: 350px;
}

/* Responsive */

@media (max-width: 900px) {
  .sec-5-gallery-wrapper {
    grid-template-columns: 1fr;
	  gap: 20px 0px;
  }

  .sec-5-gallery-1 {
    grid-template-columns: 1fr 1fr;
  }

  .sec-5-gallery-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .sec-5 {
    padding: 40px 0px;
  }

  .sec-5-header {
    gap: 12px;
    text-align: center;	  
	margin-bottom: 28px;
  }

  .sec-5-header-left,
  .sec-5-header-right {
    font-size: 32px;
  }

  .sec-5-gallery-1 {
    margin-bottom: 20px;
  }

  .sec-5-gallery-1,
  .sec-5-gallery-2 {
    grid-template-columns: 1fr;
  }

  .sec-5-img {
    height: 260px;
    grid-column: span 2;
  }

  .sec-5-gallery-wrapper {
    gap: 0;
  }

  .sec-5-img-tall,
  .sec-5-img-long {
    height: 260px;
  }
}



