/* Ultra-Premium Blog CSS for Best Masala Brand */

:root {
  --eirthum-dark: #0a1f18;
  --eirthum-gold: #cfaa60;
  --eirthum-gold-light: #e8cc81;
  --eirthum-glass: rgba(255, 255, 255, 0.05);
  --eirthum-border: rgba(207, 170, 96, 0.2);
  --text-muted: #a0b2aa;
}

body {
  background-color: var(--eirthum-dark);
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Hero Section */
.premium-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background-image: linear-gradient(to bottom, rgba(10, 31, 24, 0.5), var(--eirthum-dark)), url('/images/premium-spice-hero.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.premium-hero-content {
  max-width: 900px;
  z-index: 2;
}

.premium-hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, var(--eirthum-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-hero p {
  font-size: 1.25rem;
  color: #e0e0e0;
  line-height: 1.6;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
}

/* Radical Transparency Section */
.transparency-section {
  padding: 6rem 2rem;
  background-color: var(--eirthum-dark);
  position: relative;
}

.transparency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.transparency-card {
  background: var(--eirthum-glass);
  border: 1px solid var(--eirthum-border);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.transparency-card:hover {
  transform: translateY(-10px);
  border-color: var(--eirthum-gold);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.transparency-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.transparency-card h3 {
  font-size: 1.5rem;
  color: var(--eirthum-gold);
  margin-bottom: 1rem;
}

.transparency-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* The Spice Compendium (Blog Section) */
.spice-compendium {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: #fff;
  font-weight: 700;
}

.section-title span {
  color: var(--eirthum-gold);
}

.spice-blog-entry {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px;
  margin-bottom: 4rem;
  overflow: hidden;
  position: relative;
}

@media (min-width: 992px) {
  .spice-blog-entry {
    flex-direction: row;
    align-items: stretch;
  }
  .spice-blog-entry:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.spice-image-wrapper {
  flex: 0 0 40%;
  position: relative;
  min-height: 300px;
  background: #111;
}

.spice-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.spice-image-wrapper img.product-jar-img {
  object-fit: contain;
  padding: 2rem;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0) 70%);
}

.spice-image-wrapper img.contain-img {
  object-fit: contain;
}

.spice-content {
  flex: 1;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spice-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.spice-content h2 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.spice-content h2 a:hover {
  color: var(--eirthum-gold);
}

.spice-content .spice-description {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.spice-benefits {
  background: rgba(207, 170, 96, 0.05);
  border-left: 4px solid var(--eirthum-gold);
  padding: 1.5rem 2rem;
  border-radius: 0 12px 12px 0;
}

.spice-benefits h4 {
  color: var(--eirthum-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.spice-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spice-benefits li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.spice-benefits li::before {
  content: '✓';
  color: var(--eirthum-gold);
  margin-right: 10px;
  font-weight: bold;
}

/* Call to Action */
.cta-section {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(to top, #000, var(--eirthum-dark));
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--eirthum-dark);
  background: var(--eirthum-gold);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(207, 170, 96, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(207, 170, 96, 0.3);
  background: #fff;
}

@media (max-width: 768px) {
  .premium-hero h1 {
    font-size: 2.5rem;
  }
  .spice-content {
    padding: 2rem;
  }
  .spice-content h2 {
    font-size: 2rem;
  }
}
