/* =====================
GLOBAL LEARNING JUNIOR COLLEGE
THEME CSS
Bootstrap 5.3
===================== */

:root {
  --primary: #0d3b66;
  --secondary: #f4b41a;
  --light: #f4f7fb;
  --dark: #1c1c1c;
}

/* GLOBAL */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.7;
}

section {
  padding: 70px 0;
}

/* NAVBAR */
.navbar {
  background: linear-gradient(90deg, var(--primary), #092a4a);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: .5px;
}

.navbar .nav-link {
  color: #fff !important;
  margin-left: 12px;
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: var(--secondary) !important;
}

/* HERO */
/*
.hero {
  background:
    linear-gradient(
      rgba(13, 59, 102, 0.75),
      rgba(13, 59, 102, 0.85)
    ),
    url('../images/bg-2.jpg') center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  font-size: 1.15rem;
}
*/

/* HERO NEW */
/* style.css */
.hero {
  background:
    linear-gradient(rgba(13,59,102,0.75), rgba(13,59,102,0.85)),
    url('../images/bg-2.jpg') center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero h1, .hero p, .hero .btn {
  text-shadow: 0 3px 15px rgba(0,0,0,0.5);
}

.btn-warning:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}
.btn-outline-light:hover {
  background-color: #ffc107;
  color: #000;
  transform: scale(1.05);
}


/* PAGE BANNER */
.page-banner {
background: linear-gradient(rgba(13,59,102,0.8), rgba(13,59,102,0.9)), url('assets/images/bg-2.jpg') center/cover no-repeat;
}


/* HEADINGS */
section h2 {
  font-weight: 700;
  color: var(--primary);
  position: relative;
  margin-bottom: 35px;
}

/*
section h2::after {
  content: '';
  width: 70px;
  height: 3px;
  background: var(--secondary);
  position: absolute;
  left: 0;
  bottom: -10px;
}
*/

/* CARDS */
.card {
  border: none;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
  transition: .3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.card-title {
  color: var(--primary);
  font-weight: 600;
}

/* CONTENT */
p {
  font-size: 1rem;
}

ul li {
  margin-bottom: 8px;
}

/* CONTACT */
iframe {
  border-radius: 14px;
}

/* FOOTER */
footer {
  background: #081d33;
  color: #fff;
}

footer p {
  font-size: .9rem;
  margin: 0;
}

/* BACKGROUNDS */
.bg-light {
  background-color: var(--light) !important;
}
