@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
    --color-bg: #0f0f11;
    --color-bg-alt: #1a1a1e;
    --color-text: #ffffff;
    --color-text-muted: #a1a1aa;
    --color-primary: #ff5722; /* Warm vibrant orange/red for grill vibe */
    --color-primary-dark: #e64a19;
    --color-accent: #ff9800;
    
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;

    --transition-fast: 0.2s ease;
    --transition-norm: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-sans);
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

/* ==================================
   NAVIGATION
================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-norm);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 15, 17, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: white;
}

.logo-icon {
    color: var(--color-primary);
    font-size: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: white;
}

.btn-primary {
    background: var(--color-primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 87, 34, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    font-size: 2rem;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--color-bg-alt);
    z-index: 999;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    transition: var(--transition-norm);
}

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

.mobile-nav a {
    padding: 20px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ==================================
   HERO SECTION
================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15,15,17,0.7) 0%, rgba(15,15,17,0.95) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: var(--font-serif);
}

.hero-content h1 span {
    color: var(--color-primary);
    font-style: italic;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}


/* ==================================
   SERVICES SECTION
================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--color-bg-alt);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-norm);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 87, 34, 0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.service-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.no-image-bg {
    background: linear-gradient(135deg, rgba(255,87,34,0.1), rgba(255,152,0,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.huge-icon {
    font-size: 80px;
    color: var(--color-primary);
    opacity: 0.5;
}

.service-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
}

.service-info {
    padding: 30px 20px;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-info p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ==================================
   ABOUT US SECTION
================================== */
.about {
    background: var(--color-bg-alt);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-text h2 span {
    color: var(--color-primary);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat h4 {
    font-size: 2rem;
    color: var(--color-accent);
}

.stat span {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    padding: 20px;
    background: linear-gradient(135deg, var(--color-bg), var(--color-bg-alt));
    border: 1px solid rgba(255,255,255,0.05);
}

.image-frame img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(-10%, 10%);
    background: var(--color-primary);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}


/* ==================================
   CONTACT SECTION
================================== */
.contact-card {
    background: linear-gradient(to right, rgba(26,26,30,0.8), rgba(26,26,30,0.95)), url('images/hero_pork_grill_1776678535923.png');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-info {
    padding: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-list span.material-symbols-outlined {
    font-size: 2rem;
    color: var(--color-primary);
    background: rgba(255,87,34,0.1);
    padding: 15px;
    border-radius: 50%;
}

.contact-list div strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-list div span, .contact-list div a {
    color: var(--color-text-muted);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.contact-list div a:hover {
    color: var(--color-primary);
}

.social-links p {
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition-fast);
    margin-right: 10px;
    margin-bottom: 10px;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.whatsapp {
    background: #25d366;
}

.social-icon:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-map {
    position: relative;
    background: #1a1a1e;
    min-height: 400px;
    border-radius: 0 24px 24px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    z-index: 10;
    background: rgba(15,15,17, 0.85);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(255,87,34, 0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    width: 90%;
    max-width: 320px;
}

.map-text h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.map-text p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.btn-map-directions {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-primary);
    color: white !important;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    width: 100%;
    justify-content: center;
}

.btn-map-directions:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,87,34,0.4);
}

/* ==================================
   FOOTER
================================== */
.footer {
    background: var(--color-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.footer-brand h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.footer-brand h3 span {
    color: var(--color-primary);
}

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

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--color-text-muted);
    font-weight: 600;
    transition: var(--transition-fast);
}

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

.footer-copyright {
    margin-top: 20px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    width: 100%;
}


/* ==================================
   WHATSAPP FLOATING BUTTON
================================== */
.whatsapp-float {
    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;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition-norm);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* ==================================
   ANIMATIONS & UTILITIES
================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }


/* ==================================
   RESPONSIVE DESIGN
================================== */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .contact-info {
        padding: 40px 20px;
    }
}
