/* IMPORT FONTS (ALWAYS AT TOP) */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700&family=Manrope:wght@400;500;600&display=swap');

:root {
    --primary: #1db954;
    --white: #fff;
    --black: #111;
    --gray: #666;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* DEFAULT TEXT → MANROPE */
body {
    height: 100dvh; 
    overflow: hidden; 
    background: #fff;
    font-family: 'Manrope', sans-serif;
}

/* HEADINGS → SORA */
h1, h2 {
    font-family: 'Sora', sans-serif;
}

/* WRAPPER */
.wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px 12px 60px; /* Space for fixed bottom bar */
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.logo { height: 80px; }

.menu { 
    font-size: 22px; 
    cursor: pointer; 
    font-family: 'Manrope', sans-serif;
}

/* MENU BOX */
.menu-box {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: absolute;
    top: 60px;
    right: 12px;
    z-index: 1000;
}

.menu-box.show { display: flex; }

.menu-box a { 
    text-decoration: none; 
    color: #111; 
    padding: 10px 15px; 
    border-bottom: 1px solid #eee; 
    font-size: 14px;
    font-family: 'Manrope', sans-serif;
}

/* MAIN CONTENT */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* TITLE → SORA */
.title {
    text-align: center;
    font-size: 1.1rem;
    margin: 8px 0;
    flex-shrink: 0;
}

.title span { color: var(--primary); }

/* LOCATION LIST */
.location-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 4px;
}

.location-item {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08); /* Shadow box property */
    border: 1px solid #f0f0f0;
    
    /* Animation */
    opacity: 0;
    animation: slideIn 0.5s forwards;
    animation-delay: calc(var(--delay) * 0.05s);
}

@keyframes slideIn {
    to { opacity: 1; transform: translateX(0); }
}

.from-left { transform: translateX(-30px); }
.from-right { transform: translateX(30px); }

/* LOCATION NAME → SORA */
.info h2 { 
    font-size: 0.75rem; 
    font-weight: 800; 
}

/* SUBTEXT → MANROPE */
.info p { 
    font-size: 0.6rem; 
    color: var(--gray); 
    font-family: 'Manrope', sans-serif;
}

/* CTA BUTTON */
.cta-mini {
    background: var(--primary);
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 10px;
    font-weight: bold;
    font-family: 'Sora', sans-serif; /* CTA feels like action heading */
}

/* FOOTER BAR WITH CENTERED LOGO */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid #eee;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    height: 60px;
}

.footer-logo {
    height: 90px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.footer-logo:active {
    transform: scale(0.95);
}