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

html, body {
    background: #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}


.league-spartan-bold {
    font-family: "League Spartan", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}


.league-spartan-medium {
    font-family: "League Spartan", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


.league-spartan-light {
    font-family: "League Spartan", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0;
}

/* Header */
header {
    color: white;
    padding: 2rem 0 1rem 0;
    text-align: center;
}

.logo h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;

}

.global-instagram a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-family: "League Spartan", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.global-instagram a:hover {
    color: #ffcdd2;
}

/* Intro Section */
.intro-section {
    padding: 60px 40px;
    text-align: left;
}

.intro-section h1 {
    font-size: 3rem;
    color: #fefefe;
    text-transform: uppercase;
    line-height: 1;
    font-family: "League Spartan", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.intro-section h2 {
    font-size: 1.2rem;
    color: #FFC000;
    font-weight: normal;
    margin: 0 auto;
    text-transform: uppercase;
    font-family: "League Spartan", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

/* Locations Section */
.locations-section {
    padding: 60px 0;
}

.featured-locations {
    display: flex;
    margin-bottom: 0;
}

.regular-locations {
    display: flex;
}

.location-card {
    background: #000;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
    flex: 1;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.location-card > * {
    position: relative;
    z-index: 1;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.location-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.location-card h3 {
    color: white;
    text-transform: uppercase;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: "League Spartan", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.location-card p {
    color: white;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-size:1rem;
    text-transform: uppercase;
    font-family: "League Spartan", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.platform-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 180px;
    margin: 0 auto;
}

.btn {
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    font-size:14px;
    transition: all 0.3s;
    color: white;
    width: 100%;
    border-radius:12px;
    box-sizing: border-box;
    text-transform:uppercase;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

.btn.whatsapp {
    background: #25d366;
}

.btn.facebook {
    background: #1877f2;
}

.btn.didifood {
    background: #ff6b35;
}

.btn.rappi {
    background: #ff441f;
}

.btn.ubereats {
    background: #000000;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}



/* Footer */
footer {
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.copyright {
    font-size:0.85rem;
}

/* Responsive Design */
.accordion-toggle {
    display: none;
}

@media (max-width: 768px) {
    .accordion-toggle {
        display: flex;
    }
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .intro-section h1 {
        font-size: 2.5rem;
    }
    
    .intro-section h2 {
        font-size: 1.3rem;
    }
    
    .featured-locations,
    .regular-locations {
        flex-direction: column;
    }
    
    .accordion-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        cursor: pointer;
        color: #d32f2f;
        font-weight: 600;
    }
    
    .arrow {
        transition: transform 0.3s;
    }
    
    .arrow.rotated {
        transform: rotate(180deg);
    }
    
    .platform-buttons {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        flex-direction: column;
    }
    
    .platform-buttons.show {
        display: flex;
    }
    
    .location-card.featured {
        transform: none;
    }
    
    .location-card.featured:hover {
        transform: translateY(-5px);
    }


}