/* Begin Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(11, 29, 58, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 75, 0.2);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(11, 29, 58, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--news-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

.site-logo:hover {
  color: #E6B866;
  text-decoration: none;
  transform: scale(1.05);
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-weight: 500;
  color: var(--news-cream);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--news-gold);
  background: rgba(212, 168, 75, 0.1);
}

.header-phone {
  font-weight: 600;
  color: var(--news-gold);
  padding: 12px 24px;
  border: 2px solid var(--news-gold);
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.header-phone:hover {
  background: var(--news-gold);
  color: var(--news-navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 168, 75, 0.4);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--news-gold);
  transition: all 0.3s ease;
}

.dark-mode-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.dark-mode-toggle:hover {
  background: rgba(212, 168, 75, 0.1);
  transform: scale(1.1);
}

.dark-mode-toggle svg {
  width: 24px;
  height: 24px;
  fill: var(--news-gold);
  transition: all 0.3s ease;
}

/* Begin Footer */
.site-footer {
  background: var(--news-navy);
  border-top: 1px solid rgba(212, 168, 75, 0.2);
  padding: 64px 0 32px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
  color: var(--news-gold);
  font-size: 1.4rem;
  margin-bottom: 24px;
  font-family: var(--font-heading);
}

.footer-about p {
  color: var(--news-cream);
  line-height: 1.6;
  opacity: 0.9;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: var(--news-cream);
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.footer-links a:hover {
  color: var(--news-gold);
  opacity: 1;
  padding-left: 8px;
}

.footer-contact p {
  color: var(--news-cream);
  margin-bottom: 12px;
  opacity: 0.9;
}

.footer-contact strong {
  color: var(--news-gold);
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 168, 75, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--news-gold);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--news-gold);
  transition: all 0.3s ease;
}

.social-icon:hover svg {
  fill: var(--news-navy);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 168, 75, 0.2);
  padding-top: 32px;
  text-align: center;
  color: var(--news-cream);
  opacity: 0.7;
}

.footer-legal {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-legal a {
  color: var(--news-cream);
  text-decoration: none;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--news-gold);
}

/* Cards */
.news-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 168, 75, 0.1);
}

.news-card:hover {
  transform: translateY(-8px) perspective(1000px) rotateX(2deg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.news-card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.1);
}

.news-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--news-gold);
  color: var(--news-navy);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.news-card-content {
  padding: 24px;
  background: var(--news-navy);
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  color: rgba(244, 244, 240, 0.7);
  font-size: 0.9rem;
}

.news-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--news-gold);
  margin-bottom: 12px;
  line-height: 1.3;
}

.news-card-excerpt {
  color: var(--news-cream);
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.5;
}

.read-more-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--news-gold);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more-button:hover {
  color: #E6B866;
  transform: translateX(4px);
}

.read-more-button svg {
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  font-size: 1rem;
}

.btn-primary {
  background: var(--news-gold);
  color: var(--news-navy);
}

.btn-primary:hover {
  background: #E6B866;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 75, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--news-gold);
  border: 2px solid var(--news-gold);
}

.btn-outline:hover {
  background: var(--news-gold);
  color: var(--news-navy);
  transform: translateY(-2px);
}

/* Forms */
.contact-form {
  background: rgba(212, 168, 75, 0.05);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(212, 168, 75, 0.2);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--news-gold);
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(212, 168, 75, 0.3);
  border-radius: 8px;
  background: var(--news-navy);
  color: var(--news-cream);
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--news-gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.1);
}

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

/* Cookie Banner */
.gdpr-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9998;
  background: var(--news-navy);
  border: 2px solid var(--news-gold);
  border-radius: 12px;
  padding: 24px;
  max-width: 350px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.5s ease;
}

.gdpr-popup.show {
  opacity: 1;
  transform: translateY(0);
}

.gdpr-popup p {
  color: var(--news-cream);
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.gdpr-popup button {
  background: var(--news-gold);
  color: var(--news-navy);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.gdpr-popup button:hover {
  background: #E6B866;
  transform: translateY(-2px);
}

/* Breaking News Carousel */
.breaking-news-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 48px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.carousel-content {
  max-width: 600px;
  padding: 0 24px;
}

.carousel-content h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: white;
}

.carousel-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  color: white;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: var(--news-gold);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .header-container {
    min-height: 70px;
    padding: 0 16px;
  }
  
  .main-navigation {
    gap: 16px;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--news-navy);
    flex-direction: column;
    padding: 24px;
    border-top: 1px solid rgba(212, 168, 75, 0.2);
    gap: 8px;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-phone {
    display: none;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
  
  .gdpr-popup {
    left: 16px;
    right: 16px;
    max-width: none;
  }
  
  .carousel-content h2 {
    font-size: 1.8rem;
  }
}