:root {
  --fuego-red: #DE3441;
  --fuego-orange: #F97316;
  --fuego-yellow: #FACC15;
  --fuego-dark: #0B0B0C;
  --fuego-default: #404040;
  --fuego-peach: #D4C8B2;
  --fuego-lg: #D3D3D3;
}

.text-dark { color: #0b0b0c!important; }
.text-yellow { color: #facc15 !important; }
.text-red { color: #ef4444 !important; }
.text-orange { color: #f97316 !important; }
.text-white { color: #fff !important; }

@font-face {
  font-family: 'Tacofuego';
  src: url('../fonts/tacofuegofont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.taco-font {
  font-family: 'Tacofuego', sans-serif;
}

.video-banner {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: 90vh;
  overflow: hidden;
  background: black;
}

.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .video-banner {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .banner-video {
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .bg-con {
    bottom: 7px !important;
    right: 5px !important;
    padding: 0.5rem 0.8rem !important;
    border-radius: 0.5rem;
    max-width: 80%;
  }

  .bg-con h1 {
    font-size: 1.1rem !important;
    line-height: 1.2;
  }

  .bg-con p {
    font-size: 0.85rem !important;
    margin-bottom: 0.2rem !important;
  }
}

/* For Laptop and Tablet */
@media (min-width: 769px) and (max-width: 1366px) {
  .video-banner {
    height: 80vh;
  }

  .banner-video {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .bg-con {
    bottom: 7px !important;
    right: 5px !important;
    padding: 0.5rem 0.8rem !important;
    border-radius: 0.5rem;
    max-width: 80%;
  }

  .bg-con h1 {
    font-size: 1.1rem !important;
    line-height: 1.2;
  }

  .bg-con p {
    font-size: 0.85rem !important;
    margin-bottom: 0.2rem !important;
  }
}

.bg-con-rev {
  padding: 1.5rem; 
  max-width: 90%;  
  background-color: #0b0b0c; 
  border: 3px solid #ef4444; 
  border-radius: 1rem;        
}

.bg-con-rev2 {
  padding: 2rem;
  background: #fdfcf9;
  border: 1px solid #ddd;
  border-radius: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  max-width: 100%;
}

.bg-con-rev2:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.bg-con-rev2 h6 {
  color: #111;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

.bg-con-rev2 p {
  color: #333;
  font-size: 0.95rem;
}

.location-img {
  width: 70%;
  border-radius: 0.75rem;
  margin-top: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg-con-rev2:hover .location-img {
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .bg-con-rev2 {
    padding: 1.5rem;
  }
  .location-img {
    width: 80%;
  }
}

.bg-con-rev3 {
  padding: 1.25rem 1.5rem;
  width: 100%;                     
  margin: 0 auto;          
  background-color: #F5F1E9;
  border: 2px solid #141414;  
  border-radius: 12px;       
  overflow: hidden;     
  display: flex;        
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bg-con-rev3:hover {
  transform: translateY(-5px);
  box-shadow: none;
  border-color: #141414; 
}

.bg-con-rev4 {
  padding: 1.25rem 1.5rem;
  width: 100%;                     
  margin: 0 auto;          
  background-color: #ffff;
  border: 2px solid #141414;  
  border-radius: 12px;       
  overflow: hidden;     
  display: flex;        
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


body {
  font-family: 'Montserrat', sans-serif;
  background: var(--fuego-dark);
  color: #f8fafc;
}

.glass {
  backdrop-filter: blur(8px);
  background: rgba(12,12,14,0.7);
}

.chevron {
  position: relative;
  width: 500px;            
  height: 250px; 
  width: 100%;
  max-width: 320px;        
  background: url("") center/cover no-repeat;
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s;
  margin: 0 40px;         
}

.chevron:hover {
  transform: scale(1.05);
}

.chevron::before {
  content: "";
  position: absolute;
  inset: -4px; 
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
  z-index: -1;
}

.chevron-content {
  position: relative;
  z-index: 1;
}

.chevron-content h2 {
  font-size: 1.8rem;
  margin: 0;
}

.chevron-content p {
  font-size: 1rem;
  margin: 0;
}

@media (min-width: 992px) {
  .chevron {
    max-width: 500px;
    height: 250px;
  }
}

.divider-bar {
  height: 40px;
  background: linear-gradient(to right, #09b53a, #ffffff, #cf9e00, #ffffff, #09b53a);
  margin: -20px 0;
}

.carousel-item img {
  width: 100%;
  height: 92vh; 
  object-fit: cover;
}

.card-img-top {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.lazy-portrait {
  background: url('../images/placeholder.jpg') center center no-repeat;
  background-size: cover;
}

.map-marker {
  position: absolute;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transform: translate(-50%, -100%); 
  transition: transform 0.2s ease, filter 0.2s ease;
}

.map-marker:hover {
  transform: translate(-50%, -100%) scale(1.15);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.7));
}

#brochure1 .brochure {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

#brochure1 .leaf {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

#brochure2 .brochure {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh; 
  display: flex;
  align-items: center;
}

#brochure2 .leaf {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.bg-peach {
  background-color: #F5F1E9 !important;
}

.bg-lg {
  background-color: #D3D3D3;
}

html {
  scroll-behavior: smooth;
}

.big-img {
  width: 80%;
  height: 475px;  
  object-fit: cover; 
}

.btn-custom,
.btn-custom:link,
.btn-custom:visited {
  background-color: #ffff !important;
  border-color: #DE3441 !important;
  color: #DE3441 !important;
  text-decoration: none !important;  
}
.btn-custom:hover,
.btn-custom:focus,
.btn-custom:active {
  background-color: #bb2d3b !important;
  border-color: #b02a37 !important;
  color: #ffffff !important;
}

.btn-outline-custom,
.btn-outline-custom:link,
.btn-outline-custom:visited {
  background-color: transparent !important;
  border-color: #DE3441 !important;
  color: #DE3441 !important;
  text-decoration: none !important;
}
.btn-outline-custom:hover,
.btn-outline-custom:focus,
.btn-outline-custom:active {
  background-color: #DE3441 !important;
  border-color: #DE3441 !important;
  color: #ffffff !important;
}

.location-btn.active {
  background-color: #bb2d3b !important;
  border-color: #b02a37 !important;
  color: #ffffff !important;
}

.carousel-caption.bottom-right {
  position: absolute;
  bottom: 40px;
  right: 40px;
  left: auto !important;
  transform: none;
  max-width: 400px;
  margin: 0;
  text-align: center;         
  background: rgba(0,0,0,0.6);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  width: fit-content;
}

.carousel-caption.bottom-right h3 {
  font-weight: 700;
  color: #fff;
  line-height: 1;        
  margin: 0;             
  display: flex;         
  align-items: center;   
  justify-content: center;
  height: 100%;         
}

/* Carousel Buttons with light background */

.carousel-control-prev,
.carousel-control-next {
  background-color: rgba(245, 241, 233, 0.3); 
  border-radius: 50%; 
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: rgba(245, 241, 233, 0.5);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245, 241, 233, 0.3);
  border: none;
  cursor: pointer;
  z-index: 5;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.carousel-btn.prev {
  left: 100px; 
}

.carousel-btn.next {
  right: 100px; 
}

.carousel-btn:hover {
  background: rgba(245, 241, 233, 0.5);
}

.carousel-caption.bottom-right h3 {
  font-weight: 700;
  color: #fff;
}

.carousel-caption.bottom-right p {
  color: #fff;
  margin-bottom: 0.5rem;
}

.carousel-caption.bottom-right .badge {
  font-size: 0.9rem;
  padding: 0.4rem 0.6rem;
}

@media (max-width: 768px) {
  .carousel-caption.bottom-right {
    bottom: 20px;
    right: 20px;
    max-width: 90%;
    width: auto;
    padding: 0.8rem;
    text-align: center;
  }

  .carousel-caption.bottom-right h3 {
    font-size: 1.1rem;
    line-height: 1.3;
  }
}

.map-wrapper {
  display: flex;
  justify-content: center; 
  align-items: center;      
  width: 100%;
  text-align: center;
}

.map-container,
.map-container-mobile {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 900px; 
  aspect-ratio: 16 / 9; 
  margin: 0 auto; 
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  display: block;
  margin: 0 auto;
}

.map-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.map-marker:hover {
  transform: translate(-50%, -50%) scale(1.2);
  filter: drop-shadow(0 0 5px #ff6b35);
}

@media (max-width: 768px) {
  .map-container,
  .map-container-mobile {
    max-width: 100%;
    aspect-ratio: 16 / 9;
    padding: 0 1rem;
  }

  .map-marker {
    width: 22px;
    height: 22px;
  }

  #locationsSection h2 {
    font-size: 1.6rem;
  }

  #locationsSection p.lead {
    font-size: 1rem;
    color: #888;
  }
}

.image-wrapper img {
  width: 100%;
  height: auto;
}

.caption-bottom-right {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 1rem;
}

.carousel-caption.bottom-center {
  position: absolute;
  bottom: 40px; /* distance from bottom */
  left: 50%;    /* center horizontally */
  transform: translateX(-50%); /* true centering */
  right: auto !important;
  max-width: 400px;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  background: rgba(0,0,0,0.6);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
}