/* EventStory.css - Premium Article Styles for KLAR */

body {
  margin: 0;
  padding: 0;
  background-color: #F8F8F8;
  color: #333;
}

/* Hero Section */
.story-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px; /* Offset for fixed navbar if any */
}

.story-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.story-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(0,0,0,0.8) 100%);
  z-index: 2;
}

.story-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 0 20px;
}

.story-meta {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
}

.story-tag {
  background: #fff;
  color: #000;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
}

.story-date {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.8;
}

.story-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 20px 0;
  font-weight: 400;
}

.story-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  font-weight: 300;
}

/* Article Layout */
.story-article {
  padding: 80px 20px;
  background-color: #fff;
}

.story-container {
  max-width: 760px;
  margin: 0 auto;
}

.story-intro p {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
}

.drop-cap::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  float: left;
  line-height: 0.8;
  margin-right: 15px;
  margin-top: 5px;
  color: #1F2F5D;
}

.story-section {
  margin-bottom: 50px;
}

.story-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 500;
}

.story-section p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Quote */
.story-quote {
  margin: 60px 0;
  padding: 40px;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.story-quote {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 1.5;
  color: #1a1a1a;
  font-style: italic;
}

.story-quote cite {
  display: block;
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  font-style: normal;
}

/* Gallery */
.story-gallery {
  display: flex;
  gap: 20px;
  margin: 60px 0;
}

.story-gallery img {
  width: 50%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* CTA */
.story-cta {
  background-color: #1F2F5D;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.story-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 400;
}

.story-btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: #dcc79f;
  color: #1F2F5D;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.story-btn:hover {
  background-color: #fff;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .story-title {
    font-size: 40px;
  }
  .story-hero {
    height: 60vh;
  }
  .drop-cap::first-letter {
    font-size: 60px;
  }
  .story-quote {
    font-size: 22px;
    padding: 20px 0;
  }
  .story-gallery {
    flex-direction: column;
  }
  .story-gallery img {
    width: 100%;
  }
}
