body {
    font-family: 'Playfair Display', serif;
    color: #1f2f26;  /* deep forest green */
}

html, body {
  margin: 0;
  padding: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0.3)
    ),
    url('../images/goldbackground.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* Links */
a {
  color: #1f2f26;
}

a:hover {
  color: #dbd798;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-transform: uppercase;
}


/* Classic Impressions - Minimal Premium Header */
.ci-navbar {
    top: 0;
    z-index: 1030;
    background: #022902;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(31,47,38,0.12);
    padding: 1.05rem 0;
}

.nav-logo {
    width: 50px;
    height: auto;
    margin-right: 8px;
    vertical-align: middle;
    filter: brightness(5);
}

.ci-brand {
    font-family: "Playfair Display", serif;
    font-size: 1.55rem;
    letter-spacing: 0.4px;
    color: #968f2b;
    text-transform: uppercase;
}

.ci-brand:hover {
    color: #dbd798;
}

.ci-toplink {
    color: #968f2b;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .9rem;
    opacity: 0.9;
}

.ci-toplink:hover {
    opacity: 1;
    color: #dbd798;
}

.ci-cart {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #968f2b;
}

.ci-cart-count {
    font-size: .9rem;
}

.ci-cart:hover {
    color: #dbd798;
}

.ci-menu-btn {
    border: 1px solid #968f2b;
    background: transparent;
    color: #968f2b;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .85rem;
    padding: .45rem .9rem;
    border-radius: 0;
    transition: all 0.25s ease;
}

.ci-menu-btn:hover {
    background: #dbd798;
    color: #0f0f0f;
}

/* Offcanvas (Menu panel) */
.ci-offcanvas {
    background: #022902d2;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    color: #968f2b;
}

.ci-offcanvas-title {
    font-family: "Playfair Display", serif;
    color:  #968f2b;
}

.ci-menu-link {
    color: #968f2b;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .9rem;
    padding: .4rem 0;
}

.ci-menu-link:hover {
    color: #dbd798;
}

.ci-divider {
    border-color: rgba(0, 0, 0, 0.12);
    margin: 1rem 0;
}

.ci-hello {
    color: rgba(31, 47, 38, 0.8);
    margin-bottom: .5rem;
}

.ci-menu-cta {
    border: 1px solid #968f2b;
    display: inline-block;
    padding: .45rem .9rem !important;
    width: fit-content;
}
/* Shared Section cards and buttons and other styles  */
.section-card {
  background: #dbcda9d5;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
}

.btn-custom {
  background-color: #022902;
  color: #968f2b;
  border: 1px solid #968f2b;
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.btn-custom:hover {
  background-color: #968f2b;
  color: #022902;
}

/* ── Toast Messages ───────────────────────────────── */
.ci-toast {
  background: #022902;
  color: #968f2b;
  border: 1px solid #968f2b !important;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.03em;
  min-width: 280px;
}

/* Classic Impressions Footer */
.ci-footer {
  background: #022902; /* slightly deeper green than body */
  padding: 3rem 3rem 1.5rem;
  color: #968f2b;
  border-top: 1px solid rgba(31,47,38,0.12);
}

.footer-logo {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
    filter: brightness(5);
}

/* Grid layout */
.ci-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
}

/* Brand block */
.ci-footer-brand h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.ci-footer-brand p {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Column headings */
.ci-footer-col h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

/* Links */
.ci-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ci-footer li {
  margin-bottom: 0.4rem;
}

.ci-footer a {
  color: #968f2b;
  text-decoration: none;
  opacity: 0.85;
}

.ci-footer a:hover {
  opacity: 1;
  text-decoration: underline;
  color:#dbd798;
}

/* Social list spacing */
.ci-social li {
  margin-bottom: 0.35rem;
}

/* Bottom bar */
.ci-footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(31,47,38,0.12);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .ci-footer {
    padding: 2.5rem 0 1.25rem;
  }

  .ci-footer-grid {
    gap: 2rem;
  }
}
