/* RESET DE BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#navlist {
    display: flex;
    padding-right: 75px;
    font-size: 100px;
}

body {
    font-family: 'Inter Bold', sans-serif;
    background-color: #E0E8B0;
    color: #1a1a1a;
}

#logop {
    
    margin-left: -5500px;
}

/* HEADER */
header {
    background-color: #1c2b4a;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .logo-section h1 {
    font-size: 20px;
}

header .menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

header .menu button {
    background-color: #ffe100;
    color: #1a1a1a;
    border: none;
    padding: 8px 12px;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
}

/* SECTION DE PRÉSENTATION DU QUARTIER */
.section-intro {
    background: linear-gradient(#ffe100 60%, #1c2b4a 40%);
    padding: 40px 20px;
    text-align: center;
    color: #1c2b4a;
}

.section-intro .logo-flagey {
    margin-bottom: 20px;
}

.section-intro .description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
}

/* SKYLINE */
.skyline {
    background-color: #1c2b4a;
    color: #ffe100;
    padding: 20px 0;
    text-align: center;
    font-size: 30px;
}

/* SECTION RECHERCHE */
.search-section {
    background-color: #1c2b4a;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.search-section h2 {
    margin-bottom: 20px;
    font-size: 22px;
}

.search-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.search-icons .icon {
    background-color: white;
    color: #1c2b4a;
    padding: 15px;
    border-radius: 15px;
    width: 100px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.search-icons .icon:hover {
    transform: scale(1.05);
}

/* BARS/RESTAURANTS */
.section-bars {
    background-color: #ffe100;
    padding: 30px 20px;
}

.section-bars h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background-color: white;
    padding: 15px;
    border-radius: 12px;
    width: 250px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}