@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700&family=Inter:wght@300;400;600&display=swap');

.text-gold {
    color: var(--accent-gold);
    font-weight: 600;
}

.text-novedad {
    color: var(--novedad);
    font-weight: 600;
}

.text-evento {
    color: var(--evento);
    font-weight: 600;
}

:root {
    --primary-blue: #0b1f38;
    --accent-gold: #f2a900;
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --text-light: #cccccc;
    --text-muted: #a0a0a0;
    --novedad: #318CE7;
    --evento: #32CD32;
    --oferta: #DC143C;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
.brand-font {
    font-family: 'Outfit', sans-serif;
}

/* Modern Navbar */
.modern-navbar {
    background-color: var(--primary-blue);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--accent-gold);
    flex-wrap: wrap;
}

.nav-brand img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons img {
    height: 24px;
    filter: invert(1);
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

/* Base Layout Container */
.main-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Typography styles */
.page-title {
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

/* Grifos Grid Layout */
.tap-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tap-card {
    background-color: var(--bg-card);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--accent-gold);
}

.tap-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 4px;
}

.tap-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tap-title {
    margin: 0;
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.tap-subtitle {
    margin: 0;
    color: var(--text-muted);
}

.tap-pricing {
    display: flex;
    gap: 2rem;
    text-align: right;
}

.price-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-vol {
    color: var(--text-light);
    font-weight: 600;
}

.price-val {
    color: var(--accent-gold);
    font-weight: 700;
}

/* Badges */
.badge-novedad {
    color: var(--novedad);
    font-weight: bold;
}

.badge-evento,
.badge-local {
    color: var(--evento);
    font-weight: bold;
}

.badge-oferta {
    color: var(--oferta);
    font-weight: bold;
}

/* Contact Links */
.contact-link {
    color: #5A9BD4;
    /* Less vibrant blue */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-gold);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modern-navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tap-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .tap-pricing {
        justify-content: center;
    }
}

/* Index Page */
.hero-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: calc(100vh - 84px);
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media p {
    color: var(--text-muted);
    font-size: 1.5rem;
}

.about-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.6;
}

.about-text .btn {
    align-self: flex-start;
}

.about-image {
    flex: 1;
    aspect-ratio: 4 / 3;
    background-color: var(--bg-card);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.instagram-section {
    margin-bottom: 4rem;
    text-align: center;
}

.instagram-section h2 {
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ig-post {
    background-color: var(--bg-card);
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.ig-post img,
.ig-post video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ig-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(245, 133, 41, 0.7), rgba(221, 42, 123, 0.7), rgba(129, 52, 175, 0.7), rgba(81, 91, 212, 0.7));
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ig-post:hover .ig-overlay {
    opacity: 1;
}

.ig-overlay img.ig-icon {
    width: 40px;
    height: 40px;
    filter: invert(1);
    object-fit: contain;
}

.ig-post:hover {
    transform: scale(1.02);
}

.ig-post.hidden {
    display: none;
}

.mini-contact {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--accent-gold);
}

.mini-contact-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.mini-contact-col {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.mini-contact h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.mini-contact ul {
    margin: 0;
    padding: 0;
}

.mini-contact li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
    }
}

/* Carta / Cocina Carousel */
.carta-header {
    text-align: center;
    margin-bottom: 2rem;
}

.carta-header h1 {
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.carta-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.food-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    background-color: var(--bg-card);
}

.food-carousel-wrapper::before,
.food-carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.food-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-card) 0%, rgba(30, 30, 30, 0) 100%);
}

.food-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-card) 0%, rgba(30, 30, 30, 0) 100%);
}

.food-carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
    background-color: transparent;
}

.food-carousel-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    /* Manual scroll capabilities */
    cursor: grab;
}

.food-carousel-track:active {
    cursor: grabbing;
}

.food-carousel-item {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border: 2px solid var(--accent-gold);
    transition: transform 0.3s ease;
}

.food-carousel-item:hover {
    transform: scale(1.05);
    z-index: 5;
}

.food-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.untappd-section {
    text-align: center;
    margin: 3rem 0;
}

.untappd-section a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #ffbc00;
    /* Untappd Yellow */
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.untappd-section a:hover {
    transform: translateY(-3px);
    background-color: #e5a800;
}

.untappd-section img {
    height: 24px;
}