/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('images/hero1-modern-office-technology_orig.jpg') center/cover;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  padding: 0 24px;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 24px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  animation: heroFadeIn 1s ease-out;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 32px;
  opacity: 0.9;
  color: white;
  animation: heroFadeIn 1s ease-out 0.3s both;
}

.hero-cta {
  display: flex;
  gap: 24px;
  justify-content: center;
  animation: heroFadeIn 1s ease-out 0.6s both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  background: rgba(212, 168, 75, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  filter: blur(2px);
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(5deg);
  }
  66% {
    transform: translateY(10px) rotate(-5deg);
  }
}

/* Breaking News Section */
.breaking-news-section {
  padding: 80px 0;
  background: var(--news-navy);
}

.breaking-news-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.breaking-badge {
  background: #DC2626;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
}

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

/* Top Stories Grid */
.top-stories-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}

.main-story {
  position: relative;
}

.main-story-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 24px;
}

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

.story-category {
  background: var(--news-gold);
  color: var(--news-navy);
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.8rem;
}

.main-story h2 {
  font-size: 2.2rem;
  color: var(--news-gold);
  margin-bottom: 16px;
  line-height: 1.3;
}

.story-excerpt {
  color: var(--news-cream);
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.6;
}

.sidebar-stories {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-story {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(212, 168, 75, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--news-gold);
  transition: all 0.3s ease;
}

.sidebar-story:hover {
  background: rgba(212, 168, 75, 0.1);
  transform: translateX(8px);
}

.sidebar-story-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.sidebar-story-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--news-gold);
}

.sidebar-story-content p {
  font-size: 0.9rem;
  color: var(--news-cream);
  opacity: 0.8;
  margin-bottom: 8px;
}

/* Exclusive Section */
.exclusive-section {
  background: rgba(20, 39, 62, 0.8);
  padding: 80px 0;
}

.exclusive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.exclusive-article {
  background: var(--news-navy);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 168, 75, 0.1);
}

.exclusive-article:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.exclusive-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.exclusive-content {
  padding: 24px;
}

.exclusive-label {
  background: linear-gradient(45deg, #DC2626, #991B1B);
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.exclusive-content h3 {
  color: var(--news-gold);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.exclusive-content p {
  color: var(--news-cream);
  opacity: 0.9;
  margin-bottom: 16px;
}

/* Weather & Currency Sidebar */
.info-sidebar {
  background: rgba(212, 168, 75, 0.05);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(212, 168, 75, 0.2);
}

.weather-widget,
.currency-widget {
  margin-bottom: 32px;
}

.widget-title {
  color: var(--news-gold);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 16px;
  border-bottom: 2px solid rgba(212, 168, 75, 0.3);
  padding-bottom: 8px;
}

.weather-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212, 168, 75, 0.1);
}

.weather-city {
  color: var(--news-cream);
  font-weight: 500;
}

.weather-temp {
  color: var(--news-gold);
  font-weight: 600;
}

.currency-table {
  width: 100%;
  border-collapse: collapse;
}

.currency-table th,
.currency-table td {
  padding: 12px 8px;
  text-align: left;
  border-bottom: 1px solid rgba(212, 168, 75, 0.1);
}

.currency-table th {
  color: var(--news-gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.currency-table td {
  color: var(--news-cream);
}

/* Editorial Team */
.editorial-team {
  background: rgba(212, 168, 75, 0.05);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(212, 168, 75, 0.2);
  margin-top: 32px;
}

.team-title {
  color: var(--news-gold);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.team-member {
  margin-bottom: 8px;
  color: var(--news-cream);
}

.team-role {
  color: var(--news-gold);
  font-weight: 600;
}

/* Article Page Styles */
.article-header {
  padding: 120px 0 80px;
  background: var(--news-navy);
  text-align: center;
}

.article-category {
  background: var(--news-gold);
  color: var(--news-navy);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  margin-bottom: 24px;
  display: inline-block;
}

.article-title {
  font-size: 3.5rem;
  color: var(--news-gold);
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: rgba(244, 244, 240, 0.7);
  margin-bottom: 32px;
}

.article-image {
  width: 100%;
  max-width: 800px;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 32px;
  display: block;
}

.article-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--news-cream);
}

.article-quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--news-gold);
  text-align: center;
  margin: 48px 0;
  padding: 32px;
  border: 2px solid rgba(212, 168, 75, 0.2);
  border-radius: 12px;
  background: rgba(212, 168, 75, 0.05);
}

.listen-button {
  background: var(--news-gold);
  color: var(--news-navy);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

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

.article-tags {
  display: flex;
  gap: 12px;
  margin: 48px 0 32px;
  flex-wrap: wrap;
}

.article-tag {
  background: rgba(212, 168, 75, 0.1);
  color: var(--news-gold);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.article-tag:hover {
  background: var(--news-gold);
  color: var(--news-navy);
}

/* Contact Form Enhancements */
.contact-section {
  padding: 80px 0;
  background: rgba(20, 39, 62, 0.8);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  color: var(--news-gold);
  margin-bottom: 24px;
  font-size: 2rem;
}

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

.contact-details {
  list-style: none;
  padding: 0;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--news-cream);
}

.contact-icon {
  width: 24px;
  height: 24px;
  background: var(--news-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--news-navy);
}

.form-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22C55E;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  display: none;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .top-stories-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .main-story h2 {
    font-size: 1.8rem;
  }
  
  .article-title {
    font-size: 2.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .floating-shapes {
    display: none;
  }
  
  .hero-section {
    background-attachment: scroll;
  }
}