:root {
  --bg-primary: #1c130c;
  --bg-secondary: #241a11;
  --bg-card: #2b1f14;
  --oak-light: #d8a565;
  --oak-mid: #a9713f;
  --oak-dark: #6b4423;
  --oak-gradient: linear-gradient(135deg, #e8c088 0%, #b5793f 55%, #7a4d24 100%);
  --oak-hover: #e0b371;
  --text-primary: #f3e6d3;
  --text-secondary: #b8a189;
  --border-color: #3f2d1c;
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-primary);
  background-image:
    repeating-linear-gradient(90deg, rgba(0,0,0,0.12) 0px, rgba(0,0,0,0) 2px, rgba(0,0,0,0) 34px, rgba(0,0,0,0.10) 36px),
    linear-gradient(180deg, #1c130c 0%, #1a1109 100%);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-heading);
}

header {
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: rgba(28, 19, 12, 0.95);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--text-primary);
  text-decoration: none;
}

.logo span {
  background: var(--oak-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  margin-left: 2.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

nav a:hover, nav a.cart-link {
  color: var(--oak-light);
}

/* SINGLE CLEAN HERO BLOCK */
.hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background-image: url(modern-styled-entryway.jpg); /* Make sure this filename matches your folder EXACTLY */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10rem 2rem;
  border-bottom: 1px solid var(--border-color);
}

/* LIGHTER OVERLAY SO IMAGE SHOWS */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(28,19,12,0.3) 0%, rgba(20,13,8,0.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.sub-heading {
  color: var(--oak-light);
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: 3.4rem;
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.btn-oak {
  display: inline-block;
  background: var(--oak-gradient);
  color: #241608;
  padding: 1rem 2.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-oak:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(184, 130, 60, 0.55);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-header {
  margin-bottom: 3rem;
  border-left: 2px solid var(--oak-mid);
  padding-left: 1.2rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 500;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 0.3rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.card:hover {
  border-color: var(--oak-mid);
  transform: translateY(-4px);
}

.card-image-wrap {
  padding: 1rem;
}

.card-img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  background-color: #221708;
  border: 1px solid var(--border-color);
}

.card-details {
  padding: 0 1.5rem 1.5rem;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.card-category {
  color: var(--text-secondary);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-price {
  color: var(--oak-light);
  font-size: 1.2rem;
  font-weight: 600;
}

.card-btn {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--oak-mid);
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

.card-btn:hover {
  background: var(--oak-gradient);
  color: #241608;
  border-color: transparent;
}

.decor-banner {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  background-color: var(--bg-secondary);
  background-image: linear-gradient(180deg, rgba(28,19,12,0.65), rgba(28,19,12,0.85));
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.decor-banner-inner {
  max-width: 640px;
  margin: 0 auto;
}

.decor-banner h2 {
  font-size: 2.2rem;
  font-weight: 500;
  margin: 0.5rem 0 1rem;
}

.decor-banner p {
  color: var(--text-secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 250px;
}

.gallery-item.gallery-large {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(20, 13, 8, 0.9));
  color: var(--text-primary);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(216, 165, 101, 0.3);
}

footer {
  border-top: 1px solid var(--border-color);
  padding: 3rem 2rem;
  text-align: center;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.footer-logo span {
  color: var(--oak-light);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#productGrid .card {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* Compact Reservation Form Styling */
.reservation-section {
  padding: 30px 15px;
  background-color: #121110;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(139, 90, 43, 0.3);
}

.form-container {
  width: 100%;
  max-width: 400px;
  background: #1a1816;
  padding: 20px 22px;
  border-radius: 8px;
  border: 1px solid rgba(139, 90, 43, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  margin: 0 auto;
}

.form-title {
  color: #c48b46;
  font-family: serif;
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 4px;
}

.form-subtitle {
  color: #a09a93;
  font-size: 0.8rem;
  text-align: center;
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.form-group label {
  color: #e5e0d8;
  font-size: 0.75rem;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px 10px;
  background: #0d0c0b;
  border: 1px solid #333;
  border-radius: 4px;
  color: #fff;
  font-size: 0.85rem;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #8b5a2b;
  box-shadow: 0 0 6px rgba(139, 90, 43, 0.4);
}

.btn-submit {
  width: 100%;
  padding: 10px;
  background: #8b5a2b;
  color: #fff;
  font-weight: bold;
  font-size: 0.85rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s ease, transform 0.1s ease;
  margin-top: 5px;
}

.btn-submit:hover {
  background: #a06832;
  transform: translateY(-1px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 60px 15px 40px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .gallery-item.gallery-large {
    grid-column: span 1;
  }
}

/* Fix massive social SVGs / images */
footer svg,
footer img {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  object-fit: contain;
  display: inline-block;
  margin: 0 8px;
}

footer svg, 
footer img, 
.social-icons, 
.social-links {
  display: none !important;
}