/* ==========================================
   KAPE ILOKANO
   Pink & Purple Theme
========================================== */

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #fde2f3, #e9d5ff);
    color: #4b2e5e;
}

/* Navbar */

.navbar {
    background: linear-gradient(90deg, #c2185b, #7b1fa2) !important;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: white !important;
}

.nav-link {
    color: white !important;
    transition: 0.3s;
}

.nav-link:hover {
    color: #ffd6ec !important;
}

.active-nav,
.nav-link.active {
    font-weight: bold;
    color: #ffe6f5 !important;
}

/* Hero Section */

.hero-section {
    background: linear-gradient(135deg, #c2185b, #8e24aa);
    color: white;
    padding: 60px 0;
    text-align: center;
    border-radius: 0 0 30px 30px;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: bold;
}

/* Cards */

.card {
    border: none;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

.card-title {
    color: #7b1fa2;
    font-weight: bold;
}

.card-text {
    color: #555;
}

/* Images */

.card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
}

/* Prices */

.price-text {
    color: #c2185b;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Buttons */

.btn-coffee {
    background: linear-gradient(90deg, #c2185b, #8e24aa);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    transition: 0.3s;
}

.btn-coffee:hover {
    background: linear-gradient(90deg, #8e24aa, #c2185b);
    transform: scale(1.05);
    color: white;
}

/* Forms */

.form-control {
    border-radius: 12px;
    border: 2px solid #e1bee7;
}

.form-control:focus {
    border-color: #8e24aa;
    box-shadow: 0 0 8px rgba(142, 36, 170, 0.3);
}

/* Titles */

.page-title {
    color: #8e24aa;
    font-weight: bold;
}

/* Links */

a {
    color: #c2185b;
    text-decoration: none;
}

a:hover {
    color: #8e24aa;
}

/* Footer */

footer {
    background: linear-gradient(90deg, #c2185b, #7b1fa2);
    color: white;
    margin-top: 50px;
}

/* Animation */

.card,
.btn,
.nav-link {
    transition: all 0.3s ease;
}