/* DanceSpree - style.css */
/* Palette: terracotta #c0533a, cream #faf8f4, charcoal #1e1a18 */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: #faf8f4;
  color: #1e1a18;
  line-height: 1.7;
}

a {
  color: #c0533a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* ---- Layout wrap ---- */
.ds-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Sticky Nav ---- */
.ds-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 2px solid #c0533a;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.ds-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.ds-nav-brand {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e1a18;
  letter-spacing: -0.02em;
}

.ds-nav-brand span {
  color: #c0533a;
}

.ds-nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.ds-nav-links a {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #3a3330;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ds-nav-links a:hover,
.ds-nav-links a.ds-active {
  color: #c0533a;
  text-decoration: none;
}

/* ---- Hero Banner ---- */
.ds-hero-banner {
  background: #c0533a;
  color: #ffffff;
  padding: 72px 20px 64px;
  text-align: center;
}

.ds-hero-banner h1 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.ds-hero-banner h1 em {
  font-style: italic;
  color: #ffd4c8;
}

.ds-hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #fde8e3;
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.ds-hero-cta {
  display: inline-block;
  background: #ffffff;
  color: #c0533a;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 30px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}

.ds-hero-cta:hover {
  background: #fde8e3;
  text-decoration: none;
}

/* ---- Dance Styles Strip ---- */
.ds-styles-strip {
  background: #f0ebe5;
  border-bottom: 1px solid #ddd5cb;
  padding: 14px 20px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.ds-styles-strip-inner {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.ds-styles-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a7a72;
  margin-right: 6px;
  flex-shrink: 0;
}

.ds-chip {
  display: inline-block;
  background: #ffffff;
  border: 1.5px solid #c0533a;
  color: #c0533a;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
  text-decoration: none;
}

.ds-chip:hover {
  background: #c0533a;
  color: #ffffff;
  text-decoration: none;
}

/* ---- Main Content Area ---- */
.ds-main {
  padding: 56px 0;
}

.ds-section-head {
  font-family: Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #1e1a18;
  margin-bottom: 8px;
}

.ds-section-sub {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  color: #7a6e68;
  margin-bottom: 32px;
}

/* ---- 3-Column Card Grid ---- */
.ds-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.ds-card {
  background: #ffffff;
  border: 1px solid #e8dfd8;
  border-radius: 6px;
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.ds-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(192,83,58,0.12);
}

.ds-card-tag {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c0533a;
  margin-bottom: 10px;
}

.ds-card h3 {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  color: #1e1a18;
}

.ds-card h3 a {
  color: inherit;
}

.ds-card h3 a:hover {
  color: #c0533a;
  text-decoration: none;
}

.ds-card-excerpt {
  font-size: 0.9rem;
  color: #5a504a;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.ds-card-read {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #c0533a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ds-card-read:hover {
  text-decoration: underline;
}

/* ---- Spotlight Section ---- */
.ds-spotlight {
  background: #f5ede8;
  border-radius: 8px;
  padding: 44px 40px;
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.ds-spotlight-editorial h2 {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e1a18;
  margin-bottom: 16px;
  line-height: 1.3;
}

.ds-spotlight-editorial p {
  font-size: 0.97rem;
  color: #3a3330;
  margin-bottom: 14px;
  line-height: 1.75;
}

.ds-spotlight-editorial .ds-spotlight-link {
  display: inline-block;
  margin-top: 8px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #c0533a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ds-spotlight-aside h3 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8a7a72;
  border-bottom: 1px solid #ddd0c8;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.ds-spotlight-list {
  list-style: none;
  padding: 0;
}

.ds-spotlight-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e8dfd8;
  font-size: 0.9rem;
  line-height: 1.5;
}

.ds-spotlight-list li:last-child {
  border-bottom: none;
}

.ds-spotlight-list a {
  color: #1e1a18;
  font-weight: 600;
}

.ds-spotlight-list a:hover {
  color: #c0533a;
}

/* ---- Article List (inc/latest.php) ---- */
.ds-latest-section {
  padding-top: 16px;
  border-top: 2px solid #e8dfd8;
  margin-top: 8px;
}

.ds-latest-section h2 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1e1a18;
}

.ds-article-list {
  list-style: none;
  padding: 0;
}

.ds-article-list-item {
  padding: 18px 0;
  border-bottom: 1px solid #e8dfd8;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}

.ds-article-list-item:last-child {
  border-bottom: none;
}

.ds-article-list-item a {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e1a18;
  display: block;
  margin-bottom: 5px;
}

.ds-article-list-item a:hover {
  color: #c0533a;
}

.ds-article-list-excerpt {
  font-size: 0.88rem;
  color: #6a5e58;
  line-height: 1.55;
}

.ds-article-list-date {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  color: #9a8e88;
  white-space: nowrap;
  padding-top: 4px;
}

.ds-article-list-meta {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #c0533a;
  margin-bottom: 4px;
}

/* ---- Footer ---- */
.ds-footer {
  background: #1e1a18;
  color: #c8beb8;
  padding: 56px 0 32px;
  margin-top: 0;
}

.ds-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.ds-footer-col h4 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 16px;
}

.ds-footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #a09088;
}

.ds-footer-col ul {
  list-style: none;
  padding: 0;
}

.ds-footer-col ul li {
  margin-bottom: 8px;
}

.ds-footer-col ul li a {
  font-size: 0.88rem;
  color: #a09088;
}

.ds-footer-col ul li a:hover {
  color: #ffffff;
  text-decoration: none;
}

.ds-footer-brand {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.ds-footer-brand span {
  color: #c0533a;
}

.ds-footer-newsletter p {
  font-size: 0.88rem;
  color: #a09088;
  line-height: 1.65;
}

.ds-footer-email-link {
  color: #e8a090 !important;
}

.ds-footer-bottom {
  border-top: 1px solid #3a3330;
  padding-top: 20px;
  text-align: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  color: #6a5e58;
}

/* ---- Article Pages ---- */
.ds-article-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.ds-article-header {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 2px solid #e8dfd8;
}

.ds-article-breadcrumb {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  color: #8a7a72;
  margin-bottom: 16px;
}

.ds-article-breadcrumb a {
  color: #c0533a;
}

.ds-article-title {
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1e1a18;
  margin-bottom: 16px;
}

.ds-byline {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  color: #8a7a72;
}

.ds-byline-dot {
  width: 4px;
  height: 4px;
  background: #c0533a;
  border-radius: 50%;
  display: inline-block;
}

.ds-article-body {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2a2420;
}

.ds-article-body h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #1e1a18;
  margin: 44px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8dfd8;
}

.ds-article-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e1a18;
  margin: 28px 0 10px;
}

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

.ds-article-body ul,
.ds-article-body ol {
  margin: 0 0 22px 28px;
  line-height: 1.75;
}

.ds-article-body li {
  margin-bottom: 8px;
}

.ds-article-body strong {
  color: #1e1a18;
  font-weight: 700;
}

.ds-article-body blockquote {
  border-left: 4px solid #c0533a;
  margin: 32px 0;
  padding: 16px 24px;
  background: #f5ede8;
  font-style: italic;
  color: #4a3e38;
}

.ds-schema {
  display: none;
}

/* ---- About / Contact Pages ---- */
.ds-page-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.ds-page-header {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 2px solid #e8dfd8;
}

.ds-page-header h1 {
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #1e1a18;
}

.ds-page-body {
  font-family: Georgia, serif;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #2a2420;
}

.ds-page-body h2 {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 36px 0 14px;
  color: #1e1a18;
}

.ds-page-body p {
  margin-bottom: 20px;
}

.ds-contact-block {
  background: #f5ede8;
  border-left: 4px solid #c0533a;
  padding: 20px 24px;
  margin: 28px 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
}

.ds-contact-block a {
  font-weight: 700;
  color: #c0533a;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .ds-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ds-spotlight {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px;
  }

  .ds-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .ds-nav-links {
    gap: 16px;
  }

  .ds-nav-links a {
    font-size: 0.78rem;
  }

  .ds-card-grid {
    grid-template-columns: 1fr;
  }

  .ds-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ds-article-list-item {
    grid-template-columns: 1fr;
  }

  .ds-article-list-date {
    display: none;
  }
}

@media (max-width: 480px) {
  .ds-nav-brand {
    font-size: 1rem;
  }

  .ds-hero-banner {
    padding: 48px 16px 40px;
  }
}
