/* ----------------------------------------------------------
   FONTS & GLOBAL STYLES
---------------------------------------------------------- */

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Accent colors */
:root {
  --cream: #f7f3e9;
  --border-soft: #e5dfd4;
  --text-dark: #2e2e2e;
  --text-light: #555;
  --btn-color: #5c3b28; /* Burgundy brown */
  --btn-hover: #4b2f21;
}


/* ----------------------------------------------------------
   TYPOGRAPHY
---------------------------------------------------------- */

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  margin-top: 0;
}

h1 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

p, li {
  font-size: 1.08rem;
}

.section-intro {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}


/* ----------------------------------------------------------
   HEADER
---------------------------------------------------------- */

.site-header {
  background: #ffffff;
  padding: 1.8rem 0 1.4rem;
  border-bottom: 1px solid var(--border-soft);
}

.logo-wrapper {
  text-align: center;
}

.logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 0.8rem;
}

.main-nav {
  text-align: center;
  margin-top: 0.6rem;
}

.main-nav a {
  color: var(--text-dark);
  text-decoration: none;
  margin: 0 1.1rem;
  font-size: 1.05rem;
  font-weight: 400;
}

.main-nav a:hover {
  text-decoration: underline;
}


/* ----------------------------------------------------------
   SECTIONS & LAYOUT
---------------------------------------------------------- */

.section {
  padding: 4.5rem 0;
  background: #ffffff;
}

.section-alt {
  background: var(--cream);
  padding: 4.5rem 0;
}

.container {
  width: 90%;
  max-width: 980px;
  margin: auto;
  text-align: left;
}


/* ----------------------------------------------------------
   HOME SECTION
---------------------------------------------------------- */

.section-home {
  text-align: center;
  padding: 6rem 0 5rem;
}

.section-home .subtitle {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 1.8rem;
  color: #6b5b4b;
}

.section-home p {
  max-width: 700px;
  margin: 1rem auto 2.2rem;
  font-size: 1.2rem;
}


/* ----------------------------------------------------------
   BUTTONS
---------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  border-radius: 4px;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s ease;
}

.primary-btn {
  background-color: var(--btn-color);
  color: #fff;
}

.primary-btn:hover {
  background-color: var(--btn-hover);
}


/* ----------------------------------------------------------
   GRID & COLUMN LAYOUTS
---------------------------------------------------------- */

.columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.2rem;
}

@media (max-width: 800px) {
  .columns {
    grid-template-columns: 1fr;
  }
}


/* ----------------------------------------------------------
   WINE CARDS
---------------------------------------------------------- */

.wine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 900px) {
  .wine-grid {
    grid-template-columns: 1fr;
  }
}

.wine-card {
  background: #fff;
  padding: 1.8rem;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s ease;
  position: relative;   /* ← THIS IS THE MISSING LINE */
}


.wine-card:hover {
  transform: translateY(-4px);
}

/* Double-width featured wine card */
.wine-card-wide {
  grid-column: span 2;
}

/* Note */
.special-note {
  background: #f8f3e9;
  padding: 0.9rem 1.2rem;
  border-left: 4px solid #c7a76c;
  border-radius: 6px;
  margin: 1.2rem 0;
  color: #4c3f2f;
  font-size: 0.95rem;
  line-height: 1.55;
  font-style: italic;
}

/* Gold circular premium badge */
.wine-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #c7a76c;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 0.70rem;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  text-align: center;
  line-height: 0.9rem;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wine-photo {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  margin-bottom: 1.2rem;
  border-radius: 6px;
}

.wine-region {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.wine-grapes {
  color: #444;
  font-size: 0.95rem;
  margin-top: -0.4rem;
  margin-bottom: 0.9rem;
  font-style: italic;
}


/* ----------------------------------------------------------
   HIGHLIGHT BOXES
---------------------------------------------------------- */

.highlight-box {
  background: #fff;
  padding: 1.6rem 2rem;
  border-left: 4px solid var(--btn-color);
  border-radius: 6px;
  font-size: 1.15rem;
  line-height: 1.6;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}


/* ----------------------------------------------------------
   LISTS
---------------------------------------------------------- */

ul, ol {
  margin-left: 1.3rem;
}


/* ----------------------------------------------------------
   FINE PRINT
---------------------------------------------------------- */

.fine-print {
  margin-top: 2rem;
  font-size: 0.93rem;
  color: #777;
}


/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */

.site-footer {
  background: #f0ece4;
  padding: 3rem 0;
  margin-top: 3rem;
  border-top: 1px solid var(--border-soft);
}

.footer-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-content img {
  max-width: 120px;
}

.footer-text p {
  margin: 0.3rem 0;
  font-size: 1rem;
}

.footer-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 800px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}








