/* =========================================
   KANASA DIGITAL BRANDZ THEME
   Gradient: #C2185B → #F06292
   ========================================= */

:root {
    --primary-color: #C2185B;
  --secondary-color: #F06292;
  --tertiary-color: #46062d;
  --text-color: #333333;
  --background-color: #ffffff;
  --gradient: linear-gradient(135deg, #C2185B, #F06292);
}

/* ====== General ====== */
body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: 'Poppins', 'Open Sans', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* ====== Header / Navbar ====== */
header, nav {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

nav a {
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  font-weight: 500;
  transition: 0.3s ease;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
}

/* ====== Buttons ====== */
.btn, button, input[type="submit"] {
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover, button:hover, input[type="submit"]:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ====== Section Styling ====== */
section {
  padding: 60px 0;
}

.section-dark {
  background: #fff;
  color: #fff;
}

.section-light {
  background: #fff;
  color: var(--text-color);
}

/* ====== Headings ====== */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
}

/* ====== Links ====== */
a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
}

/* ====== Footer ====== */
footer {
  background: var(--gradient);
  color: #fff;
  text-align: center;
  padding: 25px 0;
  font-size: 15px;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

footer a:hover {
  color: #f00654;
}

/* ====== Cards or Boxes ====== */
.card {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.card-header {
  background: var(--gradient);
  color: #fff;
  padding: 15px;
  font-weight: 600;
}

/* ====== Gradient Text (Optional Special Effect) ====== */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
