﻿/* Global Styles */
body {
  margin: 0;
  font-family: 'Merriweather', serif; /* Soothing, readable, sacred tone */
  background-color: #fdfaf5; /* Parchment-like base */
  color: #3b2f2f; /* Deep brown for text */
  overflow-x: hidden;
}

.logo-link:hover .logo-text {
  text-decoration: underline;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.logo-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-icon {
  width: 120px;
  height: 120px;
  margin-bottom: -1.4rem; /* pulls text closer to the logo */
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.0rem;
  color: #c5a94f; /* refined gold tone */
  letter-spacing: 0.4px;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.95);
  margin-top: 0; /* removes default spacing */
  padding-bottom:15px;
}

/* Header */
.site-header {
  background-color: transparent;
  padding: 0 3.5rem 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Panel 1 */
.panel-intro {
  background-image: url('/images/misty-forest.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  min-height: 680px; /* reduced from 900px */
  padding: 1rem 1rem 2rem 1rem;
  color: #f5f0e6;
  text-align: center;
}

.panel-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.panel-image img {
  width: 350px;
  height: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.panel-intro .panel-text {
   max-width: 480px;
   font-size: 1rem;
   line-height: 1.6;
   background-color: rgba(30, 20, 10, 0.6);
   padding: 1.5rem;
   border-radius: 8px;
   color: #f5f0e6;
   text-shadow: 0 1px 2px rgba(0,0,0,0.6);
 }

.image-title {
  display: block;
  margin: 0 auto 0.75rem auto;
  max-width: 100%;
  height: auto;
}

.subtitle {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  color: #e8d8c3;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

.panel-text em {
  color: #f0e6d2;
  font-size: 0.7rem;
}

.panel-text strong {
  color: #fff8e7;
}

/* Panel 2: lighter, airy, minimal */
.panel-purchase {
  background-color: #1C150D;
  padding: 3rem 0rem 3rem;
  position: relative;
}


/* hairline separators to gently define the section without weight */
.panel-purchase::before,
.panel-purchase::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1100px);
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(197,169,79,0) 0%,
    rgba(197,169,79,0.35) 15%,
    rgba(197,169,79,0.35) 85%,
    rgba(197,169,79,0) 100%
  );
}

.panel-purchase::before { top: 0; }
.panel-purchase::after  { bottom: 0; }

.panel-purchase .panel-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0rem;
 }

/* Panel content container */
.panel-purchase .panel-text {
  background-color: #efe8d4;
  color: #3b2f2f;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 4px 4px 38px rgba(0, 0, 0, 0.8);
border: 1px solid rgba(197,169,79,0.2);
}

/* title: elegant, not loud */
.panel-purchase h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #5a2a27;                       /* burgundy accent */
  letter-spacing: 0.2px;
  margin: 0 0 1rem 0;
}


/* subtle gold rule under the heading for rhythm */
.panel-purchase h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin: 0.6rem auto 1rem;
  background: linear-gradient(to right, transparent, #c5a94f, transparent);
  opacity: 0.6;
}

.panel-purchase p {
  display: block;          /* makes the strong act like a heading */
  margin: 0.0rem 0;
}

/* simple, elegant bullet list — no boxes, no white bars */
.panel-purchase ul {
  list-style: none;
  padding: 0;
  margin: 1rem auto 0;
  max-width: 640px;
  text-align: left;
}

.panel-purchase ul li {
  position: relative;
  margin: 0.4rem 0;
  padding-left: 1.1rem;
}

/* small gold dot as bullet */
.panel-purchase ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c5a94f;                  /* antique gold */
  box-shadow: 0 0 0 1px rgba(197,169,79,0.35);
}

/* gentle emphasis colors */
.panel-purchase .panel-text strong {
  color: #5a2a27;                        /* burgundy for emphasis */
  font-weight: 600;
}

.panel-purchase .kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.2rem;
  color: #c5a94f;   /* match bullet gold */
  margin: 0 0 0.4rem 0;
}

/* Panel 3 */
.panel-details {
  background: 
    linear-gradient(rgba(30,20,10,0.6), rgba(30,20,10,0.6)),  /* overlay */
    url('../images/LastSupper.png') center/cover no-repeat;
  padding: 4rem 1rem;
  text-align: center;
  color: #fdfaf5;
}

.panel-overlay {
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(30, 20, 10, 0.6);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.details-image {
  max-width: 60%;
  height: auto;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.details-text p {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #f5f0e6;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.purchase-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1em;
}

.purchase-list {
  margin: 0;
  padding: 0;
  list-style: disc inside;
}

/* Button styling */
.purchase-button {
  background-color: #c5a94f;
  color: #1C150D;
  border-radius: 4px;
  padding: 12px 16px;
  font-weight: bold;
  text-align: center;
  display: block;
  margin: 1rem auto;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.purchase-button:hover {
  background-color: #d6bb60;
}

.contact {
  padding: 2em 1em;
  background-color: #3b2a1a; /* matches your site's dark brown */
  color: #fff;
  text-align: center;
}

.contact-panel {
  max-width: 800px;
  margin: 0 auto;
}

.contact-title {
  font-size: 1.8em;
  margin-bottom: 0.2em;
  font-family: 'Playfair Display', serif;
}

.contact-subtitle {
  font-size: 1em;
  margin-bottom: 1em;
  font-family: 'Merriweather', serif;
}

.form-wrapper {
  max-height: 443px;
  overflow: hidden;
  background-color: #efe8d4;
  box-shadow: 4px 8px 32px rgba(0, 0, 0, 0.9);
  padding: 1.0em;
  margin: 0 auto;
  border-radius: 8px;

}

/* SITE FOOTER */
.site-footer {
  position: relative;              /* allows absolute positioning inside */
  background-color: #1C150D;
  color: #fdfaf5;
  text-align: center;              /* keeps "Find us on" and icons centered */
  padding: 1.5rem 0;
  font-family: 'Merriweather', serif;
  padding-bottom: .5rem; /* adds space below footer */

}

.site-footer p {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
}

.social-link {
  display: inline-block;
}


.social-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}


/* Back home button lives in its own corner */
.home-link {
  position: absolute;
  right: 1rem;                     /* or left: 1rem if you prefer */
  bottom: 1rem;                    /* sits at the bottom edge */
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  color: #fdfaf5;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.85;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.home-link:hover {
  background: rgba(255,255,255,0.1);
  opacity: 1;
}