/* City Tasting Experiences - Food Festival Theme */
:root {
  --wine: #722f37;
  --wine-dark: #5a252b;
  --gold: #c9a227;
  --gold-light: #e5c84b;
  --cream: #faf6f0;
  --cream-dark: #f0e8dc;
  --charcoal: #2d2a26;
  --text: #2d2a26;
  --text-muted: #5c564f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--wine);
  text-decoration: none;
}

a:hover {
  color: var(--wine-dark);
  text-decoration: underline;
}

/* Header */
.site-header {
  background: var(--charcoal);
  color: var(--cream);
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo a {
  color: var(--cream);
}

.logo a:hover {
  color: var(--gold);
  text-decoration: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.5rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--cream);
  font-size: 0.9rem;
  padding: 0.4rem 0.6rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  text-decoration: none;
}

/* Dropdown for Experiences */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  padding: 0.4rem 0.6rem;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus {
  color: var(--gold);
  outline: none;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--charcoal);
  padding: 0.5rem 0;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu.is-open {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine) 50%, var(--charcoal) 100%);
  color: var(--cream);
  padding: 3rem 1.5rem;
  text-align: center;
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-tagline {
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.95;
}

.hero-credit {
  margin-top: 1rem;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Main content */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.motto {
  text-align: center;
  margin-bottom: 2.5rem;
}

.motto h2 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--wine);
  margin: 0;
}

.intro {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

@media (min-width: 600px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar {
  background: var(--cream-dark);
  padding: 1.5rem;
  border-left: 4px solid var(--gold);
}

.pillar h3 {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wine);
}

.pillar p {
  margin: 0;
  font-size: 0.95rem;
}

/* News tiles */
.news-section {
  margin: 3rem 0;
}

.news-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--wine);
  margin: 0 0 1.5rem;
}

.news-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 560px) {
  .news-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px) {
  .news-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-tile {
  background: var(--cream-dark);
  padding: 1.5rem;
  border-radius: 6px;
  border-top: 3px solid var(--gold);
  transition: box-shadow 0.2s;
}

.news-tile:hover {
  box-shadow: 0 4px 12px rgba(114, 47, 55, 0.12);
}

.news-tile .news-date {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.news-tile h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.news-tile h3 a {
  color: var(--text);
}

.news-tile h3 a:hover {
  color: var(--wine);
  text-decoration: none;
}

.news-tile p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.news-more {
  margin-top: 1.5rem;
  text-align: center;
}

.news-more a {
  font-weight: 600;
}

/* Partners */
.partners-section {
  margin: 3rem 0;
}

.partners-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--wine);
  margin: 0 0 1rem;
}

.partners-intro,
.partners-outro {
  margin: 0 0 1.5rem;
  line-height: 1.7;
}

.partners-outro {
  margin-top: 1.5rem;
  text-align: center;
}

.partners-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 560px) {
  .partners-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px) {
  .partners-tiles {
    grid-template-columns: repeat(4, 1fr);
  }
}

.partner-tile {
  background: var(--cream-dark);
  padding: 1.5rem;
  border-radius: 6px;
  border-top: 3px solid var(--gold);
  transition: box-shadow 0.2s;
}

.partner-tile:hover {
  box-shadow: 0 4px 12px rgba(114, 47, 55, 0.12);
}

.partner-tile .partner-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.partner-tile h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.partner-tile h3 a {
  color: var(--text);
}

.partner-tile h3 a:hover {
  color: var(--wine);
  text-decoration: none;
}

.partner-tile p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Newsletter */
.newsletter {
  background: var(--charcoal);
  color: var(--cream);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.newsletter-inner {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter h3 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form input[type="email"] {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: var(--cream);
  border-radius: 4px;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.6);
}

.newsletter-form label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
}

.newsletter-form button:hover {
  background: var(--gold-light);
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 2rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--cream);
}

.footer-links a:hover {
  color: var(--gold);
  text-decoration: none;
}

.footer-legal {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-top: 1.5rem;
  line-height: 1.6;
}

.footer-hashtag {
  margin: 0.5rem 0;
}

/* Mobile menu */
.burger-btn {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
}

@media (max-width: 640px) {
  .burger-btn {
    display: flex;
  }
  
  .main-nav {
    display: none;
    width: 100%;
  }
  
  .main-nav.is-open {
    display: flex;
    flex-direction: column;
  }
}

/* Page content */
.page-content h2 {
  color: var(--wine);
  margin-top: 2rem;
}

/* News articles (full page) */
.news-articles {
  max-width: 720px;
}

.news-article {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--cream-dark);
}

.news-article:last-of-type {
  border-bottom: none;
}

.news-article .news-date {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.news-article h2 {
  font-size: 1.4rem;
  margin: 0 0 1rem;
  color: var(--charcoal);
}

.news-article p {
  margin: 0 0 1rem;
  line-height: 1.7;
}

.news-article p:last-child {
  margin-bottom: 0;
}

.news-contact {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

.news-contact h2 {
  margin-bottom: 0.5rem;
}
