/* CSS Variables for Brand Colors */
:root {
  --navy: #002b5c;
  --charcoal: #333333;
  --gold: #b38b59;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --mutindagreen: #9D863F;
  --mutindamaroon: rgb(119, 4, 4);
  --mutindagreen-light: rgba(84, 102, 21, 0.1);
  --mutindamaroon-light: rgba(119, 4, 4, 0.1);
  --mutindagreen-dark: #9D853F;
  --mutindamaroon-dark: rgb(95, 3, 3);
  --gradient-primary: linear-gradient(135deg, var(--mutindamaroon), var(--mutindagreen));
  --gradient-secondary: linear-gradient(135deg, var(--mutindagreen), var(--mutindagreen-dark));
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

body {
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--white);
  overflow-x: hidden;
    min-height: calc(100vh - 100px); /* Adjust 100px to your header height */
  width: 100%;
  background: linear-gradient(var(--mutindamaroon-dark) 20%, rgba(255, 255, 255, 0.733) 80%),
              url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding-top: 20px; /* optional – space below header */
}

/* Full-page background below the header */


h1, h2, h3, h4, h5 {
  font-family: "Garamond", "Times New Roman", serif;
  color: var(--mutindamaroon);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  line-height: 1.3;
  color:#9D853F;
}

p {
  letter-spacing: 0.3px;
  line-height: 1.7;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  background: var(--gradient-secondary);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(84, 102, 21, 0.3);
  border: 2px solid transparent;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: linear-gradient(135deg, var(--mutindagreen-dark), var(--mutindagreen));
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(84, 102, 21, 0.4);
  border-color: rgba(84, 102, 21, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--mutindagreen);
  color: var(--mutindagreen);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--mutindagreen);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(84, 102, 21, 0.3);
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  font-size: 2.8rem;
  font-weight: 700;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-title::before {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--mutindagreen);
  border-radius: 2px;
  opacity: 0.6;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  z-index: 1000;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  height: 100px;
  transition: all 0.4s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
}

nav ul {
  display: flex;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  font-weight: 500;
  color: var(--charcoal);
  font-size: 16px;
  padding: 8px 2px;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--mutindamaroon);
}

nav ul li .btn {
  background: linear-gradient(135deg, var(--mutindamaroon), var(--mutindamaroon-dark));
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(119, 4, 4, 0.3);
  margin-left: 10px;
}

nav ul li .btn:hover {
  background: linear-gradient(135deg, var(--mutindamaroon-dark), var(--mutindamaroon));
  box-shadow: 0 10px 30px rgba(119, 4, 4, 0.4);
}

.mobile-menu {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--charcoal);
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 6px;
}

.mobile-menu:hover {
  color: var(--mutindamaroon);
  background: var(--mutindagreen-light);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, rgba(119, 4, 4, 0.85), rgba(84, 102, 21, 0.75)),
              url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 200px 0 100px;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 3.5rem;
  color: rgb(233, 201, 24);
  font-weight: 300;
  margin-bottom: 25px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
  gap: 15px;
  animation: fadeInUp 1s ease-out;
}

.breadcrumb li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  position: relative;
}

.breadcrumb li:not(:last-child)::after {
  content: '›';
  margin-left: 15px;
  color: var(--mutindagreen);
}

.breadcrumb li a {
  color: var(--mutindagreen);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 4px;
}

.breadcrumb li a:hover {
  color: var(--white);
  background: rgba(84, 102, 21, 0.3);
}

/* Blog Intro */
.blog-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
}

.blog-intro p {
  font-size: 1.2rem;
  color: var(--charcoal);
  line-height: 1.8;
}

/* Blog Layout */
.blog-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  position: relative;
}

/* Featured Post */
.featured-post {
  margin-bottom: 80px;
  position: relative;
}

.featured-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: var(--white);
  position: relative;
}

.featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  z-index: 2;
}

.featured-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 35px 80px rgba(119, 4, 4, 0.2);
}

.featured-image {
  height: 450px;
  overflow: hidden;
  position: relative;
}

.featured-image::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(transparent, rgba(119, 4, 4, 0.8));
  z-index: 1;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.featured-card:hover .featured-image img {
  transform: scale(1.08);
}

.featured-content {
  padding: 50px 40px;
  background: linear-gradient(135deg, var(--mutindamaroon) 0%, var(--mutindamaroon-dark) 100%);
  position: relative;
}

.featured-content::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 40px;
  width: 40px;
  height: 40px;
  background: var(--mutindamaroon);
  transform: rotate(45deg);
}

.post-tag {
  display: inline-block;
  background: var(--gradient-secondary);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(84, 102, 21, 0.4);
  position: relative;
  z-index: 2;
}

.post-meta {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

.post-meta span {
  margin-right: 25px;
  display: flex;
  align-items: center;
}

.post-meta i {
  margin-right: 8px;
  color: var(--mutindagreen);
  font-size: 1rem;
}

.featured-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--white);
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.featured-content p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Blog Posts Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.post-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: var(--white);
  position: relative;
  border: 1px solid rgba(84, 102, 21, 0.1);
}

.post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.post-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(119, 4, 4, 0.15);
  border-color: rgba(84, 102, 21, 0.3);
}

.post-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.post-image::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(119, 4, 4, 0.6));
  z-index: 1;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.post-card:hover .post-image img {
  transform: scale(1.1);
}

.post-content {
  padding: 30px 25px;
  background: linear-gradient(135deg, var(--mutindamaroon) 0%, var(--mutindamaroon-dark) 100%);
}

.post-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--white);
  line-height: 1.4;
}

.post-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.read-more {
  color: var(--mutindagreen);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.read-more::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mutindagreen);
  transition: width 0.3s ease;
}

.read-more:hover::after {
  width: 100%;
}

.read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.sidebar-widget {
  background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 35px;
  border: 1px solid rgba(84, 102, 21, 0.1);
  position: relative;
  overflow: hidden;
}

.sidebar-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.sidebar-widget h3 {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--mutindagreen-light);
  font-size: 1.4rem;
  color: var(--mutindamaroon);
  position: relative;
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--mutindagreen);
  border-radius: 1px;
}

.categories-list {
  list-style: none;
}

.categories-list li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--mutindagreen-light);
  transition: all 0.3s ease;
}

.categories-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.categories-list li:hover {
  transform: translateX(8px);
}

.categories-list a {
  color: var(--charcoal);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-weight: 500;
}

.categories-list a:hover {
  color: var(--mutindamaroon);
}

.categories-list span {
  background: var(--mutindagreen-light);
  color: var(--mutindamaroon);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.categories-list li:hover span {
  background: var(--mutindagreen);
  color: var(--white);
}

.recent-posts {
  list-style: none;
}

.recent-post {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--mutindagreen-light);
  transition: all 0.3s ease;
}

.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post:hover {
  transform: translateX(5px);
}

.recent-post-image {
  width: 80px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
  position: relative;
}

.recent-post-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(119, 4, 4, 0.3);
  z-index: 1;
}

.recent-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-post:hover .recent-post-image img {
  transform: scale(1.1);
}

.recent-post-content h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.4;
  
}

.recent-post-content h4 a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-post-content h4 a:hover {
  color: var(--mutindamaroon);
}

.recent-post-content .post-date {
  color: var(--mutindagreen);
  font-size: 0.8rem;
  font-weight: 500;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  background: var(--mutindagreen-light);
  color: var(--mutindamaroon);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  border: 1px solid transparent;
}

.tag:hover {
  background: var(--mutindagreen);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(84, 102, 21, 0.3);
  border-color: var(--mutindagreen);
}

/* Newsletter Widget */
.newsletter-widget {
  background: var(--gradient-primary),
              url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  border: none;
}

.newsletter-widget::before {
  background: var(--mutindagreen);
}

.newsletter-widget h3 {
  color: rgb(233, 201, 24);
  font-weight: 200;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.newsletter-widget h3::after {
  background: var(--mutindagreen);
}

.newsletter-widget p {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-form input {
  padding: 14px 18px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--mutindagreen);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(84, 102, 21, 0.1);
}

.newsletter-form button {
  background: var(--gradient-secondary);
  color: var(--white);
  border: none;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(84, 102, 21, 0.4);
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, var(--mutindagreen-dark), var(--mutindagreen));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(84, 102, 21, 0.6);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.pagination-list {
  display: flex;
  list-style: none;
  gap: 8px;
}

.pagination-item {
  margin: 0;
}

.pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: var(--white);
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--mutindagreen-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pagination-link:hover,
.pagination-link.active {
  background: var(--gradient-secondary);
  color: var(--white);
  border-color: var(--mutindagreen);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(84, 102, 21, 0.4);
}

/* CTA Section */
.cta {
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.cta h2 {
  color: rgb(233, 201, 24);
  font-weight: 200;
  font-size: 2.8rem;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.cta .btn {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 1.1rem;
  padding: 16px 45px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta .btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.footer-logo img {
  width: 150px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.4s ease;
}

.footer-logo:hover img {
  transform: scale(1.05);
}

.footer-about p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ccc;
  max-width: 320px;
  margin-bottom: 25px;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
  color: var(--mutindagreen);
  margin-bottom: 25px;
  font-size: 1.5rem;
 
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--mutindagreen);
  border-radius: 2px;
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-services ul li,
.footer-contact ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.footer-links a,
.footer-services a,
.footer-contact a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover,
.footer-services a:hover,
.footer-contact a:hover {
  color: var(--mutindagreen);
  padding-left: 5px;
}

.footer-contact ul li i {
  margin-right: 12px;
  color: var(--mutindagreen);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.copyright {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.credit {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #777;
}

.credit span {
  color: #e74c3c;
}

.credit a {
  color: gold;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.credit a:hover {
  color: var(--mutindamaroon);
  text-decoration: underline;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.8);
  }
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
}

/* NEW CREATIVE FEATURES */

/* Reading Progress Bar */
.reading-progress {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--mutindagreen-light);
  z-index: 999;
}

.reading-progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  width: 0%;
  transition: width 0.3s ease;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-secondary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 6px 20px rgba(84, 102, 21, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(84, 102, 21, 0.6);
}

/* Article Reading Time */
.reading-time {
  display: inline-flex;
  align-items: center;
  background: var(--mutindagreen-light);
  color: var(--mutindamaroon);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 15px;
}

/* Hover Effects Enhancement */
.post-card .post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(119, 4, 4, 0.1), rgba(84, 102, 21, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.post-card:hover .post-overlay {
  opacity: 1;
}

/* Category Filter Buttons */
.category-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.category-filter {
  background: var(--white);
  border: 2px solid var(--mutindagreen-light);
  color: var(--mutindamaroon);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-filter.active,
.category-filter:hover {
  background: var(--gradient-secondary);
  color: var(--white);
  border-color: var(--mutindagreen);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(84, 102, 21, 0.3);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .page-header h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .blog-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-sidebar {
    position: static;
  }
  
  .posts-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    gap: 0;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 12px 0;
    width: 100%;
    text-align: center;
  }

  nav ul li a {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
  }

  .mobile-menu {
    display: block;
  }

  .page-header {
    padding: 150px 0 80px;
    min-height: 60vh;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  .featured-image {
    height: 300px;
  }

  .featured-content {
    padding: 35px 25px;
  }

  .featured-content h2 {
    font-size: 1.8rem;
  }

  .category-filters {
    gap: 10px;
  }

  .category-filter {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .scroll-to-top {
    bottom: 100px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .whatsapp-float {
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
  
  .featured-card,
  .post-card,
  .sidebar-widget {
    padding: 25px 20px;
  }
  
  .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-content h2 {
    font-size: 1.5rem;
  }
  
  .post-content h3 {
    font-size: 1.2rem;
  }
}