@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');


body{
  min-width: 360px;
  margin: auto !important;
  background: #f8f8f6;
}

/* ---------- HEADER STYLE ---------- */

header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0,0,0,.20);
  backdrop-filter: blur(10px);
  height: 120px;
}

.header-wrapper{
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}

.header-right{
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-left{
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-center{
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-icon{
  background: none;
  border: none;
  color: white;
  font-size: 1.4rem;
  margin-right: 20px;
  transition: .3s;
}

.header-icon:hover{opacity: .7;}

.sign-in-link{
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  transition: .3s;
}

.sign-in-link:hover{opacity: .75;}
.bi-calendar-check{font-size: 1.4rem;}

.header-phone{
  display:flex;
  align-items:center;
  gap:10px;
  color:white;
  text-decoration:none;
  font-size:.95rem;
  font-weight:500;
  transition:.3s;
}

.header-phone:hover{opacity:.75;}
.header-phone i{font-size:1rem;}
.logo-topo{width: 105px;}

.languages{
  display: flex;
  gap: 12px;
  margin-right: 24px;
}

.languages a{
  color: white;
  text-decoration: none;
  font-size: .9rem;
  letter-spacing: 1px;
  opacity: .7;
}

.languages a:hover{opacity: 1;}

.btn-booking{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: white;
  color: #0f172a;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: .3s;
}

.btn-booking:hover{
  transform: translateY(-2px);
  background: #f5f5f5;
}

.container-custom{
  max-width: 1140px;
  margin: auto;
}

/* ---------- NAVBAR SECTION ---------- */

.main-nav{
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  z-index: 999;
}

.nav-menu{
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 0;
  padding: 20px 0;
  list-style: none;
}

.nav-menu a{
  color:white;
  text-decoration: none;
  font-size: .90rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  transition: .3s;
}

.nav-menu a{position: relative;}

.nav-menu a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: white;
  transition: .3s;
}

.nav-menu a:hover::after{width: 100%;}

.mobile-language:hover .mobile-language-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.mobile-language{position: relative;}

.mobile-language-btn{
  background:none;
  border:none;
  color:white;
  font-size:.9rem;
  letter-spacing:1px;
  display:flex;
  align-items:center;
  gap:6px;
}

.mobile-language-menu{
  position:absolute;
  top:100%;
  left:0;
  min-width:70px;
  background:white;
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.3s ease;
  z-index:9999;
}

.mobile-language-menu a{
  display:block;
  padding:10px 15px;
  text-decoration:none;
  color:#444;
  font-size:.85rem;
}

.mobile-language-menu a:hover{background:#f5f5f5;}

/* ---------- NAVBAR OFFCANVAS ---------- */

.offcanvas{
  background:#1f86aa;
  color:white;
}

.offcanvas-header{
  justify-content:flex-end;
  padding: 25px;
}

.mobile-nav{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin-top:30px;
}

.mobile-nav a{
  color:white;
  text-decoration:none;
  font-family:"Merriweather", serif;
  font-size:1.1rem;
  font-weight:300;
}

.mobile-contact-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:35px;
  padding-top:25px;
  border-top:1px solid rgba(255,255,255,.20);
}

.mobile-contact-row a{
  color:white;
  text-decoration:none;
}

.mobile-phone{
  color:white;
  text-decoration:none;
  font-size:.95rem;
}

.mobile-menu-btn{
  background:none;
  border:none;
  color:white;
  font-size:2rem;
}

.mobile-book-btn{
  display:block;
  margin-top:20px;
  padding:14px;
  text-align:center;
  background:white;
  color:#1f86aa;
  text-decoration:none;
  font-weight:600;
  letter-spacing:1px;
}

.mobile-member{
  display:block;
  text-align:center;
  color:white;
  text-decoration:none;
}

.mobile-social{
  display:flex;
  justify-content: center;
  gap:10px;
}

.mobile-social a{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.25);
  border-radius:50%;
  color:white;
  text-decoration:none;
  transition:.3s;
  margin: 20px 0px 20px 0px;
}

.mobile-social a:hover{
  background:white;
  color:#1f86aa;
}

/* ---------- HERO SECTION ---------- */

.hero{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  text-align: center;
  background: rgba(0,0,0,.25);
  font-family: "Merriweather", serif;
  z-index: 100;
}

/* ---------- BOOKING WIDGET  ---------- */

.booking-widget{
  position:absolute;
  bottom: 50px;
  left:50%;
  transform:translateX(-50%);
  width:100%;
  max-width:1140px;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  padding: 0;
  border-radius:10px;
  border: 1px solid rgba(255,255,255,.4);
  box-shadow:0 15px 40px rgba(0,0,0,.20);
  z-index: 150;
}

.booking-widget label{
  color:#a0a0a0;
  font-size:.70rem;
  font-weight:600;
  letter-spacing:1px;
  margin-bottom:10px;
  text-transform: uppercase;
  font-family:"Roboto", Arial, Helvetica, sans-serif;
}

.btn-search-booking{
  width:100%;
  height: 54px;
  border:none;
  background:#239bc3;
  color:white;
  font-family:"Merriweather", serif;
  font-weight: 700;
  font-size:1.1rem;
  letter-spacing:1px;
  transition:.3s;
}

.btn-search-booking:hover{background: #2197c5;}

.booking-input{
  background: transparent;
  border: none;
  box-shadow: none !important;
  padding: 0;
  font-size: 2.2rem;
  font-weight: 300;
  color: #666;
  font-family: "Merriweather", serif;
}

select.booking-input{cursor: pointer;}

.promo-input{
  height:54px;
  background:#f7f7f7;
  border:1px solid #e3e3e3;
  border-radius:6px 6px 0 0;
  text-align:center;
  font-size:.9rem;
  letter-spacing:1px;
}

.promo-input::placeholder{color: #239bc3;}

.booking-cta{
  display: flex;
  flex-direction: column;
}

.booking-column{
  padding:18px 20px 10px;
  min-height:125px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border-right:1px solid #dcdcdc;
}

.booking-column-last{border-right:none !important;}
.date-wrapper{position: relative;}

.date-wrapper i{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: #888;
  pointer-events: none;
}

.booking-input::-webkit-calendar-picker-indicator{
  opacity: 0;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* ---------- ABOUT SECTION ---------- */

.about-hotel{
  padding: 170px 0;
  background: #f8f8f6;
}

.about-symbol{
  margin: 20px 0px 70px 0px;
  opacity: .8;
  width: 250px;
}

.about-title{
  font-family: "Merriweather", serif;
  font-size: clamp(3rem,8vw,5rem);
  font-weight: 300;
  line-height: 1;
  color: #444;
}

.about-subtitle{
  display: block;
  margin: 35px 0px 35px 0px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: .85rem;
  color: #666;
}

.about-text{
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.9;
  color: #666;
}

.about-btn{
  display: inline-block;
  padding: 16px 40px;
  border: 1px solid #666;
  text-decoration: none;
  color: #444;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: .3s;
}

.about-btn:hover{
  background: #444;
  color: white;
}

.about-gallery{margin-top: 110px;}

.about-image{
  width: 100%;
  object-fit: cover;
}

.image-left{
  transform: translateY(-30px);
  max-width: 470px;
}

.image-right{
  max-width: 470px;
  transform: translateY(190px);
}

.about-image{
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  filter: contrast(.95) saturate(.9) brightness(.98);
  aspect-ratio: 4/5;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

/* ---------- EXPERIENCES SECTION ---------- */

.experiences{
  padding: 100px 0;
  background: white;
}

.experiences-header{margin-bottom: 80px;}

.section-intro{
  display: block;
  margin-bottom: 15px;
  font-size: .95rem;
  letter-spacing: 4px;
  color: #666;
}

.experiences h2{
  font-family: "Merriweather", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #444;
}

.experience-card{
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  height: 420px;
}

.experience-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s ease;
}

.experience-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.10));
  display:flex;
  align-items: flex-end;
  padding: 40px;
  transition: .4s ease;
}

.experience-overlay h3{
  color: white;
  font-family: "Merriweather", serif;
  font-size: 2rem;
  font-weight: 300;
}

.experience-content h3{
  color: white;
  font-family: "Merriweather", serif;
  font-size: 2rem;
  transition: .4s ease;
  margin: 0;
}

.experience-content p{
  color: white;
  opacity: 0;
  margin-top: 15px;
  transform: translateY(20px);
  transition: .4s ease;
}

.experience-link{
  display: block;
  margin-top: 12px;
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: .4s ease;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .8rem;
}

.experience-card:hover img{transform: scale(1.08);}
.experience-card:hover .experience-overlay{background: rgba(0,0,0,.45);}
.experience-card:hover h3{transform: translateY(-10px);}
.experience-card:hover{cursor:pointer;}

.experience-card:hover p,
.experience-card:hover .experience-link{
  opacity: 1;
  transform: translateY(0);
}

/* ---------- EXPERIENCES SECTION ---------- */

.featured-offers{
  padding: 80px 0px 120px 0px;
  background: #f8f8f6;
}

.offers-header{
  text-align: center;
  margin-bottom: 70px;
}

.offers-header h2{
  font-family: "Merriweather", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #444;
}

.offer-featured{
  position: relative;
  overflow: hidden;
  margin-bottom: 35px;
}

.offer-featured img{
  width: 75%;
  height: 650px;
  object-fit: cover;
}

.offer-content{
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  background: #f5f7f8;
  padding: 50px;
  color: #444;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  z-index: 5;
}

.offer-tag{
  display: inline-block;
  margin-bottom: 25px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  letter-spacing: 2px;
  font-size: .75rem;
}

.offer-content h3{
  color: #444;
  font-family: "Merriweather", serif;
  font-size: 3rem;
  font-weight: 300;
}

.offer-content p{
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #666;
}

.offer-btn{
  display: inline-block;
  padding: 14px 30px;
  border: 1px solid white;
  color: white;
  background: #239bc3;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: .3s;
}

.offer-btn:hover{
  background: #1d8eb2;
  color: white;
}

.offers-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 80px;
  padding-bottom: 40px;
}


.offer-small{
  position: relative;
  display: block;
  text-decoration: none;
}

.offer-small img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: .6s;
  display: block;
}

.offer-small-content{
  position: absolute;
  bottom: -110px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  background: white;
  padding: 35px;
  transition: .4s ease;
  color: #444;
  box-shadow: 0 25px 60px rgba(0,0,0,.10);
  z-index: 5;
}

.offer-small-content h4{
  font-family: "Merriweather", serif;
  font-size: 2rem;
  font-weight: 300;
  color: #444;
  margin-bottom: 15px;
}

.offer-small-content span{
  color: #239bc3;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .8rem;
}

.offer-small:hover img{transform: scale(1.08);}

.offer-btn-small{
  display: inline-block;
  padding: 12px 22px;
  background: #239bc3;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .75rem;
  margin-top: 15px;
  transition: .3s;
}

.offer-btn-small:hover{
  background: #1d8eb2;
  color: white;
}

/* ---------- TRUST BAR ---------- */

.trust-bar{
  background:#f5f7f8;
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: 36px 20px;
  margin: 100px 0px 100px 0px;
}

.trust-list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-item{
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-icon{
  flex-shrink: 0;
  font-size: 2.2rem;
  color: #239bc3;
  margin-top: 2px;
}

.trust-text{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-text strong{
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #444;
}

.trust-text span{
  font-size: .88rem;
  line-height: 1.5;
  color: #777;
}

/* ---------- NEWSLETTER SECTION ---------- */

.newsletter-section{
  position: relative;
  padding: 180px 20px;
  background: linear-gradient(rgba(0,0,0,.40), rgba(0,0,0,.40)), url("../public/uploads/carousel/enigma_hotel_newsletter.png");
  background-size:cover;
  background-position:center;
  text-align:center;
  color:white;
}

.newsletter-section h2{
  font-family:"Merriweather", serif;
  font-size:clamp(2.5rem,5vw,3.9rem);
  font-weight:300;
  margin-bottom:25px;
}

.newsletter-section p{
  max-width:650px;
  margin:0 auto 40px;
  line-height:1.8;
  opacity:.9;
}

.newsletter-form{
  display:flex;
  justify-content:center;
  gap:0;
  max-width:650px;
  margin:auto;
}

.newsletter-form input{
  width:100%;
  height:60px;
  border:none;
  padding:0 25px;
  font-size:1rem;
}

.newsletter-form button{
  height:60px;
  padding:0 40px;
  border:none;
  background:#239bc3;
  color:white;
  letter-spacing:2px;
  text-transform:uppercase;
  transition:.3s;
}

.newsletter-form button:hover{
  background:#1c89af;
}

/* ---------- LOCATION SECTION ---------- */

.location-section{
  background: #f8f8f6;
  padding-top: 60px;
}

.location-header{
  max-width: 700px;
  margin: 0 auto 70px;
}

.location-header h2{
  font-family:"Merriweather", serif;
  font-size:3.5rem;
  font-weight:300;
  color:#444;
  margin-bottom:25px;
}

.location-header p{
  color:#666;
  line-height:1.9;
}

.location-map{width:100%;}

.location-map iframe{
  width:100%;
  height:550px;
  border:none;
  display:block;
}

/* ---------- FOOTER STYLE ---------- */

.footer{
  background:#1f86aa;
  padding:90px 0 10px;
  text-align:center;
  color:white;
}

.footer-logo{
  width:120px;
  margin-bottom:35px;
}

.footer-social{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-bottom:55px;
}

.footer-social a{
  width:46px;
  height:46px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  text-decoration:none;
  transition:.3s;
}

.footer-social a:hover{
  background:white;
  color:#1f86aa;
}

.footer-menu{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:35px;
  list-style:none;
  padding:0;
  margin:0 0 40px;
  font-family:"Roboto", Arial, Helvetica, sans-serif;
}

.footer-menu a{
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.2rem;
  padding: 0px 5px 0px 5px;
}

.footer-divider{
  width:100%;
  max-width:1100px;
  height:1px;
  background:rgba(255,255,255,.20);
  margin:35px auto;
}

.footer-legal{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px;
  font-size: 1.05rem;
  opacity:.85;
  font-family:"Roboto", Arial, Helvetica, sans-serif;
}

.footer-legal a{
  color:white;
  text-decoration:none;
  padding: 0px 10px 0px 10px;
}

.footer-info{margin-top:50px;}

.footer-info h3{
  font-family:"Merriweather", serif;
  font-size:1.5rem;
  font-weight:300;
  margin-bottom:20px;
}

.footer-info p{
  margin-bottom:12px;
  opacity:.95;
  font-family:"Roboto", Arial, Helvetica, sans-serif;
}

.complaints-book{margin: 20px 0px 10px 0px;}
.complaints-book img{width:170px;}

.footer-logos{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  margin-top:40px;
}

.footer-logos img{
  height: 95px;
  object-fit: contain;
}

.portugal-logo{height: 135px !important;}
.inalentejo-logo{height: 55px !important;}
.alentejo-2020-logo{height: 140px !important;}

.footer-partner-logo{
  width: auto;
  max-width: 100%;
}

.footer-social a{
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
}

.mobile-header{display: none;}
.mobile-book-trigger{display:none;}

/* ---------- MEDIA QUERIES ---------- */

@media (max-width: 575px){
  h2{font-size: 2rem !important;}
  .section-intro{font-size: 0.80rem !important;}
  .about-hotel{padding: 100px 0 0px 0px;}
  .about-title{font-size: 1.9rem !important;}
  .about-subtitle{font-size: .75rem;}
  
  .about-symbol{
    width: 150px;
    margin: 0px 0px 70px 0px;
  }

  .offers-header{padding: 40px 0px 40px 0px;}
  .offer-small:hover img{transform: scale(1);}
  .offer-featured{margin-bottom: 0px !important;}
  .offer-content h3{font-size: 1.8rem !important;}
  .offer-small h4{font-size: 1.7rem !important;}

  .trust-list{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .newsletter-form button{margin-top: 15px;}
  .newsletter-kicker{font-size: 0.75rem;}
  .newsletter-section h2{
    font-size: 1.8rem !important;
    margin-top: 4px;
  }

  .copyright{font-size: 0.75rem;}

  .footer-logo{
    width: 65px !important;
    margin-bottom: 65px;
  }

  .footer-logos{margin-top: 10px;}

  .portugal-logo{height: 115px !important;}
  .inalentejo-logo{height: 40px !important;}
  .alentejo-2020-logo{height: 100px !important;}
}

@media(max-width:768px){

  .image-left{transform: translateY(0px);}
  .image-right{transform: translateY(10px);}

  .newsletter-form{flex-direction: column;}
  .newsletter-form button{width: 100%;}

  .newsletter-form{
    display:flex;
    flex-direction:column;
    gap:0;
  }

  .newsletter-form input{
    height:60px;
    width:100%;
  }

  .newsletter-form button{
    width:100%;
    height:60px;
  }

  .footer{padding:70px 20px 10px;}

  .footer-menu{
    flex-direction:column;
    gap:18px;
  }

  .footer-legal{
    flex-direction:column;
    gap:12px;
  }

  .footer-legal span{display:none;}

}


@media (max-width: 991px){

  header{display:none;}
  .main-nav{display:none;}

  header,
  .main-nav{
    display:none;
  }

  .mobile-header{
    display:block;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;
    background:rgba(0,0,0,.25);
    backdrop-filter:blur(10px);
    z-index:2000;
  }

  .mobile-header-wrapper{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 20px;
  }

  .mobile-logo{width:80px;}
  .booking-widget{display:none;}

  .mobile-menu-btn{
    background:none;
    border:none;

    color:white;

    font-size:2rem;
  }

  .hero-overlay{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
  }

  .mobile-book-trigger{
    display: block;
    position:absolute;
    bottom: 90px;
    left:50%;
    transform:translateX(-50%);
    width:calc(100% - 40px);
    max-width:350px;
    height:58px;
    background:#239bc3;
    color:white;
    border:none;
    letter-spacing:2px;
    text-transform:uppercase;
    z-index: 999 !important;
  }

  .mobile-language-btn{
    background:none;
    border:none;
    color:white;
    letter-spacing:1px;
  }

  .hero-content,
  .about-hotel .text-center,
  .experiences-header,
  .offers-header,
  .location-header{
    padding-left: 25px;
    padding-right: 25px;
  }

  .featured-offers{padding: 70px 0px 0px;}

  .experiences{padding: 120px 0px 0px 0px;}
  .experiences-header{padding: 10px 0px 20px 0px;}

  .experience-content h3{
    transform: translateY(110px);
  }

  .trust-list{
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 24px;
  }

  .trust-bar{
    padding: 28px 20px;
    margin: 0px;
  }

  .offer-featured{
    display:flex;
    flex-direction:column;
  }

  .offer-featured img{
    width:100%;
    height:320px;
  }

  .offer-content{
    position:relative;
    top:auto;
    right:auto;
    width:100%;
    transform:none;
    box-shadow:none;
    padding: 40px 30px 0px 30px;
  }

  .offer-small{
    position:relative;
    display:flex;
    justify-content:center;
    margin-bottom: 190px;
  }

  .offer-small-content{
    position:absolute;
    bottom:-160px;
    left:50%;
    transform:translateX(-50%);
    width:85%;
    max-width: 388.5px;
  }

  .offers-grid{
    grid-template-columns: 1fr;
    gap: 0px;
    padding-bottom: 0px;
  }

  .offers-header h2{font-size: 2.5rem;}

  .offer-content h3{font-size: 2.2rem;}
  .offer-small-content h4{font-size: 1.8rem;}

}