@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #0F32A0; /* Bawor blue or modern deep blue */
  --secondary-color: #30C631; /* Green accent */
  --dark-bg: #0B0E14;
  --dark-surface: #151A23;
  --text-primary: #1A1A1A;
  --text-secondary: #5A5A5A;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
  --glass-dark-bg: rgba(21, 26, 35, 0.85);
  --card-shadow: 0 10px 20px rgba(0,0,0,0.05);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Typography */
body, p, a, span {
  font-family: 'Inter', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700;
}

/* Navbar / Header */
.it-header-top-area {
  background: var(--dark-bg) !important;
}

.it-header-bottom-area {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

.it-header-bottom-area.sticky {
  background: rgba(255, 255, 255, 0.95) !important;
}

.it-menu-content ul li a {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
}

.it-menu-content ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition-smooth);
}

.it-menu-content ul li a:hover::after {
  width: 100%;
}

.it-btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a4cd9 100%) !important;
  color: white !important;
  border-radius: 30px !important;
  padding: 12px 30px !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(15, 50, 160, 0.3);
  transition: var(--transition-smooth);
  border: none !important;
}

.it-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 50, 160, 0.4);
}

/* Hero Section */
.hero-premium {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px 0;
  border-radius: 0 0 40px 40px;
}

.hero-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('../img/home-3/hero/hero-bg.jpg') center/cover;
  opacity: 0.05;
  mix-blend-mode: normal;
}

.hero-premium .it-section-subtitle {
  color: var(--primary-color) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-premium .it-section-title {
  color: var(--dark-bg) !important;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero-premium p {
  color: var(--text-secondary) !important;
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  background: white;
  padding: 15px;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.hero-image-wrapper img {
  border-radius: 15px;
  transition: var(--transition-smooth);
}

.hero-image-wrapper:hover {
  transform: translateY(-10px);
}

.hero-sub-image {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 180px;
  background: white;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  animation: float 6s ease-in-out infinite;
}

.hero-sub-image img {
  border-radius: 10px;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Fun Fact Section */
.funfact-premium {
  background: var(--dark-bg);
  padding: 80px 0;
  margin-top: -40px;
  position: relative;
  z-index: 3;
}

.funfact-card {
  background: var(--glass-dark-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  margin-bottom: 20px;
}

.funfact-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.funfact-card i {
  font-size: 40px;
  color: #38bdf8;
  margin-bottom: 15px;
  display: inline-block;
}

.funfact-card h3 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.funfact-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin: 0;
}

/* Event Cards */
.blog-premium-area {
  background-color: #f8fafc;
  padding: 100px 0;
}

.blog-premium-area .it-section-subtitle {
  color: var(--primary-color);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.blog-premium-area .it-section-title {
  font-size: 2.5rem;
  color: var(--text-primary);
}

.it-blog-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0,0,0,0.02);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.it-blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.it-blog-thumb {
  position: relative;
  overflow: hidden;
  max-height: 250px;
}

.it-blog-thumb img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.it-blog-item:hover .it-blog-thumb img {
  transform: scale(1.08);
}

.it-blog-categories {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.it-blog-categories span {
  background: rgba(15, 50, 160, 0.9);
  color: white;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.it-blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.it-blog-meta-box {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f1f5f9;
}

.it-blog-meta span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.it-blog-meta i {
  color: var(--primary-color);
}

.it-blog-title {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 15px;
}

.it-blog-title a {
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.it-blog-title a:hover {
  color: var(--primary-color);
}

.it-blog-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  flex-grow: 1;
}

.it-btn-blog.blog-style-btn {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  transition: var(--transition-smooth);
  text-align: center;
  width: 100%;
  margin-top: 15px;
}

.it-btn-blog.blog-style-btn:hover {
  background: var(--primary-color);
  color: white;
}

/* Footer Premium */
.footer-premium {
  background: var(--dark-bg);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #38bdf8, var(--primary-color));
}

.it-footer-content p {
  color: rgba(255,255,255,0.7);
}

.it-footer-widget-title {
  color: white;
  font-family: 'Outfit', sans-serif;
}

.it-footer-list ul li a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition-smooth);
}

.it-footer-list ul li a:hover {
  color: white;
  padding-left: 8px;
}

.it-copyright-area {
  border-top: 1px solid rgba(255,255,255,0.05);
  background: var(--dark-bg);
  padding: 20px 0;
}

.it-copyright-text p {
  color: rgba(255,255,255,0.5);
}

/* Responsiveness overrides */
@media (max-width: 991px) {
  .hero-premium .it-section-title {
    font-size: 2.5rem;
  }
  .funfact-card {
    margin-bottom: 20px;
}

.premium-breadcrumb {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a42be 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.premium-breadcrumb .container {
    position: relative;
    z-index: 2;
}
.premium-breadcrumb::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(30deg);
    z-index: 1;
}
.premium-breadcrumb::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(48,198,49,0.15) 0%, rgba(48,198,49,0) 70%);
    transform: rotate(-30deg);
    z-index: 1;
}

.premium-header-top {
    background: linear-gradient(90deg, #0ba360 0%, #3cba92 100%);
}
