@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Quicksand:wght@300..700&display=swap');
*{
box-sizing: border-box;
margin:0px;
}

body{
font-family: "Fredoka", sans-serif;
color: white;
}

html,
body{
max-width: 100%;
overflow-x: hidden;
overflow-x: clip;
}

[class^="elfsight-app-"],
[class*=" elfsight-app-"]{
max-width: 100%;
}
:root{
--maincolor: #d1232b;
--black: rgb(5, 3, 3);
--fontgray:rgb(108, 107, 107);

}

p {
  text-indent: 10px;
}

.flow-content > * + * {
  margin-top: 1rem;
}

.container {
width: 100%;
color: black;
}

.content-section {
display: none;
}

.content-section.active {
display: block;
}
.content-section {
padding: 40px 20px;
animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}


/*NAVBAR*/
.topnav{
height: auto;
width: 100%;
}

.links a{
text-align: center;
align-items: center;
text-decoration: none;
color: black;
transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}
.links .nav-disabled{
text-align: center;
align-items: center;
text-decoration: none;
color: black;
transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}
.links a{
float: left;
padding: 30px 25px 10px 25px;
}
.links .nav-disabled{
float: left;
padding: 30px 25px 10px 25px;
}
.links a:hover, .dropdown:hover .dropbtn{
color: var(--maincolor);
transform: translateY(-2px);
}
.links a[aria-current="page"]{
color: var(--maincolor);
font-weight: 600;
}

/*DROPDOWN*/
.dropdown{
float:left;
overflow:hidden;
}
.dropdown .dropbtn{
font-size:17px;
border:0;outline:0;
padding: 30px 25px 10px 25px;
transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
background-color:inherit;
font-family:inherit;
margin:0
}
.dropdown-content{
display:none;
position:absolute;
background-color:white;
min-width:160px;
margin-left: 13px;
box-shadow:0 8px 16px 0 rgba(0,0,0,0.2);
z-index:1
}
.dropdown-content a{
float:none;
color:black;
display:block;
text-align:left;
padding: 10px;

}

.dropdown:hover .dropbtn{
cursor:pointer;
}

.dropdown:hover .dropdown-content{display:block}

/* Show dropdown when keyboard activates it */
.dropdown-content.show {
  display: block;
}

/* Keep existing hover behavior too */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Make focus visible */
.dropdown-content a:focus,
.dropdown-content a:hover {
  color: var(--maincolor); /* visible focus ring */
}


.links{
float: right;
}

.icon{
margin: 10px;
display: none;
cursor: pointer;
border-radius: 0.5rem;
}

.line{
display: grid;
width: 40px;
height: 5px;
background: var(--maincolor);
margin: 5px;
border-radius: 2rem;
}


.icon.active .line:nth-of-type(1) {
  transform: rotate(-40deg) translate(-5px, 9px);
  opacity: 1;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
}

.icon.active .line:nth-of-type(2){
  opacity: 0;
}

.icon.active .line:nth-of-type(3) {
  transform: rotate(40deg) translate(-5px, -9px);
  opacity: 1;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
}


.logo{
height: 35px;
margin:20px;

}
/* Tooltip text */
.tooltiptext {
visibility: hidden; /* Hidden by default */
width: 130px;
color: black;
text-align: center;
padding: 5px 0;
margin: 20px -30px;
border-radius: 6px;
position: absolute;
z-index: 1; /* Ensure tooltip is displayed above content */
}

/* Show the tooltip text on hover */
.tooltip:hover .tooltiptext {
visibility: visible;
}
.nav-disabled {
display: inline-flex;
gap: 8px;
cursor: default;
}
.nav-note {
font-size: 0.8rem;
font-weight: 600;
color: var(--maincolor);
text-transform: uppercase;
letter-spacing: 0.04em;
}
button{
background: transparent;
border: none;
font: inherit;
}
.button {
z-index: 3;
margin: 30px;
display: inline-block;
border-radius: 0.5rem;
padding: 15px 25px;
cursor: pointer;
background-color: var(--maincolor);
text-decoration: none;
border: none;
color: white;
font-size: 1rem;
}

.button:hover{
color: black;
background-color: rgb(255, 255, 255);
}
.page-light {
background: whitesmoke;
color: black;
min-height: auto;
}
.skip-link {
position: absolute;
left: 16px;
top: 16px;
z-index: 10;
padding: 10px 14px;
border-radius: 0.5rem;
background: black;
color: white;
text-decoration: none;
transform: translateY(-180%);
transition: transform 0.2s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
transform: translateY(0);
}
a:focus-visible,
button:focus-visible,
iframe:focus-visible,
canvas:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
outline: 3px solid var(--maincolor);
outline-offset: 4px;
border-radius: 0.35rem;
}
.links a:focus-visible,
.button:focus-visible,
.footer-info a:focus-visible,
.about-text a:focus-visible,
.icon:focus-visible {
text-decoration: underline;
}
a:not(.button):hover,
a:not(.button):focus-visible {
text-underline-offset: 0.18em;
}
main:focus {
outline: none;
}


.page{
background: linear-gradient(rgba(0, 0, 0, 0.744), rgba(0, 0, 0, 0.137)),
      url("./AdobeStock_1659248080.jpeg");
background-repeat: no-repeat;
background-size: cover;   
justify-content: center;
align-items: center;
text-align: center;
background-position: center top; /* center horizontally, top vertically */
}
.page.page-light {
background: whitesmoke;
color: black;
min-height: auto;
}

.home{
min-height: 95vh;
}

.top{
width: 100%;
justify-content: center;
display: flex;
align-items: center;
align-content: center;
margin-bottom: 10px;
}


.intro{
  margin-top: 25vh;
  width: 50%;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(5, 3, 3, 0.78), rgba(5, 3, 3, 0.52));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.intro h1{
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.intro p{
  font-size: 18px;
  text-align: center;
  line-height: 1.7;
  text-indent: 0;
}

.intro-copy {
  display: grid;
  gap: 0.85rem;
}

/* CONTACT PAGE*/

.map-section{
display: flex;
padding: 50px;
width: 80%;
margin: 50px auto 0 auto;
}
iframe{
margin: 0px;
width: 50%;
}

.contact-widget-section {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 20px;
}

.widget-help-text {
  color: black;
  text-align: center;
  margin: 0 auto 1.5rem;
  max-width: 720px;
  line-height: 1.7;
  padding: 0 20px;
}

.widget-help-text a {
  color: inherit;
}

.contact-info{
align-content: center;
color: black;
width: 50%;
padding: 50px;
text-align: justify;
font-style: normal;
display: flex;
flex-direction: column;
gap: 20px;
}

.contact-info h2{
font-size: 16px;
}
.locations {
max-width: 1200px;
margin: 2rem auto;
padding: 0 1rem;
display: grid;
text-align: center;

grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.location-card{
padding: 10px;
}
.location-card h2 {
margin-bottom: 0.5rem;
font-size: 18px;
}
.location-card p {
margin-bottom: 0.25rem;
}

/*Footer*/
.site-footer {
  background-color: black;
  padding: 30px 180px;
  z-index: 3;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.about-container {
  flex: 4 1 350px;  /* Larger flex-grow, so it takes more space */
  max-width: 450px; /* Optional: give it a larger max width */
  padding-right: 20px;       /* Adds space to the right */
margin-bottom: 20px;  
}

.contact-container,
.company-container {
  flex: 2 1 250px;  /* Smaller flex-grow for these */
  max-width: 300px;
}


.about-title,
.contact-title, .company-title {
font-size: 18px;
margin-bottom: 10px;
}


.about-text {
font-size: 15px;
line-height: 1.8;          /* Increased line spacing for better readability */
margin-top: 10px;          /* Adds space between the title and text */
}

.about-text a {
color: inherit;
}

.footer-info {
list-style: none;
padding: 0;
font-size: 15px;
line-height: 1.8;
}

.footer-info li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer-info li:last-of-type i {
  align-self: flex-start;
  margin-top: 6px;
}

.footer-info i {
  margin-right: 8px;
}

.footer-info a {
text-decoration: none;
color: rgb(243, 233, 233);
}
.footer-info a[aria-current="page"] {
color: white;
font-weight: 700;
text-decoration: underline;
text-underline-offset: 0.18em;
}

.footer-links {
list-style: none;
padding: 0;
}

.footer-links li {
display: block;
}

.footer-links.inline li {
display: inline-block;
margin-right: 15px;
}
.footer-info .fa-brands{
font-size: 30px;
padding: 10px;
}

.hours-list {
  list-style: none;
  padding: 0;
}

.hours-list li + li {
  margin-top: 0.25rem;
}


.site-footer hr {
border: 0;
height: 1px;
background: white;
margin: 20px 0;
}

.site-footer a:hover {
text-decoration: none;
}

.copyright {
text-align: center;
font-size: 13px;
}

/************* ABOUT PAGE*************/

.mision-vision {
display: flex;
flex-direction: row;
gap: 20px;
padding: 80px 8%;
max-width: 1200px;
margin: auto;
flex-wrap: wrap;
}
.texto h2{
  font-size: 18px;
}
.mision-vision img {
width: 100%;
max-width: 400px;
height: auto;
margin: 0 auto;
}

.mision-vision p {
flex: 1 1 320px;
color: black;
text-align: justify;
align-content: center;
}

.mision-vision .story-copy {
flex: 1 1 320px;
color: black;
align-content: center;
}

.mision-vision .story-copy p {
text-align: justify;
text-indent: 10px;
line-height: 1.7;
}

.legal-copy {
color: black;
justify-content: center;
text-align: justify;
padding: 60px;
}

.legal-copy h2 {
font-size: 1.1rem;
}

.legal-copy ul {
padding-left: 1.5rem;
}

.legal-copy li + li {
margin-top: 0.5rem;
}





/*************** MENU PAGE***************/


.heading{
text-align:center;
padding-top: 60px;
}

.heading h1 {
font-size: 35px;

}

.menu-section {
  justify-content: center;
  padding-bottom: 40px;
}

.menu-section a {
  color: var(--maincolor);
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
  white-space: nowrap;
  position: relative;
  text-decoration: none;
  font-weight: 500;
}

.category-section {
padding-top: 40px;
padding-bottom: 80px;
max-width: 1200px;
margin: auto;
justify-content: center;
grid-template-columns: repeat(auto-fit, minmax(420px, 3fr));
gap: 40px;
}

.category-card {
cursor: pointer;
background: white;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.146);
overflow: hidden;
border-radius: 10px;
margin: 50px;
display: flex;
height: auto;
}


.category-card img {
width: 50%;
height: auto;
object-fit: cover;
}

.category-content {
align-self: center;
padding: 35px;
color: black;
}

.category-content h3 {
text-align: left;
font-size: 18px;
margin: 0 0 10px;
}
.category-content p {
display: flex;
justify-content: space-between;
text-align: justify;
}

.category-content p span {
text-align: right;
padding-left: 50px;
}

/*ada compliant*/
    /* Ensure visible focus outline */


    /* Hide visually but keep for screen readers */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      margin: -1px;
      padding: 0;
      overflow: hidden;
      border: 0;
      clip: rect(0 0 0 0);
      white-space: nowrap;
    }

    .dropdown-content[hidden] {
      display: none;
    }

/*RESPONSIVE*/

@media screen and (max-width: 1030px) {
.icon{
display: block;
right: 0;
top: 0;
margin: 15px;
position: absolute;
z-index: 4;
}

.links{
display: none;
}

.links.responsive{
position: absolute;
width: 50%;
display: grid;
background-color: whitesmoke;
z-index: 3;
right: 0px;
height: auto;
}

.links a{
padding: 10px;
}
.links .nav-disabled{
padding: 10px;
justify-content: center;
}
.tooltiptext {
margin: 10px -30px;
}
.dropdown .dropbtn{display:none}
.links.responsive .dropdown{float:none;}
.links.responsive 
.dropdown-content{position:relative;}
.links.responsive .dropdown .dropbtn{display:block;width:100%;}

}


@media (max-width: 834px) {

.map-section{
  flex-direction: column;
  padding: 20px;
}

iframe{
margin: 0px;
width:100%;
}
.elfsight-app-bf5ae6a2-e26d-493c-9c15-948be381d632{
margin: 60px;
}
.category-card{
flex-direction: column;
font-size: 13px;
margin: 20px;
}

.category-card img {
width:100%;
height: auto;
object-fit: cover;
}
.button{
margin: 10px;
}

.intro{
margin-top: 100px;
width: 80%;
}

.mision-vision {
flex-direction: column;
padding: 40px 5%;
}

.mision-vision img {
max-width: 100%;
margin-bottom: 20px;
}
.dropdown{
text-align: center;
}
.dropdown-content{
width: 100%;
margin-left: 0px;
}
.dropdown-content a{
text-align: center;
}

.dropdown .dropbtn{
padding: 10px 25px 10px 25px;
}

.contact-info {
  width: 100%;
  padding: 25px;
}
.contact-info a {
  color: inherit;
}

.contact-widget-section {
  padding: 0 20px;
}

.widget-help-text {
  text-align: left;
}

}

@media screen and (max-width: 690px) {
/*Footer*/
.site-footer {
  background-color: black;
  padding: 30px 30px;
  z-index: 3;
}

.company-container{
  padding-top: 20px;
}
.links.responsive{
width: 100%;
}

.copyright {
font-size: 13px;
margin-top: 20px;
}

  .legal-copy {
    padding: 40px 24px;
  }

  .menu-section {
    padding: 0px;
  }
}
