.elementor-7 .elementor-element.elementor-element-05be808{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-1c234bd *//* Global Reset & Baser */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-primary: #ff4d00;
    /* Ember Red */
    --accent-secondary: #d4af37;
    /* Gold/Brass */
    --font-main: 'Outfit', sans-serif;
    --spacing-section: 4rem;
    --transition-fast: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    /* Adding a semi-transparent overlay to ensure text readability while showing the pattern */
    background-image: linear-gradient(rgba(10, 10, 10, 0.93), rgba(10, 10, 10, 0.93)), url('bg-pattern.jpg');
    background-repeat: repeat;
    background-size: 400px;
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mb-2 {
    margin-bottom: 2rem;
}

.bg-darker {
    background-color: #050505;
}

.rounded-shadow {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

@media (min-width: 768px) {
    .section-padding {
        padding: 90px 0;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3), var(--bg-dark));
    z-index: -1;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content .subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-logo {
    width: 280px;
    margin-bottom: 0.2rem;
    display: inline-block;
}

.accent-text {
    color: var(--accent-primary);
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 77, 0, 0.4);
}

.btn-primary:hover {
    background-color: #e64500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 0, 0.6);
}

.btn-secondary {
    border-color: white;
    background: transparent;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--bg-dark);
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content .subtitle {
        font-size: 1.5rem;
    }

    .cta-group {
        flex-direction: row;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Experience Section */
.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: var(--text-secondary);
}

.grid-3 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--accent-secondary);
}

/* Location Section */
.grid-2 {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.location-info h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.location-subtitle {
    font-size: 1.25rem;
    color: var(--accent-secondary);
    margin-bottom: 2rem;
}

.info-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.location-image-wrapper {
    margin-top: 2rem;
}

.map-wrapper h3 {
    margin-bottom: 1rem;
}

.map-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Expansion Section */
.expansion-card {
    background: var(--bg-card);
    padding: 3rem 1rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.expansion-card h3 {
    font-size: 1.5rem;
    z-index: 2;
    position: relative;
}

.status {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    border: 1px solid var(--accent-primary);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.footer-cierre {
    margin-top: 3rem;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-secondary);
}

/* Social Proof */
.testimonial-grid {
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--bg-card), #1a1a1a);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-secondary);
}

.quote {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.author {
    font-weight: 600;
    color: var(--accent-secondary);
    text-align: right;
}

/* Footer */
.main-footer {
    background-color: black;
    padding-top: 4rem;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: white;
}

.footer-brand .tagline {
    color: var(--accent-primary);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-info a {
    color: var(--text-secondary);
}

.footer-info a:hover {
    color: var(--accent-primary);
}

.footer-legal {
    padding: 1.5rem 0;
    border-top: 1px solid #111;
    font-size: 0.9rem;
    color: #666;
}

/* Menu Section */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu-item-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.menu-item-card:hover {
    background: #1a1a1a;
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.menu-item-card.featured {
    border-color: rgba(212, 175, 55, 0.3);
    background: linear-gradient(145deg, #141414, #1c1810);
}

.menu-item-card .tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-secondary);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.menu-img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background-color: #050505;
    /* Slightly lighter than card to show image */
    padding: 1rem;
}

.menu-content-wrapper {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.menu-header h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
}

.menu-header .price {
    font-size: 1.25rem;
    color: var(--accent-primary);
    font-weight: 700;
    white-space: nowrap;
    margin-left: 10px;
}

.ingredients {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.combo-price {
    font-size: 0.9rem;
    text-align: right;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}


.combo-price span {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-left: 5px;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-primary);
}

.faq-item[open] {
    border-color: rgba(255, 77, 0, 0.3);
    background: #1a1a1a;
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none; /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-primary);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    animation: fadeIn 0.5s ease;
}/* End custom CSS */