/* ABRA Food - Design FoodTech Moderno e Vibrante */

:root {
    --flame-red: #dc143c;
    --tangerine: #ff6347;
    --golden-yellow: #ffd700;
    --sunset-orange: #ff4500;
    --papaya: #ff8c00;
    --cream: #fffaf0;
    --white: #ffffff;
    --charcoal: #2c3e50;
    --text-light: #64748b;
    --gradient-fire: linear-gradient(135deg, #dc143c 0%, #ff4500 100%);
    --gradient-sunset: linear-gradient(135deg, #ff8c00 0%, #ffd700 100%);
    --gradient-vibrant: linear-gradient(135deg, #ff6347 0%, #ff4500 100%);
    --shadow-warm: 0 10px 40px rgba(220, 20, 60, 0.2);
    --shadow-gold: 0 10px 40px rgba(255, 215, 0, 0.3);
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--charcoal);
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: var(--gradient-fire);
    color: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(220, 20, 60, 0.3);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.logo h1 {
    font-size: 32px;
    color: var(--white);
    transition: transform 0.3s ease;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo h1 span {
    color: var(--golden-yellow);
}

.logo:hover h1 {
    transform: scale(1.05);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav a {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 50%;
    background: var(--golden-yellow);
    border-radius: 10px;
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 10px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--gradient-fire);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🍔🍕🍜🥗🍱';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 200px;
    opacity: 0.05;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -55%) rotate(5deg); }
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 68px;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: var(--golden-yellow);
}

.hero p {
    font-size: 24px;
    margin-bottom: 45px;
    opacity: 0.95;
    line-height: 1.7;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient-sunset);
    color: var(--charcoal);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--flame-red);
    transform: translateY(-5px);
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--white);
}

.services h2 {
    text-align: center;
    font-size: 52px;
    margin-bottom: 25px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services > .container > p {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 70px;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 70px;
}

.service-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    padding: 45px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-warm);
    transition: all 0.5s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-fire);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.3);
    border-color: var(--flame-red);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--gradient-vibrant);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    box-shadow: var(--shadow-warm);
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--flame-red);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* Events Section */
.events {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.events h2 {
    text-align: center;
    font-size: 52px;
    margin-bottom: 70px;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.event-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border-left: 6px solid var(--sunset-orange);
    box-shadow: var(--shadow-warm);
    transition: all 0.4s ease;
}

.event-card:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 60px rgba(255, 69, 0, 0.3);
    border-left-width: 10px;
}

.event-date {
    display: inline-block;
    background: var(--gradient-sunset);
    color: var(--charcoal);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 20px;
}

.event-card h3 {
    margin-bottom: 15px;
    font-size: 26px;
    color: var(--charcoal);
}

.event-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.event-card a {
    color: var(--sunset-orange);
    font-weight: 700;
    font-size: 16px;
}

.event-card a:hover {
    color: var(--flame-red);
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 52px;
    margin-bottom: 35px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about p {
    font-size: 20px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--gradient-fire);
    color: var(--white);
}

.contact h2 {
    text-align: center;
    font-size: 52px;
    margin-bottom: 25px;
    color: var(--white);
}

.contact > .container > p {
    text-align: center;
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 60px;
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    transition: all 0.4s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--golden-yellow);
    transform: translateY(-10px);
}

.contact-item h3 {
    color: var(--golden-yellow);
    margin-bottom: 15px;
    font-size: 24px;
}

.contact-item p {
    font-size: 18px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a252f 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 80px 0 30px;
    border-top: 4px solid var(--golden-yellow);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: var(--golden-yellow);
    margin-bottom: 25px;
    font-size: 22px;
}

.footer-section p {
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.8;
}

.footer-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--golden-yellow);
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 35px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px;
    }

    .nav ul {
        display: none;
    }

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

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

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--golden-yellow);
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* History Section */
.history {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    padding: 100px 0;
}

.history .container {
    max-width: 1200px;
}

.history h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--charcoal);
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.history-timeline {
    position: relative;
}

.timeline-item {
    margin-bottom: 40px;
    padding-left: 30px;
    border-left: 3px solid var(--flame-red);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 14px;
    height: 14px;
    background: var(--flame-red);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--flame-red);
}

.timeline-year {
    font-size: 24px;
    font-weight: 800;
    color: var(--flame-red);
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.history-mission h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.history-mission ul {
    list-style: none;
    padding: 0;
}

.history-mission li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.history-mission li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--flame-red);
    font-weight: bold;
}

/* Statistics Section */
.statistics {
    background: var(--gradient-vibrant);
    color: var(--white);
    padding: 100px 0;
}

.statistics .container {
    max-width: 1200px;
}

.statistics h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--white);
}

.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.stat-box .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--golden-yellow);
    display: block;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-box .stat-description {
    font-size: 16px;
    line-height: 1.6;
}

.market-analysis h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.analysis-section {
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.analysis-section h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--golden-yellow);
}

.analysis-section ul {
    padding-left: 20px;
}

.analysis-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.challenges-opportunities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.challenges h5,
.opportunities h5 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--white);
}

.consumer-profile {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.profile-item h5 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--golden-yellow);
}

/* Enhanced Events Section */
.event-card.featured {
    border: 3px solid var(--golden-yellow);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.event-badge {
    background: var(--golden-yellow);
    color: var(--charcoal);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.event-date,
.event-location {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.event-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.event-highlights h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--flame-red);
}

.events-benefits {
    margin-top: 80px;
    text-align: center;
}

.events-benefits h3 {
    font-size: 32px;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--flame-red);
}

/* Benefits Section */
.benefits {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    padding: 100px 0;
}

.benefits .container {
    max-width: 1400px;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 40px;
}

.benefits-categories {
    display: grid;
    gap: 60px;
    margin-bottom: 80px;
}

.benefit-category h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--flame-red);
    text-align: center;
}

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

.benefit-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.2);
}

.benefit-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.membership-call {
    background: var(--gradient-fire);
    color: var(--white);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

.membership-call h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.membership-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.membership-type {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.membership-type.featured {
    border: 3px solid var(--golden-yellow);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.membership-type h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--golden-yellow);
}

.membership-type p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.membership-type ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.membership-type li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.membership-type li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--golden-yellow);
    font-weight: bold;
}

/* Enhanced About Section */
.about-content {
    display: grid;
    gap: 60px;
}

.about-intro h3,
.about-mission h3,
.about-achievements h3,
.about-values h3,
.about-future h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--flame-red);
}

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

.structure-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.1);
    border-left: 4px solid var(--flame-red);
}

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

.achievement-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.achievement-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--charcoal);
}

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

.commitment-item {
    background: var(--gradient-sunset);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.commitment-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .history-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .challenges-opportunities {
        grid-template-columns: 1fr;
    }

    .benefits-categories {
        gap: 40px;
    }

    .benefit-items {
        grid-template-columns: 1fr;
    }

    .membership-types {
        grid-template-columns: 1fr;
    }

    .achievements-list {
        grid-template-columns: 1fr;
    }

    .commitments-grid {
        grid-template-columns: 1fr;
    }

    .consumer-profile {
        grid-template-columns: 1fr;
    }

    .structure-grid {
        grid-template-columns: 1fr;
    }
}
