/*
    GLO#AL STYLE TAGS
*/

:root {
  --amarillo: #ffbb00;
  --black-1:#202020;
  --white-1: #dcdcdc;
  --main-font: 'Anton';
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:var(--main-font);
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
.container {
    MAX-width: 100% !important;
    width: 94% !important;
}
.no-bold {
    font-family: "Antonio", sans-serif;
}
.btn-amarillo-1 {
    background-color: var(--black-1);
    font-size: 22px;
    width: 200px;   
    box-shadow: 3px 3px 10px;
}
.btn-amarillo-1 a {
    color: var(--amarillo);
    text-decoration: none;
}
.btn-amarillo-1:hover a {
    color: var(--black);
    text-decoration: none;
}
.btn-amarillo-2 {
    background-color: var(--black-1);
    font-size: 22px;
    width: 200px;   
    box-shadow: 3px 3px 10px;
    transition: 0.3s all;
}
.btn-amarillo-2 i {
  font-size: 30px;
}
.btn-amarillo-2:hover {
    background-color: #183153 !important;
}
.btn-amarillo-2 a {
    color: rgb(112, 251, 47);
    text-decoration: none;
    transition: 0.3s all;
}
.btn-amarillo-2:hover a {
    color: white !important;
    text-decoration: none;
}
.col {border: none !important;}
/*
    HEADER STYLE TAGS
*/

.navbar{
    background:rgba(32, 32, 32, 0.9);
    font-size: 30px;
    font-weight: bolder;
    letter-spacing: 2px;
    padding-top: 0px;
    padding-bottom: 0px;
    backdrop-filter: blur(10px);
    box-shadow: 0px 5px 30px var(--black-1);
}
.navbar a {
    color: var(--amarillo) !important;
    transition: 0.2s all;
}
.navbar-brand {
  width: 100px;
}
.navbar-brand-txt {
  height: 60px;
}
.navbar .navbar-nav .nav-item {
  margin-left: 18px;

}
.navbar>.navbar-toggler>.navbar-toggler-icon {
    color: var(--amarillo) !important;
    background-color: white !important;
}


.navbar .navbar-nav .nav-item:hover a{
    border-bottom: 1px solid var(--amarillo);
    color: var(--white-1) !important;
}

.dropdown-menu {
    background:rgba(32, 32, 32, 0.9);
    backdrop-filter: blur(10px);
}
.dropdown-menu>li>.dropdown-item {
    width: inherit !important;
    border: none !important;
}
.dropdown-menu>li .nav-btn-s {color: var(--white-1) !important;}
.dropdown-menu>li:hover a {
    background-color: var(--black-1);
}
.dropdown-menu>li:hover .special {
    color: var(--amarillo) !important;
}
.dropdown-menu .dropdown-item .special {
    font-size: 25px;
}


/*
    HERO AREA
*/
.hero-slider {
  position: relative;
  width: 100%;
  height:120vh;
  padding-top: 80px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}



/*
ABOUT STYLES
*/
.about {
    width: 100%;
    background-color: white;
    padding-top: 150px;
    padding-bottom: 150px;
    
}

.about-left img {
  max-width: 90%;
  box-shadow: 10px 10px 30px;
  border-radius: 0px 20px 20px 0px;
}
.about-right {
    padding-left: 40px;
}
.about-right .about-title, .about-right .about-text  {
    margin-top: 40px;
    text-align: left;
}
 .about-right .about-text  {
    margin-top: 30px;
    text-align: left;
    font-size: 25px !important;
    letter-spacing: 1px;

}
.about-right .about-title h1 {
    font-size: 60px !important;
    letter-spacing: 1px;
    color:var(--amarillo);
}


/*
JOIN AREA STYLES
*/

.join {
    padding-top: 150px;
    padding-bottom: 150px;
    background-color: var(--amarillo);
    
}
.join .join-title h2{
    font-size: 60px;
}
.join .join-title p{
    font-size: 25px;
}


/*
LCOALES AREA STYLES
*/

.locales {
  padding: 40px 20px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.title-sl {
  text-align: center;
  font-size: 60px;
  color: var(--amarillo);
  margin-bottom: 30px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card Base Style */
.card {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Map Card Specific */
.map-card iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 6px;
}

/* Responsive (Tablet ve üstü için) */
@media (min-width: 768px) {
  .locales-cards {
    flex-direction: row;
  }

  .locales-card {
    flex: 1;
  }

  .locales-card.map iframe {
    height: 100%;
    min-height: 300px;
  }
}
/*
PEDIR AREA STYLES
*/
.title-black {
    font-size: 100px;
    z-index: 99;
    color: var(--black-1);
}
.pedir>.join-title p {
    font-size: 40px;
}
.pedir>.btn-amarillo-2 {
    border-radius: 100px;
}
/*
CONTACTO AREA STYLES
*/

.contacto {
    padding-top: 150px;
    padding-bottom: 150px;

}
.contacto .contacto-title {
    margin-bottom: 50px;
}
.contacto .contacto-title h2{
    font-size: 70px;
    border-bottom: 1px solid var(--black-1);
    color: var(--amarillo);
}
.contacto .contacto-title p {
    font-size: 20px;

}
.contacto form {
    background-color: var(--black-1);
    color: var(--amarillo);
    padding-top: 30px;
    padding-bottom: 30px;
    box-shadow: 10px 10px 10px var(--black-1);
} 
.contacto .row .col label {
    display: block;
    font-size: 40px;
    text-align: start;
}
.contacto .row .col input,.contacto .row .col textarea {
    display: block;
    
    font-size: 25px;
    text-align: start;
    width: 100%;
    border: none;
    outline: none;
}.contacto .row .col textarea {
  height: 250px;
}.contacto form .row {margin-top: 20px !important;}

.contacto  form .row .col button {
  background-color: var(--amarillo);
  width: 100%;
  padding: 10px 0px;
  outline: none;
  padding: none;
  transition: 0.3s;
}.contacto  form .row .col button:hover {
  background-color: var(--black-1);
  width: 100%;
  padding: 10px ;
  color: white;
}

#Enviado {
  display: none;
  text-align: center;
  color: white;
  margin-top: 50px;
}
@media (max-width: 450px) {
  .about-right {
    padding-left: 0px;
  }
  .about-left {
    display: none;
  }
  .about .row .col-md .about-left img {box-shadow: none;}
  .contacto form {box-shadow: none;}
 .navbar .navbar-brand-txt {display: none !important;}
  .information-card {
    margin-top: 200px;
  }
}
@media (max-width: 768px) {
 .about .row .col-md .about-left img{box-shadow: none;}
  .navbar-brand-txt{display: none;}
}



/*
FOOTER STYLE 
*/

.footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px 20px;
  font-size: 15px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-logo img {
  max-width: 150px;
}

.footer-links,
.footer-contact {
  max-width: 300px;
}

.footer h4 {
  color: orange;
  margin-bottom: 10px;
}

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

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-contact p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right:20px;
  font-size: 30px;
  color: var(--white-1);
  transition: 0.3s all;
}
.social-icons a:hover {
  color: var(--amarillo);
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(66%) sepia(96%) saturate(750%) hue-rotate(3deg) brightness(103%) contrast(101%);
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #ccc;
}

.footer-bottom a {
  color: orange;
  text-decoration: none;
  margin: 0 5px;
}



.abierto {
  padding-bottom: 10px;
  padding-right:10px ;
}
.abierto-btn {
  background-color: var(--black-1);
  max-width: 10%;
  padding: 10px 10px;
  border-radius: 20px;
  float: right;
  color: var(--amarillo);
}


/*
COOKIES BANNER
*/

#cookie-banner {
  background-color:var(--amarillo);
  text-align: center;
  color: var(--black-1) !important;
}
#cookie-banner a{
  color: white;
  text-decoration: none;
}
#cookie-banner>.btn-amarillo-1{
  color: var(--amarillo);
}
#cookie-banner>.btn-amarillo-1:hover{
  color: white;
}