 /* CSS Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'poppins', sans-serif;
      background: linear-gradient(to right, #56ccf2, #ffffff);
  }
  
  /* Header Styles */
  header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Ini yang menyelaraskan vertikal */
  }
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropbtn {
    background-color: #2563eb; /* Warna biru seperti gambar */
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 9999px; /* Biar tombolnya oval */
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'poppins', sans-serif;
  }
  
  .dropbtn:hover {
    background-color: #1e40af; /* Biru lebih gelap saat hover */
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Logo Styles */
  .logo {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    height: 100%;
    display: flex;
    align-items: center; /* Menyelaraskan vertikal */
  }
  .highlightlogo{
    color: #007bff;
  }
  
  /* Navigation Styles */
  nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    height: 100%;
    align-items: center; /* Menyelaraskan vertikal */
  }
  
  nav li {
    display: flex;
    align-items: center; /* Menyelaraskan vertikal */
    height: 100%;
  }
  
  nav li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 5px 0;
    position: relative;
    display: flex;
    align-items: center; /* Menyelaraskan vertikal */
  }
  
  /* Button Styles */
  .contact-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    display: flex;
    align-items: center; /* Menyelaraskan vertikal */
    height: 40px;
  }
  
  .contact-btn:hover {
    background-color: #0069d9;
  }
  
/* Wide Article Container */
.trade-war-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Header with US-China Theme */
.trade-war-header {
    background: linear-gradient(90deg, #B22234 0%, #3C3B6E 100%);
    color: white;
    padding: 50px 40px;
    text-align: center;
}

.trade-war-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Content Sections */
.trade-war-content {
    padding: 40px;
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
}

.timeline-item {
    padding-left: 30px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
    background: #3498db;
    border-radius: 50%;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.impact-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #3498db;
}
/* Opinion Grid */

.opini-section {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #3498db;
}

.opini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.opini-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 350px;
}

.opini-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.opini-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  color: white;
  padding: 30px 20px;
  opacity: 0;
  transition: all 0.4s ease;
  transform: translateY(20px);
}

.opini-card:hover .opini-overlay {
  opacity: 1;
  transform: translateY(0);
}

.opini-card:hover .opini-image {
  transform: scale(1.05);
}

.opini-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.opini-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
    /* ===== FOOTER STYLES ===== */
.footer {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 60px 0 30px;
  margin-top: 60px;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-logo .highlight {
  color: #3498db;
}

.footer-about p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #ecf0f1;
}

.footer-links h3, 
.footer-contact h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #3498db;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: #3498db;
  transform: translateX(5px);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-icon {
  color: #3498db;
  margin-right: 15px;
  font-size: 1.2rem;
  margin-top: 3px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: white;
  background: rgba(255,255,255,0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #3498db;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #bdc3c7;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-col {
    flex: 100%;
    margin-bottom: 30px;
  }
  
  .footer-links h3,
  .footer-contact h3 {
    margin-bottom: 15px;
  }
}