:root {
  --sunset-yellow: #ffb703;
  --sunset-orange: #fb8500;
  --sunset-red: #d90429;
  --sunset-dark: #8d0801;
  --warm-bg: #fffcf2;
  --warm-card: #ffffff;
  --text-primary: #401201;
  --text-secondary: #7c2d12;
  --font-serif: "Merriweather", serif;
  --font-sans: "Lato", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--warm-bg);
  color: var(--text-primary);
  background-image: linear-gradient(180deg, #fffcf2 0%, #fff7ed 100%);
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 242, 0.95);
  border-bottom: 3px solid var(--sunset-orange);
  padding: 15px 0;
  box-shadow: 0 4px 6px -1px rgba(251, 133, 0, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-weight: 900;
  color: var(--sunset-dark);
  font-size: 1.5rem;
}

.brand img {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 700;
  font-size: 1.05rem;
}

.nav-links a {
  color: var(--text-secondary);
  padding: 5px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--sunset-orange);
  transition: width 0.3s;
  border-radius: 3px;
}

.nav-links a:hover {
  color: var(--sunset-orange);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.hero-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  align-items: center;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sunset-orange);
  margin: 0 0 16px;
  background: #fff7ed;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  margin: 0 0 24px;
  line-height: 1.1;
  color: var(--text-primary);
  background: linear-gradient(45deg, var(--sunset-dark), var(--sunset-red));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin: 0 0 36px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-red));
  color: white;
  box-shadow: 0 4px 14px rgba(251, 133, 0, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 4, 41, 0.5);
}

.btn.ghost {
  background: white;
  color: var(--sunset-red);
  border: 2px solid var(--sunset-red);
  box-shadow: none;
}

.btn.ghost:hover {
  background: #fff0f3;
  transform: translateY(-2px);
}

.btn-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.hero-media {
  position: relative;
  padding: 10px;
}

.hero-media::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background: var(--sunset-yellow);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
}

.hero-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(141, 8, 1, 0.15);
}

/* Sections */
.section-title {
  text-align: center;
  margin: 0 0 50px;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--text-primary);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--sunset-orange);
  margin: 15px auto 0;
  border-radius: 2px;
}

.features, .posts, .promotions, .comments, .gallery {
  padding: 80px 0;
}

.features { background: white; }
.posts { background: #fffcf2; }

/* Cards (Warm Style) */
.feature-grid, .comment-grid, .post-grid, .gallery-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-card, .comment-card, .post-card {
  background: var(--warm-card);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05), 0 10px 15px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  border: 1px solid #fff7ed;
}

.feature-card:hover, .comment-card:hover, .post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(251, 133, 0, 0.15);
  border-color: var(--sunset-yellow);
}

.feature-title, .comment-title, .post-title {
  font-family: var(--font-serif);
  color: var(--text-primary);
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.feature-desc, .comment-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Gallery */
.gallery-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.gallery-img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 24px rgba(251, 133, 0, 0.2);
}

/* Posts/Carousel */
.carousel-container {
  position: relative;
}

.carousel-track-container {
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.carousel-track-container::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 32px;
  padding: 20px 5px;
  margin: 0;
  list-style: none;
}

.carousel-slide {
  flex: 0 0 320px;
  scroll-snap-align: center;
}

.post-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-title a {
  color: var(--text-primary);
}

.post-title a:hover {
  color: var(--sunset-red);
}

.post-meta {
  color: var(--sunset-orange);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-summary {
  flex: 1;
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 20px;
}

.post-link {
  color: var(--sunset-red);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-link::after {
  content: '→';
  transition: transform 0.2s;
}

.post-link:hover::after {
  transform: translateX(5px);
}



/* Promotions */
.promotion-card {
  background: white;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: all 0.3s;
  border-left: 4px solid var(--sunset-yellow);
}

.promotion-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-color: var(--sunset-red);
}

.promotion-icon {
  width: 50px;
  height: 50px;
  background: #fff7ed;
  padding: 10px;
  border-radius: 50%;
}

.promotion-title {
  color: var(--text-primary);
  font-size: 1.15rem;
  margin: 0;
  font-weight: 700;
}

/* Footer */
.footer {
  padding: 60px 0;
  background: var(--text-primary);
  color: #fff7ed;
  text-align: center;
  font-size: 1rem;
}

/* Single Page */
.article {
  padding: 80px 0;
}

.article-card {
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 800px;
  margin: 0 auto;
}

.article-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.article-meta {
  color: var(--sunset-orange);
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 1px;
}

.article-content {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.article-content h2 {
  font-family: var(--font-serif);
  color: var(--sunset-dark);
  margin-top: 40px;
  border-bottom: 2px solid var(--sunset-yellow);
  padding-bottom: 10px;
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .nav-links { display: none; }
  .carousel-slide { flex: 0 0 280px; }
  .article-card { padding: 30px; }
}
