/*
 * Akiko's Sake – CSS Stylesheet
 *
 * This stylesheet defines a simple dark‑themed design inspired by Japanese
 * aesthetics. A rich, black background paired with warm gold accents
 * invokes a sense of understated elegance. Text is set in a serif font to
 * recall the printed labels of traditional sake bottles. Sections are
 * spaced generously to aid readability.
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Source+Sans+3:wght@300;400;600&display=swap');

html {
  box-sizing: border-box;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  background-color: #0e0e0e;
  color: #e6d8c3;
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.6;
}

a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #f2c861;
}

/* Pickup Notice Styling */
.pickup-notice {
  background: linear-gradient(135deg, #2d1a0b, #3d2b1a);
  border: 1px solid #d4af37;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.pickup-notice p {
  margin: 0.5rem 0;
}

/* Pickup Info Page Styling */
.pickup-info-box {
  background-color: rgba(212, 175, 55, 0.1);
  border-left: 4px solid #d4af37;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 4px;
}

.pickup-process ol {
  counter-reset: step-counter;
  list-style: none;
  padding-left: 0;
}

.pickup-process li {
  counter-increment: step-counter;
  margin: 1rem 0;
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  position: relative;
  padding-left: 3rem;
}

.pickup-process li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  background-color: #d4af37;
  color: #0e0e0e;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.contact-section, .bitcoin-payment, .pickup-advantages, .legal-note {
  margin: 2rem 0;
}

.btcmap-note {
  background-color: rgba(255, 165, 0, 0.1);
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 4px;
  padding: 0.75rem;
  margin: 1rem 0;
}

header {
  background-color: rgba(0, 0, 0, 0.8);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #2b1e10;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #d4af37;
}

.nav-logo a {
  color: inherit;
  text-decoration: none;
}

.nav-logo a:hover {
  color: #f2c861;
}

.nav-links a {
  margin-left: 1rem;
  font-weight: 600;
}

.hero {
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f3e4c7;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #f0e7dc;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

section {
  margin-bottom: 3rem;
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #d4af37;
}

/* Card grid for the product overview on the home page */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: #1a1a1a;
  border: 1px solid #2b1e10;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #f0e7dc;
}

.card p {
  font-size: 0.95rem;
  flex-grow: 1;
}

.card .button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid #d4af37;
  border-radius: 4px;
  color: #d4af37;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.card .button:hover {
  background-color: #d4af37;
  color: #0e0e0e;
}

.info-box {
  background-color: #1a1a1a;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #2b1e10;
  margin-top: 1rem;
}

footer {
  background-color: #0e0e0e;
  border-top: 1px solid #2b1e10;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #a89677;
}

footer a {
  margin: 0 0.5rem;
  color: #d4af37;
  font-weight: 600;
}

/* Product page styles */
.product-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #111111;
  padding: 2rem 1rem;
  border-bottom: 1px solid #2b1e10;
}

.product-hero img {
  width: 240px;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.product-details {
  max-width: 800px;
  margin: 2rem auto;
}

.product-details h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #f0e7dc;
}

.product-details .meta {
  font-size: 0.9rem;
  color: #cbbba0;
  margin-bottom: 1rem;
}

.product-details p {
  margin-bottom: 1rem;
}

.product-details table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.product-details table th,
.product-details table td {
  border: 1px solid #2b1e10;
  padding: 0.5rem;
  text-align: left;
}

.product-details table th {
  background-color: #1a1a1a;
  color: #d4af37;
}

.product-details table td {
  background-color: #131313;
}

.cta-button {
  display: inline-block;
  margin: 1.5rem 0;
  padding: 0.75rem 1.5rem;
  border: 1px solid #d4af37;
  border-radius: 4px;
  color: #d4af37;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cta-button:hover {
  background-color: #d4af37;
  color: #0e0e0e;
}

/* Shipping notice styling */
.shipping-notice {
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  padding: 1rem;
  margin: 1.5rem 0;
}

.shipping-notice p {
  margin: 0 0 0.5rem 0;
  color: #f2c861;
}

.shipping-notice p:last-child {
  margin-bottom: 0;
}

.shipping-reason {
  font-size: 0.9rem;
  color: #c9b886 !important;
  font-style: italic;
}

/* Utility classes */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.content-wrapper {
  padding: 1rem;
}