:root {
  --font-primary: "Cormorant Garamond";
  --font-secondary: "Source Sans 3";
}

/* home section 1 */

.home-sec-1 {
  margin-top: 90px;
  padding: 3rem 3rem 0 3rem;
  font-family: var(--font-primary);
}

.home-sec-1::after {
  content: "";
  display: block;
  width: 500px;
  height: 1px;
  background: #5a3e2b;
  margin: 4rem auto 0rem;
}

.home-sec-1 .home-sec-1-container {
  background: url("../images/home-sec1-image.png") center / cover no-repeat;
  border-radius: 32px;
  color: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

.home-sec-1 .home-sec-1-overlay {
  background: rgba(90, 62, 43, 0.85);
  padding: 4rem;
  border-radius: 32px;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Layout */
.home-sec-1 .home-sec-1-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
}

/* Left */
.home-sec-1 .home-sec-1-left {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.home-sec-1 .home-sec-1-left h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.home-sec-1 .home-sec-1-subtitle {
  font-family: "Source Sans 3", sans-serif;
  opacity: 0.9;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.home-sec-1 .home-sec-1-left a {
  width:100%;
  text-decoration:none;
}

/* Button */
.home-sec-1 .home-sec-1-btn {
  background: #fff;
  color: #4b2f1f;
  border: none;
  width: 100%;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-size: 1.3rem;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-secondary);
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.15s ease,
    box-shadow 0.35s ease;
}

.home-sec-1-btn .btn-svg {
  display: flex;
  align-items: center;
  transition: transform 0.35s ease;
}

.home-sec-1-btn:hover {
  background: #ffffffc4;
  color: #472c1c;
  box-shadow: 0 10px 30px rgba(75, 47, 31, 0.25);
}

.home-sec-1-btn:hover .btn-svg {
  transform: translateX(6px);
}

.home-sec-1-btn:active {
  transform: scale(0.97);
}

.home-sec-1 .home-sec-1-btn .btn-svg {
  display: flex;
}

.home-sec-1 .home-sec-1-btn .btn-svg svg {
  width: 18px;
  height: 18px;
}

.home-sec-1 .home-sec-1-desc {
  display: none;
}

/* Divider */
.home-sec-1 .home-sec-1-divider {
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
}

/* Right */
.home-sec-1 .home-sec-1-right p {
  font-family: "Source Sans 3", sans-serif;
  line-height: 1.7;
  opacity: 0.95;
  font-size: 1.1rem;
}

.home-sec-1 .home-sec-1-right p + p {
  margin-top: 1.5rem;
}

/* Responsive */

@media (max-width: 1000px) {
  .home-sec-1 .home-sec-1-overlay {
    padding: 3rem;
  }

  .home-sec-1 .home-sec-1-left h1 {
    font-size: 3.5rem;
    margin-bottom: 0;
  }

  .home-sec-1 .home-sec-1-subtitle {
    font-size: 1rem;
  }
  .home-sec-1 .home-sec-1-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
  }
  .home-sec-1 .home-sec-1-right p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 900px) {
  .home-sec-1 .home-sec-1-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-sec-1 .home-sec-1-desc {
    display: block;
    font-family: "Source Sans 3", sans-serif;
    line-height: 1.5;
    opacity: 0.95;
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .home-sec-1 .home-sec-1-desc p + p {
    margin-top: 1.5rem;
  }

  .home-sec-1 .home-sec-1-divider {
    display: none;
  }

  .home-sec-1 .home-sec-1-btn {
    margin-inline: auto;
  }

  .home-sec-1 .home-sec-1-right {
    display: none;
  }
}

@media (max-width: 600px) {
  .home-sec-1 .home-sec-1-overlay {
    padding: 2rem;
  }

  .home-sec-1::after {
    width: 300px;
  }

  .home-sec-1 {
    padding: 1rem 1rem 0 1rem;
  }

  .home-sec-1 .home-sec-1-left h1 {
    font-size: 4rem;
  }

  .home-sec-1 .home-sec-1-subtitle {
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }

  .home-sec-1 .home-sec-1-btn .btn-svg svg {
    width: 16px;
    height: 16px;
  }

  .home-sec-1 .home-sec-1-btn {
    font-size: 1rem;
  }

  .home-sec-1 .home-sec-1-left h1 {
    font-size: 3rem;
  }

  .home-sec-1 .home-sec-1-right p {
    line-height: 1.1;
    font-size: 1rem;
  }
  .home-sec-1::after {
    margin: 2rem auto 0rem;
  }
}

/* home section 2 */

.home-sec-2 {
  padding: 3rem 1.5rem 0 1.5rem;
  background: #F7F3EE;
  font-family: var(--font-secondary);
}

.home-sec-2::after {
  content: "";
  display: block;
  width: 500px;
  height: 1px;
  background: #5a3e2b;
  margin: 4rem auto 0rem;
}

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

.home-sec-2 .home-sec-2-header {
  text-align: center;
  margin-bottom: 4rem;
}

.home-sec-2 .home-sec-2-header h2 {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 700;
  color: #5a3e2b;
  font-style: italic;
}

.home-sec-2 .home-sec-2-header p {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
  color: #5a3e2b;
}

.home-sec-2 .home-sec-2-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.home-sec-2 .service-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #ddd;
}

.home-sec-2 .service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-sec-2 .service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(90, 62, 43, 0) 0.01%, #5a3e2b 100%);
  padding: 1.2rem;
  display: flex;
  align-items: flex-end;
}

.home-sec-2 .service-overlay h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.home-sec-2 .service-desc {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #6b5a4d;
  text-align: center;
}

.home-sec-2 .home-sec-2-cta {
  text-align: center;
}

.home-sec-2 .home-sec-2-btn {
  background: #5a3e2b;
  color: #fff;
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-size: 1rem;
  font-family: var(--font-secondary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition:
    background 0.35s ease,
    transform 0.2s ease,
    box-shadow 0.35s ease;
}

/* Hover */
.home-sec-2-btn:hover {
  background: #3a2418;
  box-shadow: 0 12px 28px rgba(90, 62, 43, 0.35);
  transform: translateY(-2px);
}

/* Active press */
.home-sec-2-btn:active {
  transform: translateY(0) scale(0.96);
}

@media (max-width: 1100px) {
  .home-sec-2 .home-sec-2-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .home-sec-2 {
    padding: 4rem 1rem;
  }

  .home-sec-2 .home-sec-2-header h2 {
    font-size: 2rem;
  }

  .home-sec-2 .home-sec-2-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .home-sec-2 .home-sec-2-cards {
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .home-sec-2::after {
    width: 300px;
  }

  .home-sec-2 {
    padding: 1rem 1rem 0 1rem;
  }
  .home-sec-2 .home-sec-2-header {
    margin-bottom: 2rem;
  }

  .home-sec-2 .home-sec-2-cards {
    margin-bottom: 2rem;
  }
  .home-sec-2::after {
    margin: 2rem auto 0rem;
  }
	.home-sec-2 .service-overlay h3{
		font-size: 0.8rem;
	}
	.service-overlay{
		padding:1rem;
	}

  .home-sec-2 .service-desc {
	  display:none;
    line-height: 1.2;
  }

  .home-sec-2 .home-sec-2-cards {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .home-sec-2 .home-sec-2-header h2 {
    font-size: 1.75rem;
  }

  .home-sec-2 .home-sec-2-cards {
    grid-template-columns: 1fr 1fr;
  }

  .home-sec-2 .service-card {
    aspect-ratio: 4 / 5;
  }
  .home-sec-2 .home-sec-2-cards {
    gap: 1rem;
  }
}

/* section 3 */

.home-sec-3 {
  padding: 3rem 1.5rem 0 1.5rem;
  background: #F7F3EE;
  font-family: var(--font-secondary);
}

.home-sec-3::after {
  content: "";
  display: block;
  width: 500px;
  height: 1px;
  background: #5a3e2b;
  margin: 4rem auto 0rem;
}

.home-sec-3 .home-sec-3-container {
  max-width: 1200px;
  margin: 0 auto;
}

.home-sec-3 .home-sec-3-header {
  text-align: center;
  margin-bottom: 4rem;
}

.home-sec-3 .home-sec-3-header h2 {
  font-family: var(--font-primary);
  font-size: 2.3rem;
  color: #5a3e2b;
  font-style: italic;
}

.home-sec-3 .home-sec-3-header p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #5a3e2b;
}

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

.home-sec-3 .featured-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  font-family: var(--font-secondary);
  border: 1px solid rgba(90, 62, 43, 1);
}

.home-sec-3 .featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.home-sec-3 .featured-overlay {
  position: absolute;
  inset: 0;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(90, 62, 43, 0) 0%, rgba(90, 62, 43, 0), rgba(90, 62, 43, 0), rgba(90, 62, 43, 0), #5a3e2bdb 75%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 0.6rem;
}

.home-sec-3 .featured-overlay h3 {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.home-sec-3 .featured-btn {
  width: 100%;
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
  font-family: var(--font-secondary);
  letter-spacing: 0.5px;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.15s ease,
    box-shadow 0.3s ease;
}

.home-sec-3 .featured-btn .btn-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

/* Hover */
.home-sec-3 .featured-btn:hover {
  background: #ffffff;
  color: #4b2f1f;
}

.home-sec-3 .featured-btn .btn-arrow svg {
  stroke: #ffffff;
	height:10px;
	width:10px;
}

/* Arrow move */
.home-sec-3 .featured-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.home-sec-3 .featured-btn:hover .btn-arrow svg {
  stroke: #4b2f1f;
}

/* Click */
.home-sec-3 .featured-btn:active {
  transform: scale(0.96);
}

.home-sec-3 .home-sec-3-more {
  text-align: center;
}

.home-sec-3 .home-sec-3-more-btn {
  background: #5a3e2b;
  color: #fff;
  border: none;
  padding: 0.6rem 1.6rem; /* smaller */
  border-radius: 999px;
  font-size: 0.85rem;
  font-family: var(--font-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
}

.home-sec-3 .home-sec-3-more-btn svg {
  height: 12px;
  width: 12px;
  transition: transform 0.3s ease;
}

/* Hover */
.home-sec-3 .home-sec-3-more-btn:hover {
  background: #3a2418;
  transform: translateY(-1px);
}

/* Click */
.home-sec-3 .home-sec-3-more-btn:active {
  transform: scale(0.95);
}

@media (max-width: 1100px) {
  .home-sec-3 .home-sec-3-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .home-sec-3 .home-sec-3-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .home-sec-3::after {
    width: 300px;
    margin: 2rem auto 0rem;
  }

  .home-sec-3 {
    padding: 1rem 1.5rem 0 1.5rem;
  }

  .home-sec-3 .home-sec-3-cards {
    margin-bottom: 2rem;
  }

  .home-sec-3 .home-sec-3-header {
    margin-bottom: 2rem;
  }

  .home-sec-3 .home-sec-3-cards {
    gap: 1rem;
  }
   .home-sec-3 .featured-overlay{
		padding:0.5rem;
	}
	.home-sec-3 .featured-overlay h3{
		font-size:0.8rem;
	}	
	.home-sec-3 .featured-btn{
		padding:0.5rem 0.5rem;
		font-size:0.8rem;
	}
}

@media (max-width: 480px) {
  .home-sec-3 .home-sec-3-cards {
    grid-template-columns: 1fr 1fr;
  }
  .home-sec-3 .home-sec-3-cards {
    gap: 0.7rem;
  }
}

/* section 4 */

.home-sec-4 {
  padding: 3rem 1.5rem 0 1.5rem;
  background: #F7F3EE;
  font-family: var(--font-secondary);
}

.home-sec-4::after {
  content: "";
  display: block;
  width: 500px;
  height: 1px;
  background: #5a3e2b;
  margin: 4rem auto 0rem;
}

.home-sec-4 .home-sec-4-container {
  max-width: 1200px;
  margin: 0 auto;
}

.home-sec-4 .home-sec-4-header {
  text-align: center;
  margin-bottom: 4rem;
}

.home-sec-4 .home-sec-4-header h2 {
  font-family: var(--font-primary);
  font-size: 2.3rem;
  color: #5a3e2b;
  font-style: italic;
}

.home-sec-4 .home-sec-4-header p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #5a3e2b;
}

/* Cards layout */
.home-sec-4 .home-sec-4-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Circle card */
.home-sec-4 .event-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}

.home-sec-4 .event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.home-sec-4 .event-overlay {
  position: absolute;
  inset: 0;
  background: rgba(90, 62, 43, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.home-sec-4 .event-overlay h3 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

/* More button */
.home-sec-4 .home-sec-4-more {
  text-align: center;
}

.home-sec-4 .home-sec-4-more-btn {
  background: #5a3e2b;
  color: #fff;
  border: none;
  padding: 0.6rem 1.6rem; /* smaller */
  border-radius: 999px;
  font-size: 0.85rem;
  font-family: var(--font-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;

  transition:
    background 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
}

.home-sec-4 .home-sec-4-more-btn svg {
  height: 16px;
  width: 16px;
  transition: transform 0.3s ease;
}

/* Hover */
.home-sec-4 .home-sec-4-more-btn:hover {
  background: #3a2418;
  transform: translateY(-1px);
}

/* Click */
.home-sec-4 .home-sec-4-more-btn:active {
  transform: scale(0.95);
}

/* Responsive */
@media (max-width: 850px) {
  .home-sec-4 .home-sec-4-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .home-sec-4 {
    padding: 1rem 1.5rem 0 1.5rem;
  }

  .home-sec-4::after {
    width: 300px;
    margin: 2rem auto 0rem;
  }
	
.home-sec-4 .home-sec-4-more-btn svg {
		width:10px;
		height:10px;
	}

  .home-sec-4 .home-sec-4-cards {
    margin-bottom: 2rem;
  }

  .home-sec-4 .home-sec-4-header {
    margin-bottom: 2rem;
  }
}

@media (max-width: 450px) {
  .home-sec-4 .home-sec-4-cards {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .home-sec-4 .home-sec-4-header h2 {
    font-size: 2rem;
  }
}

/* section 5 */
.home-sec-5 {
  padding: 3rem 1.5rem 0 1.5rem;
  background: #F7F3EE;
  font-family: var(--font-secondary);
  overflow: hidden;
}

.home-sec-5::after {
  content: "";
  display: block;
  width: 500px;
  height: 1px;
  background: #5a3e2b;
  margin: 4rem auto 0rem;
}

.home-sec-5 .home-sec-5-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Header */
.home-sec-5 .home-sec-5-header {
  text-align: center;
  margin-bottom: 4rem;
}

.home-sec-5 .home-sec-5-header h2 {
  font-family: var(--font-primary);
  font-size: 2.4rem;
  color: #5a3e2b;
  font-style: italic;
}

.home-sec-5 .home-sec-5-header p {
  font-size: 0.95rem;
  color: #5a3e2b;
}

/* Decorative line */
.home-sec-5 .home-sec-5-line-1 {
  display: block;
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1100px;
  z-index: 0;
  pointer-events: none;
}

.home-sec-5 .home-sec-5-line-2 {
  display: none;
}

/* Images wrapper */
.home-sec-5 .home-sec-5-images {
  position: relative;
  min-height: 520px;
}

/* Image card */
.home-sec-5 .work-img {
  position: absolute;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 12px solid #e6d2b5;
}

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

/* Individual positions */
.home-sec-5 .img-1 {
  width: 150px;
  top: -51px;
  left: 250px;
}

.home-sec-5 .img-2 {
  width: 150px;
  top: -42px;
  right: 134px;
}

.home-sec-5 .img-3 {
  width: 190px;
  top: 130px;
  left: 50%;
}

.home-sec-5 .img-4 {
  width: 190px;
  bottom: 30px;
  left: 191px;
}

.home-sec-5 .img-5 {
  width: 190px;
  bottom: 0;
  right: 10%;
}

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

@media (max-width: 1080px) {
  .home-sec-5 .home-sec-5-line-1 {
    display: none;
  }
  .home-sec-5 .home-sec-5-images {
    min-height: 570px;
  }

  .home-sec-5 .home-sec-5-line-2 {
    display: block;
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1100px;
    z-index: 0;
    pointer-events: none;
    height: 450px;
  }

  .home-sec-5 .img-1 {
    top: -51px;
    left: 200px;
  }

  .home-sec-5 .img-2 {
    top: -42px;
    right: 100px;
  }

  .home-sec-5 .img-3 {
    top: 140px;
    left: 50%;
    transform: translateX(-30%);
  }

  .home-sec-5 .img-4 {
    bottom: 30px;
    left: 100px;
  }

  .home-sec-5 .img-5 {
    bottom: 0;
    right: 10%;
  }
}

@media (max-width: 900px) {
  .home-sec-5 .home-sec-5-images {
    min-height: 700px;
  }

  .home-sec-5 .img-1 {
    top: -51px;
    left: 110px;
  }

  .home-sec-5 .img-2 {
    top: 0px;
    right: 10px;
  }

  .home-sec-5 .img-3 {
    top: 140px;
    left: 50%;
    transform: translateX(-30%);
  }

  .home-sec-5 .img-4 {
    bottom: 100px;
    left: 60px;
  }

  .home-sec-5 .img-5 {
    bottom: 43px;
    right: 10%;
  }
}

@media (max-width: 700px) {
  .home-sec-5 .home-sec-5-images {
    min-height: 700px;
  }

  .home-sec-5 .img-1 {
    top: -51px;
    left: 110px;
  }

  .home-sec-5 .img-2 {
    top: 0px;
    right: 10px;
  }

  .home-sec-5 .img-3 {
    top: 140px;
    left: 50%;
    transform: translateX(-30%);
  }

  .home-sec-5 .img-4 {
    bottom: 137px;
    left: 0px;
  }

  .home-sec-5 .img-5 {
    bottom: 27px;
    right: 10%;
  }
}

@media (max-width: 600px) {
  .home-sec-5::after {
    width: 300px;
    margin: 2rem auto 0rem;
  }

  .home-sec-5 {
    padding: 1rem 1.5rem 0 1.5rem;
  }

  .home-sec-5 .home-sec-5-header {
    margin-bottom: 2rem;
  }

  .home-sec-5 .home-sec-5-line-2 {
    display: none;
  }

  .home-sec-5-images {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    min-height: auto;
  }

  .home-sec-5 .home-sec-5-line {
    display: none;
  }

  .home-sec-5 .work-img {
    position: static;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .home-sec-5 .img-3 {
    transform: none;
  }
}

@media (max-width: 450px) {
   .home-sec-5 .work-img {
    position: static;
    width: 100%;
	max-width: 250px;
	border: 10px solid #e6d2b5; 
	}
	
  .home-sec-5 .home-sec-5-images {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    min-height: auto;
  }
}

/* section 6 */

.home-sec-6 {
  padding: 3rem 1.5rem 0 1.5rem;
  font-family: var(--font-primary);
}

.home-sec-6::after {
  content: "";
  display: block;
  width: 320px;
  height: 1px;
  background: #5a3e2b;
  margin: 4rem auto 0;
}

/* HEADER OUTSIDE */
.home-sec-6 .home-sec-6-header {
  text-align: center;
  margin-bottom: 4rem;
}

.home-sec-6 .home-sec-6-header h2 {
  font-size: 2.4rem;
  color: #5a3e2b;
  font-style: italic;
}

.home-sec-6 .home-sec-6-header p {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  color: #5a3e2b;
  line-height: 1.4;
}

/* CARD */
.home-sec-6 .home-sec-6-container {
  max-width: 1200px;
  margin: 0 auto;
  background: url("../images/home-sec6-image-1.png") center / cover no-repeat;
  border-radius: 32px;
}

.home-sec-6 .home-sec-6-overlay {
  background: rgba(90, 62, 43, 0.81);
  border-radius: 32px;
  padding: 4rem;
  color: #fff;
}

/* CONTENT */
.home-sec-6 .home-sec-6-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
}

.home-sec-6 .home-sec-6-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 350px;
}

.home-sec-6 .home-sec-6-col-left {
  margin: 0 auto;
}

.home-sec-6 .home-sec-6-col-right {
  margin: 0 auto;
}

.home-sec-6 .home-sec-6-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.home-sec-6 .home-sec-6-item p {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Lines */
.home-sec-6 .home-sec-6-line {
  width: 70%;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.home-sec-6 .home-sec-6-divider {
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 900px) {
  .home-sec-6 .home-sec-6-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-sec-6 .home-sec-6-divider {
    width: 100%;
    height: 1px;
  }

  .home-sec-6 .home-sec-6-line {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .home-sec-6 .home-sec-6::after {
    width: 300px;
    margin: 2rem auto 0rem;
  }

  .home-sec-6 .home-sec-6-header {
    margin-bottom: 2rem;
  }
  .home-sec-6 .home-sec-6-content {
    gap: 2rem;
  }
  .home-sec-6 .home-sec-6-col {
    gap: 1rem;
  }

  .home-sec-6 {
    padding: 1rem 1.5rem 0 1.5rem;
  }

  .home-sec-6 .home-sec-6-overlay {
    padding: 2rem 1.25rem;
    overflow: hidden;
  }

  .home-sec-6 .home-sec-6-header h2 {
    font-size: 2rem;
  }
}
