/*
Theme Name: FalloneNews
Description: Site pour les entrepreneurs de la diaspora africaine
Version: 1.0
Author: FalloneNews Team
*/

/* ==================== RESET & BASE ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==================== HEADER & NAVIGATION ==================== */
header {
  background: linear-gradient(135deg, #1a3a1b 0%, #2c5f2d 100%);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.top-bar {
  background: rgba(0, 0, 0, 0.2);
  padding: 8px 0;
  text-align: center;
  color: #d4af37;
  font-size: 0.85em;
  letter-spacing: 1px;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  text-decoration: none;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4af37 0%, #c17e3a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.logo-text {
  font-size: 1.8em;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #d4af37;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Categories Dropdown */
.categories-menu {
  position: relative;
}

.categories-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  margin-top: 10px;
  list-style: none;
  z-index: 1000;
}

.categories-menu:hover .categories-dropdown {
  display: block;
}

.categories-menu.active .categories-dropdown {
  display: block;
}

.categories-dropdown li {
  margin-bottom: 12px;
}

.categories-dropdown li:last-child {
  margin-bottom: 0;
}

.categories-dropdown a {
  color: #2c3e50 !important;
  text-decoration: none;
  display: block;
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.3s;
  font-weight: 500;
}

.categories-dropdown a::after {
  display: none;
}

.categories-dropdown a:hover {
  background: #f8f9fa;
  color: #d4af37 !important;
}

.categories-dropdown span {
  color: #7f8c8d;
  font-size: 0.85em;
}

/* Search Button */
.search-toggle-btn {
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3em;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-toggle-btn:hover {
  background: #d4af37;
  color: white;
  transform: scale(1.1);
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.search-overlay.active {
  display: flex;
}

.search-wrapper {
  max-width: 700px;
  width: 100%;
  position: relative;
}

.search-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2em;
  cursor: pointer;
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-close:hover {
  transform: rotate(90deg);
}

.search-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.search-form input {
  flex: 1;
  min-width: 250px;
  padding: 20px 30px;
  border: 3px solid #d4af37;
  border-radius: 50px;
  font-size: 1.2em;
  outline: none;
}

.search-form button {
  background: linear-gradient(135deg, #d4af37 0%, #c17e3a 100%);
  color: white;
  padding: 20px 40px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.search-form button:hover {
  transform: scale(1.05);
}

.search-hint {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: 20px;
  font-size: 0.95em;
}

/* ==================== HERO SECTION ==================== */
.hero {
  background:
    linear-gradient(
      135deg,
      rgba(44, 95, 45, 0.95) 0%,
      rgba(26, 58, 27, 0.95) 100%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%232C5F2D" width="1200" height="600"/><path fill="%23D4AF37" opacity="0.1" d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 120px 40px;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .highlight {
  color: #d4af37;
}

.hero p {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #c17e3a 100%);
  color: white;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

/* ==================== CONTAINER ==================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

.section-title {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #2c5f2d;
  font-weight: 800;
}

.section-subtitle {
  text-align: center;
  color: #7f8c8d;
  font-size: 1.2em;
  margin-bottom: 60px;
}

/* ==================== ARTICLES GRID ==================== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.article-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

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

.article-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #d4af37 0%, #c17e3a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4em;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  color: #2c5f2d;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85em;
  font-weight: 700;
  text-transform: uppercase;
}

.article-content {
  padding: 30px;
}

.article-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9em;
  color: #7f8c8d;
  flex-wrap: wrap;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #2c3e50;
  font-weight: 700;
  line-height: 1.3;
}

.article-title a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-title a:hover {
  color: #d4af37;
}

.article-excerpt {
  color: #7f8c8d;
  margin-bottom: 20px;
  line-height: 1.7;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #ecf0f1;
}

.read-more {
  color: #d4af37;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 15px;
}

.article-stats {
  display: flex;
  gap: 15px;
  font-size: 0.85em;
  color: #7f8c8d;
}

.article-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ==================== CATEGORIES SECTION ==================== */
.categories-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.category-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
  text-decoration: none;
  display: block;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.category-icon {
  font-size: 3.5em;
  margin-bottom: 20px;
}

.category-title {
  font-size: 1.4em;
  font-weight: 700;
  color: #2c5f2d;
  margin-bottom: 10px;
}

.category-count {
  color: #7f8c8d;
  font-size: 0.95em;
}

/* ==================== FILTER BAR ==================== */
.filter-bar {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px 40px;
  border-radius: 15px;
  margin-bottom: 40px;
}

.filter-controls {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-label {
  font-weight: 600;
  color: #2c5f2d;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-select {
  padding: 12px 20px;
  border: 2px solid #d4af37;
  border-radius: 50px;
  font-size: 1em;
  background: white;
  color: #2c3e50;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.filter-select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.results-count {
  color: #7f8c8d;
  font-size: 0.95em;
}

.results-count strong {
  color: #d4af37;
  font-size: 1.2em;
}

/* ==================== PAGINATION ==================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
}

.pagination-link {
  padding: 12px 20px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-link:hover,
.pagination-link.active {
  background: #d4af37;
  color: white;
  border-color: #d4af37;
  transform: translateY(-2px);
}

/* ==================== SINGLE ARTICLE ==================== */
.article-single {
  max-width: 900px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.article-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d4af37;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9em;
  margin-bottom: 20px;
}

.article-single h1 {
  font-size: 2.8em;
  color: #2c5f2d;
  margin: 20px 0;
  line-height: 1.2;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  color: #7f8c8d;
  font-size: 0.95em;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-item i {
  color: #d4af37;
}

.featured-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  margin: 40px 0;
}

.featured-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.article-content {
  font-size: 1.15em;
  line-height: 1.9;
  color: #2c3e50;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content h2,
.article-content h3 {
  color: #2c5f2d;
  margin: 40px 0 20px;
  font-weight: 700;
}

.article-content h2 {
  font-size: 1.8em;
}

.article-content h3 {
  font-size: 1.4em;
}

.article-content blockquote {
  border-left: 4px solid #d4af37;
  padding: 20px 30px;
  margin: 30px 0;
  background: #f8f9fa;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: #555;
}

.article-content ul,
.article-content ol {
  margin: 20px 0;
  padding-left: 40px;
}

.article-content li {
  margin-bottom: 10px;
}

/* Article Stats Bar */
.article-stats-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0;
  padding: 25px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  flex-wrap: wrap;
  gap: 20px;
}

.article-stats-bar > div:first-child {
  display: flex;
  gap: 30px;
  align-items: center;
}

.like-button {
  background: transparent;
  border: 2px solid #d4af37;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #d4af37;
}

.like-button:hover,
.like-button.liked {
  background: #d4af37;
  color: white;
  transform: scale(1.05);
}

.like-button.liked i {
  animation: heartBeat 0.5s;
}

@keyframes heartBeat {
  0%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Author Box */
.author-box {
  background: linear-gradient(135deg, #2c5f2d 0%, #1a3a1b 100%);
  padding: 40px;
  border-radius: 20px;
  color: white;
  margin: 60px 0;
  display: flex;
  align-items: center;
  gap: 30px;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  flex-shrink: 0;
}

.author-info h3 {
  color: #d4af37;
  margin-bottom: 10px;
  font-size: 1.5em;
}

.author-bio {
  opacity: 0.9;
  line-height: 1.6;
}

/* Share Section */
.share-section {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  text-align: center;
}

.share-section h3 {
  color: #2c5f2d;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.share-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.share-facebook {
  background: #1877f2;
}
.share-twitter {
  background: #1da1f2;
}
.share-linkedin {
  background: #0077b5;
}
.share-whatsapp {
  background: #25d366;
}

/* Tags */
.article-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #ecf0f1;
}

.tags-section {
  margin-bottom: 30px;
}

.tags-section strong {
  color: #2c5f2d;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.tag-link {
  display: inline-block;
  background: #f8f9fa;
  padding: 8px 20px;
  border-radius: 25px;
  margin: 5px;
  text-decoration: none;
  color: #7f8c8d;
  font-size: 0.9em;
  transition: all 0.3s ease;
}

.tag-link:hover {
  background: #d4af37;
  color: white;
  transform: translateY(-2px);
}

/* ==================== COMMENTS ==================== */
.comments-area {
  margin-top: 60px;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 20px;
}

.comments-main-title {
  color: #2c5f2d;
  font-size: 2em;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 3px solid #d4af37;
}

.comment-respond {
  background: white;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.comment-reply-title {
  color: #2c5f2d;
  font-size: 1.5em;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment-notes {
  color: #7f8c8d;
  font-size: 0.9em;
  margin-bottom: 20px;
  line-height: 1.6;
}

.required {
  color: #d4af37;
  font-weight: bold;
}

.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url {
  margin-bottom: 20px;
}

.comment-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c5f2d;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1em;
  font-family: inherit;
  transition: all 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.comment-form textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-comment-btn {
  background: linear-gradient(135deg, #d4af37 0%, #c17e3a 100%);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.submit-comment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.no-comments {
  text-align: center;
  padding: 40px;
  color: #7f8c8d;
  font-size: 1.1em;
  background: white;
  border-radius: 15px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ==================== CONTACT PAGE ==================== */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card-icon {
  font-size: 3em;
  margin-bottom: 20px;
  color: #d4af37;
}

.contact-card h3 {
  color: #2c5f2d;
  margin-bottom: 10px;
  font-size: 1.3em;
}

.contact-card p {
  color: #7f8c8d;
  line-height: 1.6;
}

.contact-card a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #2c5f2d;
  font-size: 1.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1em;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-button {
  background: linear-gradient(135deg, #d4af37 0%, #c17e3a 100%);
  color: white;
  padding: 18px 50px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1em;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ==================== NEWSLETTER ==================== */
.newsletter-section {
  background: linear-gradient(135deg, #2c5f2d 0%, #1a3a1b 100%);
  color: white;
  text-align: center;
}

.newsletter-section .section-title {
  color: white;
}

.newsletter-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 18px 25px;
  border: none;
  border-radius: 50px;
  font-size: 1em;
  background: rgba(255, 255, 255, 0.95);
}

.newsletter-button {
  padding: 18px 40px;
  background: linear-gradient(135deg, #d4af37 0%, #c17e3a 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.newsletter-button:hover {
  transform: scale(1.05);
}

/* ==================== FOOTER ==================== */
footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 40px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #d4af37;
  margin-bottom: 20px;
  font-size: 1.3em;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #d4af37;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2em;
}

.social-icon:hover {
  background: #d4af37;
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 0.9em;
  }

  .categories-dropdown {
    position: static !important;
    margin-top: 10px !important;
  }

  .hero h1 {
    font-size: 2.2em;
  }

  .hero p {
    font-size: 1.1em;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    width: 100%;
  }

  .section-title {
    font-size: 2em;
  }

  .article-single h1 {
    font-size: 2em;
  }

  .article-meta-bar {
    font-size: 0.85em;
  }

  .share-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .share-btn {
    justify-content: center;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
  }

  .filter-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-select {
    width: 100%;
  }

  .search-toggle-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}
