/* --- THEME VARIABLES --- */
:root {
    --primary-red: #141516;   /* Main Red */
    --primary-red2: #f31a1a;
    --footer-bg: #FFC107;     /* Yellow Footer */
}

/* Basic Reset */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

/* --- HEADER CSS --- */
.app-header {
    background-color: #ffffff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-red);
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Circular Buttons (WhatsApp, Insta, Share) */
.header-icon-btn {
    background: #fff0f0;
    border: none;
    color: var(--primary-red);
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.header-icon-btn:hover {
    background-color: var(--primary-red2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(211, 47, 47, 0.3);
}

/* --- FOOTER CSS --- */
.app-footer {
    background-color: var(--footer-bg); /* Yellow */
    color: #333333;
    padding: 30px 20px;
    text-align: center;
    margin-top: auto;
    border-top: 4px solid #e0a800;
}

.footer-logo-text {
    color: #000000;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.footer-tagline {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #444;
    font-weight: 500;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #222;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
    transition: color 0.2s;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

.copyright {
    font-size: 0.8rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 15px;
    margin-top: 10px;
    color: rgba(0,0,0,0.6);
}