@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Lato:wght@300;400;700&display=swap');

:root {
  --color-black: #1a1a2e;
  --color-brand: #e94560;
  --color-brand-dark: #c73e54;
  --color-secondary: #0f3460;
  --color-accent: #16213e;
  --color-light: #f8f9fa;
  --color-warm: #fff5f0;
  --gradient-primary: linear-gradient(135deg, #e94560 0%, #0f3460 100%);
  --gradient-warm: linear-gradient(135deg, #fff5f0 0%, #ffe4d6 100%);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 40px rgba(233, 69, 96, 0.2);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

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

/* ==========================================================================
   Base
   ========================================================================== */
body {
  background-color: var(--color-light);
  color: var(--color-black);
  font: 18px/1.7 'Lato', sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 50px;
  background: white;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__brand {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s var(--ease-smooth);
}

.header__brand::before {

}

.header__brand:hover {
  color: var(--color-brand);
}

.menu {
  display: flex;
  gap: 40px;
  list-style: none;
}

.menu-item a {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-black);
  padding: 10px 0;
  position: relative;
  transition: color 0.3s var(--ease-smooth);
}

.menu-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-brand);
  border-radius: 2px;
  transition: width 0.4s var(--ease-out-expo);
}

.menu-item a:hover,
.menu-item.current-menu-item a {
  color: var(--color-brand);
}

.menu-item a:hover::after,
.menu-item.current-menu-item a::after {
  width: 100%;
}

/* ==========================================================================
   Hero Section (Homepage)
   ========================================================================== */
.hero-home {
  background: var(--gradient-warm);
  padding: 100px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-home::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-home::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(15, 52, 96, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-home h1 {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--color-black);
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.hero-home h1 span {
  color: var(--color-brand);
}

.hero-home p {
  font-size: 22px;
  color: var(--color-secondary);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-emoji {
  font-size: 120px;
  margin-bottom: 30px;
  display: block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ==========================================================================
   Cards / Articles Grid
   ========================================================================== */
.section {
  padding: 80px 50px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: var(--color-black);
}

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

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
}

.card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.card__media {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.card__media::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}

.card:hover .card__media::after {
  opacity: 1;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease-out-expo);
}

.card:hover .card__media img {
  transform: scale(1.1);
}

.card__content {
  padding: 30px;
}

.card__category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 15px;
  line-height: 1.3;
  transition: color 0.3s var(--ease-smooth);
}

.card:hover .card__content h2 {
  color: var(--color-brand);
}

.card__content p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-weight: 700;
  color: var(--color-brand);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card__read-more::after {
  content: '→';
  transition: transform 0.3s var(--ease-smooth);
}

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

/* ==========================================================================
   Article Single Page
   ========================================================================== */
.hero-article {
  background: var(--color-accent);
  position: relative;
}

.hero-article__image {
  width: 100%;
  height: 60vh;
  min-height: 400px;
  max-height: 600px;
}

.hero-article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.article-content {
  max-width: 800px;
  margin: -80px auto 0;
  background: white;
  border-radius: 30px 30px 0 0;
  padding: 60px 80px 80px;
  position: relative;
  z-index: 10;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
}

.article-content__category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
}

.article-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.2;
  margin-bottom: 30px;
}

.article-content__meta {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--color-light);
}

.article-content__meta span {
  font-size: 14px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-body {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
}

.article-body p {
  margin-bottom: 25px;
}

.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--color-black);
  margin: 50px 0 25px;
}

.article-body ul {
  margin: 25px 0;
  padding-left: 30px;
}

.article-body li {
  margin-bottom: 12px;
  position: relative;
}

.article-body li::marker {
  color: var(--color-brand);
}

.article-content-img {
    margin-top: 80px; 
}


.article-content-img img {
  margin-top: 20px;
  padding-bottom: 35px ;
  

}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--color-black);
  color: white;
  padding: 60px 50px;
  text-align: center;
}

.footer__content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__brand {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer__brand::before {
  
}

.footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.footer__social a {
  color:white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s var(--ease-smooth);
}



/* ==========================================================================
   Utilities
   ========================================================================== */
.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 25px;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
  .header {
    padding: 20px 25px;
    flex-direction: column;
    gap: 20px;
  }

  .menu {
    gap: 25px;
  }

  .hero-home {
    padding: 60px 25px;
  }

  .hero-home h1 {
    font-size: 42px;
  }

  .hero-emoji {
    font-size: 80px;
  }

  .section {
    padding: 60px 25px;
  }

  .section-title {
    font-size: 32px;
  }

  .cards {
    gap: 25px;
  }

  .card__media {
    height: 200px;
  }

  .card__content {
    padding: 20px;
  }

  .card__content h2 {
    font-size: 22px;
  }

  .article-content {
    padding: 40px 25px 60px;
    margin-top: -50px;
    border-radius: 20px 20px 0 0;
  }

  .article-content h1 {
    font-size: 32px;
  }

  .footer {
    padding: 40px 25px;
  }
}
