/* 📱 Mobile-First CSS Setup */
:root {
    /* 🎨 Update these to match the distinct colors in your BRANDING.pdf! */
    --bg-color: #f8f9fa;
    --text-color: #2b2d42;
    --brand-primary: #007bff; 
    --header-bg: #1a1a2e; /* The new distinct background color for the header! */
    --header-text: #ffffff;
    --card-bg: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

/* --- BRANDING HEADER (The New VIP Section 🌟) --- */
.main-header {
    width: 100%;
    background-color: var(--header-bg); /* Distinct color applied */
    color: var(--header-text);
    padding: 30px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Adds a nice drop shadow */
    margin-bottom: 30px; /* Pushes the rest of the page down slightly */
}

.branding-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Spacing between logo and text */
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    background-color: var(--brand-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.brand-text {
    text-align: left; /* Aligns text next to the logo neatly */
}

.brand-text h1 {
    font-size: 2.2rem;
    color: var(--header-text);
    letter-spacing: 1px;
}

.brand-text .subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 2px;
}

/* --- Short description --- */
.description {
    max-width: 90%;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 0 20px;
}

/* --- BROWSE & ADDRESS --- */
.action-area {
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; 
}

.browse-btn {
    background-color: var(--brand-primary);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    width: 90%;
    max-width: 350px;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
    transition: transform 0.1s;
}

.browse-btn:active {
    transform: scale(0.97);
}

.address-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    border-bottom: 2px dashed var(--brand-primary);
    padding-bottom: 2px;
    transition: color 0.2s;
}

.address-link:hover {
    color: var(--brand-primary);
}

/* --- FEEDS IN FOOTER --- */
footer {
    margin-top: auto; 
    padding: 20px 20px;
    width: 100%;
}

.feeds {
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    gap: 5px; /* 🤏 Squished the gap down to 5px! */
    width: 100%;
    overflow-x: auto; 
    padding-bottom: 10px; 
}

.feed-card {
    flex: 1; 
    background-color: var(--card-bg);
    padding: 45px 10px;
    border-radius: 0; /* 📐 Zeroed out the radius for perfect rectangles! */
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    font-weight: bold;
    font-size: 1.1rem;
    border-top: 4px solid var(--brand-primary); 
    min-width: 90px;
}