/* =======================================
   BASE STYLES & VARIABLES
   ======================================= */
:root {
    /* Colors - Premium Dark Theme */
    --clr-bg-darkest: #070707;
    --clr-bg-dark: #121212;
    --clr-bg-graphite: #1c1c1c;
    --clr-text-main: #e0e0e0;
    --clr-text-muted: #9e9e9e;
    --clr-accent-orange: #d97736;
    --clr-accent-amber: #e69a59;
    --clr-accent-copper: #b25f22;
    --clr-white: #ffffff;
    --clr-glass: rgba(18, 18, 18, 0.85);

    /* Typography */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    /* Effects */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(217, 119, 54, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-darkest);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--clr-white);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--clr-text-main);
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

.section {
    padding: var(--space-xl) 0;
}

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

.mt-row {
    margin-top: var(--space-md);
}

.bg-graphite {
    background-color: var(--clr-bg-graphite);
}

/* =======================================
   TYPOGRAPHY & HIGHLIGHTS
   ======================================= */
span.highlight,
h1 span,
h2 span {
    color: var(--clr-accent-orange);
    background: linear-gradient(to right, var(--clr-accent-copper), var(--clr-accent-amber));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-tag {
    display: inline-block;
    color: var(--clr-accent-amber);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--clr-accent-copper);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

.section-subtitle,
.section-description {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto var(--space-md);
}

/* =======================================
   BUTTONS
   ======================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--clr-accent-orange);
    color: var(--clr-white);
    background: linear-gradient(135deg, var(--clr-accent-orange), var(--clr-accent-copper));
    box-shadow: 0 4px 15px rgba(217, 119, 54, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 119, 54, 0.5);
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    border-color: var(--clr-accent-orange);
    color: var(--clr-accent-orange);
}

.btn-outline:hover {
    background-color: rgba(217, 119, 54, 0.1);
    transform: translateY(-3px);
}

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

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* =======================================
   HEADER
   ======================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 1.5rem 0;
}

.header.scrolled {
    background-color: var(--clr-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 95px;
    width: auto;
    border-radius: 50%;
    transition: var(--transition);
}

.nav-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(217, 119, 54, 0.4));
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-accent-orange);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-white);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--clr-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* =======================================
   HERO SECTION
   ======================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(7, 7, 7, 0.95) 0%, rgba(7, 7, 7, 0.7) 50%, rgba(7, 7, 7, 0.4) 100%);
}

.hero-content {
    position: relative;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--clr-text-main);
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down a {
    color: var(--clr-accent-amber);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* =======================================
   ABOUT SECTION
   ======================================= */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
}

.about-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    filter: brightness(0.85) contrast(1.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--clr-accent-orange), var(--clr-accent-copper));
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border: 4px solid var(--clr-bg-darkest);
}

.badge-number {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--clr-bg-graphite);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--clr-accent-orange);
}

.feature-item i {
    color: var(--clr-accent-amber);
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 600;
    color: var(--clr-white);
}

/* =======================================
   GRINGO / BEER SECTION
   ======================================= */
.gringo-section {
    position: relative;
    background-color: var(--clr-bg-darkest);
}

.gringo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gringo-info {
    margin-top: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-accent-amber);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gringo-info i {
    font-size: 1.3rem;
}

.gringo-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gringo-image {
    max-height: 450px;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    filter: brightness(0.9) contrast(1.1);
}

/* =======================================
   SERVICES SECTION
   ======================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--clr-bg-dark);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(217, 119, 54, 0.3);
    box-shadow: var(--shadow-glow);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-accent-orange), var(--clr-accent-copper));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.highlighted {
    background-color: rgba(217, 119, 54, 0.05);
    border-color: rgba(217, 119, 54, 0.2);
}

.service-card.highlighted::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(217, 119, 54, 0.1);
    color: var(--clr-accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--clr-accent-orange);
    color: var(--clr-white);
}

.service-name {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

/* =======================================
   PRICING SECTION
   ======================================= */
.pricing-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--clr-bg-graphite);
    border-radius: var(--radius-sm);
    border-left: 2px solid transparent;
    transition: var(--transition);
}

.price-item:hover,
.price-item.active {
    background-color: var(--clr-bg-dark);
    border-left-color: var(--clr-accent-orange);
}

.price-info {
    flex-grow: 1;
    padding-right: 1rem;
}

.price-info h4 {
    font-size: 1.15rem;
    margin-bottom: 0.1rem;
}

.price-info p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.price-values-grid {
    display: flex;
    gap: 1.2rem;
}

.price-day {
    display: flex;
    flex-direction: column;
    text-align: center;
    min-width: 75px;
}

.price-day span {
    font-size: 0.70rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.price-day strong {
    font-size: 1.1rem;
    color: var(--clr-accent-amber);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.price-day strong small {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--clr-text-muted);
    text-transform: none;
}

.text-link {
    color: var(--clr-accent-amber);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.text-link i {
    transition: var(--transition);
}

.text-link:hover {
    color: var(--clr-white);
}

.text-link:hover i {
    transform: translateX(5px);
}

/* =======================================
   GALLERY SECTION
   ======================================= */
.gallery-category {
    margin-top: 3rem;
}

.gallery-cat-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gallery-cat-title .line {
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1/1;
    /* Square like instagram */
}

/* Hide items beyond the first 10 initially */
.gallery-item.hidden {
    display: none;
}

.load-more-container {
    text-align: center;
    margin-top: 2rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 7, 7, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--clr-white);
    font-size: 2rem;
    transform: scale(0.5);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Modal for Gallery */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--clr-accent-orange);
}

/* =======================================
   TESTIMONIALS SECTION
   ======================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--clr-bg-graphite);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    position: relative;
}

.testimo-icon {
    position: absolute;
    top: -15px;
    right: 2rem;
    background-color: var(--clr-accent-orange);
    color: var(--clr-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.stars {
    color: var(--clr-accent-amber);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--clr-text-main);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author span {
    color: var(--clr-text-muted);
    font-size: 0.85rem;
}

/* =======================================
   FINAL CTA SECTION
   ======================================= */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 7, 7, 0.85);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
}

/* =======================================
   FOOTER
   ======================================= */
.footer {
    background-color: var(--clr-bg-darkest);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 85px;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
    max-width: 350px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--clr-bg-graphite);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--clr-white);
}

.social-links a:hover {
    background-color: var(--clr-accent-orange);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--clr-white);
}

.contact-list li,
.hours-list li {
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-list i {
    color: var(--clr-accent-amber);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.hours-list li {
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.hours-list .closed {
    color: #e53935;
}

.footer-bottom {
    background-color: #040404;
    padding: 1.5rem 0;
    text-align: center;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* =======================================
   FAB WHATSAPP
   ======================================= */
.fab-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.fab-whatsapp:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
}

/* =======================================
   MEDIA QUERIES
   ======================================= */
@media (max-width: 992px) {

    .about-container,
    .gringo-container,
    .pricing-container,
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrapper {
        margin: 0 auto;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--clr-bg-darkest);
        padding: 5rem 2rem 2rem;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .mobile-toggle {
        display: block;
    }

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

    .experience-badge {
        width: 100px;
        height: 100px;
        padding: 1rem;
        right: -10px;
        bottom: -10px;
    }

    .badge-number {
        font-size: 1.2rem;
    }

    .badge-text {
        font-size: 0.6rem;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}