:root {
    --main-red: #E55353; /* Warna utama GadgetCare */
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.bg-custom-red {
    background-color: var(--main-red) !important;
}

.text-custom-red {
    color: var(--main-red) !important;
}

/* --- BUTTON STYLES --- */
.btn-custom-red {
    background-color: var(--main-red) !important;
    color: white !important;
    border: 2px solid var(--main-red) !important;
    transition: all 0.3s ease;
}

.btn-custom-red:hover {
    background-color: #c0392b !important; /* Merah lebih gelap */
    border-color: #c0392b !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(229, 83, 83, 0.4);
}

/* --- NAVBAR STYLES --- */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
}

/* --- LAYOUT STYLES --- */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

footer {
    background-color: var(--main-red);
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: auto;
}
