:root {
    --bg-color: #0b0f19;
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --primary: #f59e0b;
    --secondary: #10b981;
    --accent: #ef4444;
    --card-bg: rgba(21, 27, 38, 0.8);
    --card-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --font-main: 'Outfit', sans-serif;
    --logo-gradient: linear-gradient(135deg, #f59e0b 0%, #ea580c 50%, #b91c1c 100%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(244, 114, 182, 0.5);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: white !important;
    -webkit-text-fill-color: white !important;
}

.logo img {
    width: auto;
    vertical-align: middle;
    padding-left: 150px;
}

.logo span {
    color: var(--accent);
}


/* Hero */
.hero {
    padding: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 1100px;
    margin: 0 auto 2rem;
}

/* Cards (Glassmorphism) */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
/*    height: 100%; */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(56, 189, 248, 0.3);
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.25rem;
    color: #fff;
    -webkit-text-fill-color: #fff;
    margin-bottom: 0.5rem;
}

.card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.rating-badge {
    background: rgba(56, 189, 248, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--logo-gradient);
    color: white;
    border: none;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: scale(1.02);
    color: white;
    text-shadow: none;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

/* Footer */
footer {
    background: rgba(15, 23, 42, 0.9);
    border-top: 1px solid var(--card-border);
    padding: 3rem 0;
    margin-top: auto;
    text-align: center;
    color: var(--text-muted);
}

/* Map */
#map {
    height: 400px;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid var(--card-border);
}

/* City List */
.city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.city-pill {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.city-pill:hover {
    background: var(--primary);
    color: #000;
}

header {
    /*background: rgba(11, 15, 25, 0.95); */
    background-color: #fff;
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--card-border);
    padding: 0.5rem 0;
}

/* Responsive Utilities */
.resto-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.grid-reverse-mobile {
    /* No special style for desktop */
}

@media (max-width: 992px) {
    .resto-layout {
        grid-template-columns: 1fr;
    }

    .logo img {
        width: auto;
        vertical-align: middle;
        padding-left: 40px;
    }
}

@media (max-width: 768px) {
    .nav-flex {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .grid-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .grid-reverse-mobile {
        display: flex;
        flex-direction: column;
    }

    .grid-reverse-mobile>*:first-child {
        order: 2;
        /* Text comes after image on mobile if we want */
    }

    .grid-reverse-mobile>*:last-child {
        order: 1;
        /* Image first on mobile */
    }

    .container {
        padding: 0 16px;
    }

    .city-list {
        gap: 0.5rem;
    }

    .logo img {
        width: auto;
        vertical-align: middle;
        padding-left: 40px;
    }
}