.main-swiper {
  width: 100%;
  height: 85vh;
  min-height: 500px;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-size: 72px;
  letter-spacing: 10px;
  color: #fff;
}

.hero-content h4 {
  letter-spacing: 4px;
  color: #fff;
}

.hero-btn {
  background: #c49a5a;
  padding: 14px 34px;
  color: #fff;
  text-decoration: none;
}


.hero-btn:hover {
  background: #a8844b;
  color: #fff;
}

/* arrows position fix */
.icon-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  color: white;
}

.icon-arrow-left {
  left: 20px;
}

.icon-arrow-right {
  right: 20px;
}

/* mobile fix */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 40px;
    letter-spacing: 5px;
  }

  .hero-content h4 {
    font-size: 16px;
  }
}

/* Force hero section to be full width */
#billboard {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove template section limitation */
body.homepage #billboard {
  max-width: 100% !important;
}

/* Swiper full width */
#billboard .main-swiper {
  width: 100% !important;
  height: 85vh;
  min-height: 500px;
}

/* Slides */
#billboard .swiper-slide {
  width: 100% !important;
}

.food-showcase {
  width: 100%;
  background: #0c1022;
}

.food-showcase-container {
  display: flex;
  min-height: 500px;
  width: 100%;
}

.food-info-panel {
  width: 45%;
  background: linear-gradient(135deg, #070b1a, #0f1633);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.food-title {
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: 25px;
  font-family: 'Marcellus', serif;
  color: #fff;
}

.food-description {
  font-size: 15px;
  line-height: 1.8;
  color: #cfcfcf;
  max-width: 680px;
}

.food-image-panel {
  width: 55%;
  overflow: hidden;
}

.food-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .food-showcase-container {
    flex-direction: column;
  }

  .food-info-panel,
  .food-image-panel {
    width: 100%;
  }

  .food-info-panel {
    padding: 50px 30px;
  }
}

.food-etp-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  font-family: 'Jost', sans-serif;
}

/* Background image */
.food-etp-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Overlay container */
.food-etp-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 2;
}

/* Dark gradient for readability */
.food-etp-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.75) 70%,
    rgba(0,0,0,0.92) 100%
  );
  z-index: -1;
}

/* Content box */
.food-etp-content {
  width: 45%;
  max-width: 600px;
  color: #ffffff;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Heading */
.food-etp-content h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.3;
  text-shadow: 0 3px 12px rgba(0,0,0,0.7);
  color: #00e1ff;
}

/* Paragraph */
.food-etp-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #f0f0f0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Tablet */
@media (max-width: 992px) {
  .food-etp-section {
    height: auto;
    min-height: 450px;
  }

  .food-etp-content {
    width: 70%;
    padding: 60px 40px;
  }

  .food-etp-content h2 {
    font-size: 28px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .food-etp-overlay {
    justify-content: center;
  }

  .food-etp-content {
    width: 100%;
    padding: 40px 25px;
    text-align: center;
  }

  .food-etp-content h2 {
    font-size: 22px;
  }

  .food-etp-content p {
    font-size: 14px;
  }
}

.features {
  background: #f9f9f9;
}

.feature-box {
  transition: all 0.3s ease;
  border-radius: 6px;
}

.feature-box svg {
  color: #8C907E;
}

.feature-box h5 {
  font-size: 18px;
  line-height: 1.4;
}

.feature-box:hover {
  transform: translateY(-6px);
}

/* mobile improvement */
@media (max-width:768px){

  .feature-box{
    padding:25px 15px;
  }

  .feature-box h5{
    font-size:16px;
  }

}

/* HERO */

.hero-section{
  width:100%;
  margin:0;
  padding:0;
}

/* swiper fix */

.hero-section .swiper,
.hero-section .swiper-wrapper,
.hero-section .swiper-slide{
  width:100%;
  height:80vh;
}

/* slide */

.hero-slide{
  position:relative;
  overflow:hidden;
}

/* background */

.hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
}

/* overlay */

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

/* content */

.hero-content{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
  padding:20px;
  z-index:2;
}

/* text */

.hero-title{
  font-size:clamp(32px,6vw,72px);
  letter-spacing:6px;
  margin-bottom:10px;
}

.hero-subtitle{
  font-size:clamp(16px,2vw,22px);
  letter-spacing:3px;
  margin-bottom:15px;
}

.hero-tagline{
  font-size:clamp(14px,1.5vw,18px);
  max-width:700px;
}


/* TABLET */

@media(max-width:992px){

.hero-section .swiper,
.hero-section .swiper-wrapper,
.hero-section .swiper-slide{
  height:65vh;
}

.hero-title{
  letter-spacing:4px;
}

}


/* MOBILE */

@media(max-width:768px){

.hero-section .swiper,
.hero-section .swiper-wrapper,
.hero-section .swiper-slide{
  height:50vh;
}

.hero-title{
  font-size:30px;
  letter-spacing:3px;
}

.hero-subtitle{
  font-size:16px;
}

.hero-tagline{
  font-size:14px;
}

}


/* SMALL PHONES */

@media(max-width:480px){

.hero-section .swiper,
.hero-section .swiper-wrapper,
.hero-section .swiper-slide{
  height:45vh;
}

.hero-title{
  font-size:26px;
}

.hero-subtitle{
  font-size:15px;
}

.hero-tagline{
  font-size:13px;
}

}

/* Fix swiper hero gap */

.hero-section,
.hero-section .swiper,
.hero-section .swiper-wrapper,
.hero-section .swiper-slide {
  height: 80vh;
}

@media (max-width:768px){

.hero-section,
.hero-section .swiper,
.hero-section .swiper-wrapper,
.hero-section .swiper-slide{
  height:50vh;
}

}

.hero-section{
  margin-bottom:0;
}

.hero-section + section{
  margin-top:0;
}

section{
  margin:0;
  padding-top:0;
}