:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37373f; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #009900; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #7f7f90;  /* The default color of the main navmenu links */
  --nav-hover-color: #ce1212; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #7f7f90; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ce1212; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f2f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1f1f24;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #37373f;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: #cc0000;
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*-- # Global Header --*/
#header.header.sticky-top {
  top: 0px;
  height: 80px;
  padding: 15px 0;
  vertical-align: middle;
  color: var(--default-color);
  background-color: #009900;
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5) !important;
}
.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #fff;
  font-family: var(--default-font);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 36px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color:#fff;
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    color: #fff;
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #fff;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #fff;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 25px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    top: 80px;           
    right: 20px;         
    max-width: 60%;     
    height: auto;        
    padding: 20px 30px;
    margin: 0;
    border-radius: 10px;
    background-color: #e8dcb8;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: ease-in-out 0.3s;
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    display: block;
    position: relative;
    padding: 10px 20px;
    font-size: 17px;
    line-height: normal;
    font-weight: 500;
    outline: none;
    color: #222;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 24px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*-- # Global Sections --*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 40px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}
@media (max-width: 992px) {
  section,
  .section {
    scroll-margin-top: 56px;
  }
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}
.section-title h2 {
  color: #37517e;
  font-size: 42px;
  font-weight: 900;
}
@media (max-width: 992px) {
  .section h2{
    font-size: 32px;
    font-weight: 700;
    text-align: center;
  }
}
section h3 {
  font-size: 30px;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 15px;
}
@media (max-width: 992px) {
  .section h3{
    font-size: 26px;
    font-weight: 700;
    text-align: center;
  }
}
section h4 {
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  color: #444;
}
.section-title h6 {
  color: #ccc;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
section p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6rem;
  text-align: justify;
}
.section-title span {
  color: #009900;
}

.cta-btn {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  color: #fff;
  display: inline-block;
  margin-top: 5px;
  padding: 12px 30px;
  border: 0px;
  border-color: #009900;
  border-radius: 6px;
  transition: 0.5s;
  background: #009900;
}
.cta-btn:hover {
  font-weight: 600;
  color: #fff;
  border: 0px;
  border-color: #cc0000;
  border-radius: 6px;
  background: #cc0000;
}

/*-- # Hero Section --*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/cta-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
    background-image: url("../img/cta-bg_2.jpg");
    background-position: top center;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5) !important;
}

.hero .container {
  position: relative;
  z-index: 3;
}
.hero-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 300px;
}
@media (max-width: 768px) {
  .hero-img-container {
    min-height: 200px;
    margin-bottom: 30px;
  }
}
.hero-img-container:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../img/hero-img.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(1.7); /* Ajusta este valor según necesites */
  transform-origin: center;
}
@media (max-width: 768px) {
  .hero-img-container:after {
    display: none;
    background-size: 80%;
  }
}
.hero .img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

.hero .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  #hero .row div {
    flex-direction: column;
    text-align: center;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

#hero h1 {
  font-size: 56px;
  margin: 0;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 768px) {
  #hero h1 {
    text-align: center;
    font-size: 46px;
  }
}
#hero h4 {
  font-weight: 400;
  line-height: 32px;
  text-align: justify;
  padding-bottom: 40px;
  color: #fff;
}
@media (max-width: 768px) {
  #hero h4 {
    font-size: 30px;
    line-height: normal;
    text-align: center;
  }
}

#hero span {
  color: #cc0000;
}
/*-- End Hero Section --*/

/*-- About Section --*/
.about .content {
  height: 100%;
}

.about .text-justify {
  text-align: justify;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
}

.why-us .why-box h3 {
  color: var(--contrast-color);
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.why-us .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .icon-box i {
  color: var(--accent-color);
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 30px 0;
  font-family: var(--default-font);
}

.why-us .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}

.chefs .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.chefs .team-member .member-img:after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
  mask: url("../img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}

.chefs .team-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  z-index: 2;
}

.chefs .team-member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.chefs .team-member .social a:hover {
  color: var(--default-color);
}

.chefs .team-member .social i {
  font-size: 18px;
}

.chefs .team-member .member-info {
  padding: 10px 15px 20px 15px;
}

.chefs .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  font-family: var(--default-font);
}

.chefs .team-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.chefs .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.chefs .team-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.chefs .team-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*-- # Contact Section --*/
.contact .info-item {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ddd;
  background-color: #F0F7FF;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.14);
  height: 100%;
}
.contact .info-item i {
  font-size: 38px;
  line-height: 1;
  color: #009900;
  margin-bottom: 15px;
}
.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px 0;
  padding: 0;
}
.contact .info-item address {
  margin: 0;
  font-style: normal;
}
.contact .info-item p {
  margin: 0;
}

.contact a {
  color: #999;
}
.contact a:hover {
  color: #333;
  transition: all 0.5s ease;
}

@media (max-width: 768px) {
  .box-none {
    display: none;
  }
}

/*----------*/

/* Sección del formulario */
/*Error/Success*/
#error,
#success {
  display: none;
  color: #fff;
  padding: 13px 15px;
  border-radius: 6px;
  background: #009900;
  margin-left: 12px;
  margin-right: 12px;
  width: calc(100% - 24px);
}
#error {
    background: #ff3300;
}
/*----------*/
.form-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
@media (max-width: 768px) {
  .form-section {
    padding-top: 20px;
  }
}

/* Contenedor del formulario */
.form-container {
  width: 100%;
  border-radius: 0px;
  padding: 30px !important;
  border: 1px solid #ddd;
  border-radius: 0px;
  background-color: #F0F7FF;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.14);
  position: relative;
}

.form-control, .form-select  {
    font-size: 16px;
    color: #444 !important;
    border-color: #ccc;
    border-width: 1px;
    padding: 12px 15px;
    background-color: #fff;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.form-control:hover, .form-select:hover {
    border-color: #009900;
    border-width: 1px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.form-control:focus, .form-select:focus {
  color: #444 !important;
  font-weight: 500;
  border-color: #009900 !important;
  border-width: 2px;
  box-shadow: none;
  outline: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.form-select option[value=""] { 
    display: none;
}

.form-check {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.form-check label {
  font-size: 15px;
  color: #777;
}
.form-check-input {
  margin-top: 0;
  border: 1px solid #666 !important;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.form-check-input:hover {
  box-shadow: none;
}
.form-check-input:checked {
  background-color: #009900;
  border-color: #009900;
  box-shadow: none;
}
.form-label {
  color: #777;
  font-size: 14px;
  line-height: 1.6;
  padding: 10px;
  text-align: justify;
}

/* Responsive */
@media (max-width: 992px) {
    .col-lg-6 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}
/*-- # End Contact Section --*/

/*-- # Footer Section --*/
#footer {
  padding: 0 0 30px 0;
  font-size: 14px;
  background: #333;
}