:root {
    --bg-color: #000000;
    --text-main: #ffffff;
    --text-muted: #b3b3b3;
    --brand-red: #e60000;
    --brand-red-hover: #ff1a1a;
    --dark-grey: #111111;
    --border-color: #333333;

    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Base */
h1,
h2,
h3,
h4,
.font-heading {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 400;
    /* Anton is naturally thick, set to 400 */
    letter-spacing: 1px;
}

/* Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-sm {
    max-width: 900px;
}

.section-padding {
    padding: 8rem 0;
}

.text-center {
    text-align: center;
}

.text-red {
    color: var(--brand-red);
}

.text-white {
    color: #fff;
}

.text-muted {
    color: var(--text-muted);
}

.mt-4 {
    margin-top: 2rem;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease, padding 0.3s ease;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: var(--bg-color);
    padding: 0.8rem 0;
    border-bottom: 2px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

/* Image Logo */
.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    /* Removed filter invert in case the new logo is already white on transparent/black */
}

.logo-link:hover .logo {
    transform: scale(1.05);
    /* Aggressive hover */
}

/* Filter to make logo RED */
.logo-red {
    filter: brightness(40%) sepia(100%) saturate(10000%) hue-rotate(0deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* Base states for desktop menu logic */
.desktop-only-btn {
    display: block;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--brand-red);
}

/* Buttons */
.btn-reservations,
.btn-primary,
.btn-secondary {
    display: inline-block;
    font-family: var(--font-heading);
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-reservations {
    background-color: var(--brand-red);
    color: #fff;
    padding: 0.6rem 1.5rem;
    font-size: 1.2rem;
    border-radius: 2px;
}

.btn-reservations:hover,
.btn-primary:hover {
    background-color: var(--brand-red-hover);
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--brand-red);
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.btn-primary.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 3px solid #fff;
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--bg-color);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 32px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--brand-red);
    transition: all 0.3s ease;
}

/* Language Switcher */
.lang-switch {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-switch a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.lang-switch a:hover {
    color: #FFD700;
    /* Yellow */
}

.lang-switch .active {
    color: #FFD700;
    /* Yellow */
}

.mobile-lang {
    margin-top: 2rem;
    margin-left: 0;
    justify-content: center;
    font-size: 1.5rem;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 3rem;
    font-family: var(--font-heading);
    transition: color 0.2s;
}

.mobile-link:hover {
    color: var(--brand-red);
}

.mobile-btn {
    font-size: 2rem;
    padding: 1rem 2rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background-color: var(--dark-grey);
    background-image: url('Noche de villanas.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Heavy vignette and scanlines or noise */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9)),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.9;
    color: var(--text-main);
    text-shadow: 4px 4px 0px var(--brand-red);
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.8rem);
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section Specifics */
.about {
    position: relative;
    background-color: var(--dark-grey);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.95)), url('Noche Nosotros.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 5rem;
    text-align: left;
}

.about-card {
    background: rgba(0, 0, 0, 0.6);
    /* Translucent deep black */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 3rem;
    border: 3px solid var(--border-color);
    box-shadow: 12px 12px 0px rgba(230, 0, 0, 0.2);
    /* Red harsh shadow */
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-red);
    box-shadow: 16px 16px 0px rgba(230, 0, 0, 0.4);
}

.about-card h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-card p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.about-card h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

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

.about-list li {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.about-list li::before {
    content: '■';
    position: absolute;
    left: 0;
    color: var(--brand-red);
    font-size: 0.8rem;
    top: 0.4rem;
}

/* Manifesto Section */
.manifesto {
    background-color: var(--bg-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.95)), url('La noche bien hecha 01.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 4rem;
    color: var(--text-main);
    margin-bottom: 3rem;
    display: inline-block;
    border-bottom: 8px solid var(--brand-red);
    padding-bottom: 0.5rem;
}

.manifesto-text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.manifesto-text.heavy {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0 #000;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 4rem 0;
}

.grid-item {
    background: var(--dark-grey);
    padding: 3rem 2rem;
    border: 2px solid var(--border-color);
}

.grid-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.grid-item p {
    font-family: var(--font-heading);
    font-size: 2.5rem;
}

.manifesto-signature {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-muted);
    margin-top: 5rem;
}

/* Events Banner Red Section */
.events-banner {
    background-color: var(--brand-red);
    background-image: linear-gradient(rgba(230, 0, 0, 0.8), rgba(230, 0, 0, 0.95)), url('Events .png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.red-banner-wrapper {
    background: transparent;
    width: 100%;
    text-align: center;
    border-top: 4px solid #fff;
    border-bottom: 4px solid #fff;
    padding: 2rem 0;
    margin-bottom: 5rem;
    /* Simulate a marquee or just massive centered text */
}

.massive-title {
    font-size: clamp(5rem, 15vw, 12rem);
    color: var(--bg-color);
    line-height: 0.8;
    white-space: nowrap;
    text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
    /* White outline on black text */
    transform: scaleY(1.2);
    /* Make text artificially taller like IMPACT */
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.event-card {
    background-color: var(--bg-color);
    border: 4px solid var(--bg-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 15px 15px 0px rgba(0, 0, 0, 0.5);
}

.event-card:hover {
    transform: translate(-10px, -10px);
    box-shadow: 25px 25px 0px rgba(0, 0, 0, 0.6);
    border-color: #fff;
}

/* Simulated Image Posters */
.event-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
}

/* Faux background designs */
.miami-event {
    background: radial-gradient(circle at 80% 80%, var(--brand-red) 0%, #111 70%);
}

.brunch-event {
    background: repeating-linear-gradient(45deg, #111, #111 20px, var(--brand-red) 20px, var(--brand-red) 40px);
}

.poster-text {
    text-align: center;
    z-index: 2;
}

.poster-logo {
    height: 100px;
    display: block;
    margin: 0 auto 1rem auto;
}

.poster-city {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #fff;
    letter-spacing: 2px;
}

.outline-glow {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.text-shadow {
    text-shadow: 4px 4px 0 #000;
}

.event-info {
    padding: 3rem;
    text-align: center;
}

.date-tag {
    font-family: var(--font-body);
    font-weight: 900;
    color: var(--brand-red);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.event-title {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 2rem;
    color: #fff;
}

/* Footer Section */
.footer {
    background-color: var(--bg-color);
    border-top: 10px solid var(--brand-red);
    padding: 6rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 100px;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--brand-red);
    line-height: 1;
}

.footer-links-col h4,
.footer-contact-col h4 {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.footer-links-col a,
.social-link {
    display: block;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.2s;
}

.footer-links-col a:hover,
.social-link:hover {
    color: var(--brand-red);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 700;
}

/* Animations */
/* Edgy snapping animation instead of smooth fading */
.reveal-item,
.reveal-snappy {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-item.active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Snappy fast pop in */
.reveal-snappy.active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease-in, transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* WhatsApp Floating Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-wa:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
    color: white;
}


/* Responsive */
@media (max-width: 1024px) {

    .events-grid,
    .footer-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .massive-title {
        font-size: 10vw;
    }

    .about-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        /* Move logo to the right on mobile */
        flex-direction: row-reverse;
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: clamp(3rem, 15vw, 6rem);
    }

    .manifesto-text.heavy {
        font-size: 2.5rem;
    }

    .manifesto-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 3rem;
    }

    .event-title {
        font-size: 2.5rem;
    }

    .footer-grid {
        gap: 3rem;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .manifesto-text.heavy {
        font-size: 2rem;
    }

    .massive-title {
        font-size: 14vw;
    }

    .btn-primary {
        font-size: 1.1rem;
        padding: 0.8rem 1.2rem;
    }

    .about-card h3 {
        font-size: 2rem;
    }
}