/* DESIGN SYSTEM - BURGER SUCURSAL */
/* Core Variables & Tokens */
:root {
    --bg-main: #0a0a0b;
    --bg-darker: #050506;
    --surface-glass: rgba(255, 255, 255, 0.03);
    --surface-glass-hover: rgba(255, 255, 255, 0.06);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-active: rgba(255, 71, 87, 0.3);
    
    --primary: #ff4757;
    --primary-hover: #ff6b81;
    --primary-glow: rgba(255, 71, 87, 0.4);
    
    --secondary: #ffa502;
    --secondary-hover: #ffb142;
    
    --text-primary: #ffffff;
    --text-secondary: #a4b0be;
    --text-muted: #747d8c;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-premium: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --shadow-glow: 0 0 20px rgba(255, 71, 87, 0.2);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-micro: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-primary);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-main);
    cursor: none; /* Custom cursor */
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--border-glass);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    mix-blend-mode: difference;
}
.custom-cursor.hover {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 71, 87, 0.1);
    border-color: var(--primary-hover);
}

/* Container Utility */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

/* Glassmorphism Styles */
.glassmorphism {
    background: rgba(10, 10, 11, 0.7);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--border-glass);
}

.glass-card {
    background: var(--surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}
.glass-card:hover {
    transform: translateY(-5px);
    background: var(--surface-glass-hover);
    border-color: var(--border-glass-active);
    box-shadow: var(--shadow-glow);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

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

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    opacity: 0.8;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    opacity: 1;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}
.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-micro);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1.2;
}

.hero-image {
    flex: 0.8;
}

.gradient-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 30%, #a4b0be 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-primary);
    box-shadow: 0 4px 14px rgba(255, 71, 87, 0.3);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 6px 20px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}
.btn-outline:hover {
    background-color: var(--surface-glass-hover);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 30px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2-equal { grid-template-columns: 1fr 1fr; }

/* Image Wrapper */
.image-wrapper {
    padding: 10px;
    border-radius: 24px;
    overflow: hidden;
}
.image-wrapper img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.image-wrapper:hover img {
    transform: scale(1.03);
}

/* Section Title */
.section-title {
    margin-bottom: 60px;
}
.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.section-title p {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* Footer Styles */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 15px;
    font-size: 1.4rem;
}
.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}
.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* inner hero template */
.hero-inner {
    padding: 160px 0 60px;
}
.hero-inner h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}
.max-width-800 {
    max-width: 800px;
}
.margin-auto {
    margin-left: auto;
    margin-right: auto;
}
.text-center {
    text-align: center;
}

/* Breadcrumb */
.breadcrumb-container {
    padding: 100px 0 0;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.breadcrumb a:hover {
    color: var(--primary);
}
.breadcrumb .separator {
    color: var(--border-glass);
}
.breadcrumb .current {
    color: var(--text-secondary);
}

/* Accordion FAQs */
.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border-glass);
    padding: 20px 0;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
}
.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding-top 0.3s ease;
    padding-top: 0;
    color: var(--text-secondary);
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 15px;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.stat-card {
    padding: 20px;
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--border-glass);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}
.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--bg-main);
    border: 4px solid var(--primary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}
.timeline-item:nth-child(even) {
    left: 50%;
}
.timeline-item:nth-child(odd) {
    left: 0;
}
.timeline-item:nth-child(even)::after {
    left: -8px;
}
.timeline-date {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Filters and grids */
.filter-buttons {
    display: inline-flex;
    padding: 6px;
    border-radius: 30px;
    gap: 5px;
    margin-bottom: 45px;
}
.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-micro);
}
.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary);
    color: var(--text-primary);
}

/* Products and Catalog */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}
.product-image img {
    width: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.product-card:hover .product-image img {
    transform: scale(1.05);
}
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--text-primary);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}
.product-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-details h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.product-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}
.product-specs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.product-specs span {
    background: var(--surface-glass);
    border: 1px solid var(--border-glass);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}
.product-price-box {
    margin-top: auto;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-price-box .price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}
.product-price-box .tax-info {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Masonry Gallery */
.gallery-masonry {
    columns: 3 300px;
    column-gap: 30px;
}
.gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    transition: var(--transition-smooth);
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(5,5,6,0.9) 0%, rgba(5,5,6,0) 100%);
    padding: 30px 20px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay span {
    display: block;
    font-weight: bold;
    font-size: 1.1rem;
}
.gallery-overlay small {
    color: var(--text-secondary);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5,5,6,0.95);
    backdrop-filter: blur(20px);
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}
.lightbox-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.lightbox-content {
    max-width: 85%;
    max-height: 75%;
    border-radius: 12px;
}
.lightbox-caption {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Blog layouts */
.featured-post {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
}
.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.post-category {
    color: var(--primary);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 15px;
}
.featured-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.featured-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.blog-card {
    padding: 0;
    overflow: hidden;
}
.blog-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.blog-content {
    padding: 30px;
}
.blog-content h3 {
    margin: 10px 0 15px;
    font-size: 1.4rem;
}
.blog-content p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* alignment utils */
.align-center {
    align-items: center;
}

/* Bullet and list items */
.bullet-list {
    list-style: none;
    margin-top: 15px;
    margin-bottom: 15px;
}
.bullet-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}
.bullet-list li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}
