:root {
    --primary-color: #FFD700; /* Amarillo dorado */
    --secondary-color: #000000; /* Negro */
    --accent-color: #FFD700; 
    --text-color: #333333;
    --light-bg: #FFF9E6;
    --dark-bg: #1A1A1A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: var(--secondary-color);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid var(--primary-color);
}

.nav-container {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    width: 60px;
    height: auto;
    transition: transform 0.3s;
}

.logo:hover {
    transform: rotate(10deg);
}

.logo-text {
    color: var(--primary-color);
    font-family: 'Bungee', cursive;
    font-size: 1.5rem;
    margin-left: 10px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.nav-list {
    width: 90%;
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(255, 215, 0, 0.1);
}

.nav-link.active {
    color: var(--primary-color);
    background-color: rgba(255, 215, 0, 0.2);
}

.nav-link i {
    font-size: 0.9rem;
}

.cta-btn {
    background-color: var(--accent-color);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    margin-left: 10px;
}

.cta-btn:hover {
    background-color: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    position: relative;
    transition: all 0.3s;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/bakground.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 50px;
    word-break: break-word;
}

.hero h1 {
    font-family: 'Bungee', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    text-shadow: 3px 3px 0 var(--secondary-color);
    margin-bottom: 20px;
    word-break: break-word;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: white;
    padding: 0 10px;
    word-break: break-word;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    white-space: normal;
    max-width: 90%;
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
    background-color: white;
}

.menu-section h2 {
    text-align: center;
    font-family: 'Bungee', cursive;
    color: var(--secondary-color);
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.menu-item {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-10px);
}

.menu-item h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.menu-item p {
    margin-bottom: 15px;
    color: var(--text-color);
}

.price {
    display: block;
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    color: white;
}

.location-section h2 {
    text-align: center;
    font-family: 'Bungee', cursive;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.location-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.map-container {
    margin: 30px 0;
    height: 400px;
    background-color: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hours {
    margin-top: 20px;
    font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-section h2 {
    text-align: center;
    font-family: 'Bungee', cursive;
    color: var(--secondary-color);
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-media a {
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-media a:hover {
    color: var(--accent-color);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
}

.credits {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background-color: var(--secondary-color);
        flex-direction: column;
        padding: 20px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
    }

    .nav-link {
        padding: 12px 15px;
        border-radius: 5px;
    }

    .cta-btn {
        margin: 20px 0 0 0;
        justify-content: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn.active .hamburger {
        background-color: transparent;
    }

    .mobile-menu-btn.active .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .mobile-menu-btn.active .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.3rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}


/**COOKIES*/

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    color: #fff;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .cookie-banner a {
    color: #ffd700;
    text-decoration: underline;
  }
  
  .cookie-banner .btn-primary {
    background-color: #ffd700;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: #000;
    font-weight: bold;
    border-radius: 5px;
  }
  
  .cookie-banner.hidden {
    display: none;
  }
  

  /** IMAGENES DE HAMBURGUERSAS**/
/* Improved CSS */
.menu-section-title {
  text-align: center;
  font-size: 2rem;
  margin: 2rem 0;
  color: #333;
  position: relative;
}

.menu-section-title:after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #e67e22;
  margin: 0.5rem auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.menu-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.menu-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-item:hover .menu-img img {
  transform: scale(1.05);
}

.menu-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-content h4 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  display: flex;
  justify-content: space-between;
}

.price {
  color: #e67e22;
  font-weight: 700;
}

.menu-content p {
  flex-grow: 1;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.alergenos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.alergenos img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  padding: 2px;
  background: #f5f5f5;
  transition: transform 0.2s ease;
}

.alergenos img:hover {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .menu-img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .menu-content h4 {
    font-size: 1.1rem;
  }
}