@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-color: #030303;
  --surface-color: #0f0f0f;
  --text-main: #f0f0f0;
  --text-muted: #999999;
  --accent-gold: #c5a059;
  --accent-gold-hover: #e0b768;
  --border-color: #222222;
  
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-gold);
}

/* Header & Glassmorphism */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(3, 3, 3, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-main);
}

.logo span {
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.05);
  animation: slowZoom 20s infinite alternate linear;
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(3,3,3,1) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
}

.tagline {
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: block;
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

/* Featured Snippet Section - SEO Optimized */
.featured-snippet-container {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 3rem;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-gold);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.snippet-target {
  margin-bottom: 1.5rem;
}

.snippet-target h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.snippet-target p {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.snippet-target ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.snippet-target li {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.snippet-target li strong {
  color: var(--text-main);
}

/* Magazine Grid */
.magazine-section {
  max-width: 1400px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.section-header {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent-gold);
  margin: 1rem auto 0;
}

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

.article-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  transition: transform 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
}

.img-wrapper {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.article-card:hover img {
  transform: scale(1.05);
}

.card-content {
  padding: 2rem;
  flex-grow: 1;
}

.article-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.read-more {
  margin-top: auto;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.read-more::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.article-card:hover .read-more::after {
  transform: translateX(5px);
}

/* Footer */
footer {
  background: #000;
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

footer .logo {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* News List Layout */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.news-list-item {
  display: flex;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-gold);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.news-list-item:hover {
  transform: translateX(5px);
  border-color: var(--accent-gold);
}

.news-list-img-wrapper {
  flex: 0 0 350px;
  overflow: hidden;
}

.news-list-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-list-item:hover img {
  transform: scale(1.05);
}

.news-list-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-list-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.news-list-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 3rem; }
  .nav-links { display: none; }
  .featured-snippet-container { padding: 2rem; margin: 2rem; }
  .news-list-item { flex-direction: column; }
  .news-list-img-wrapper { flex: none; height: 250px; }
}
