/* --- GLOBAL STYLES & RESET --- */
* { box-sizing: border-box; }

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0; 
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed; inset: 0;
    background: url('img_flowerbee.jpg') no-repeat center;
    background-size: 50%; 
    opacity: 0.25;
    z-index: -1;
}

/* --- TOP BAR & FOOTER --- */
.top-bar, footer {
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    width: 100%;
    padding: 12px 0;
}

main { flex: 1; padding: 20px 0; z-index: 1; }

.content-block {
    max-width: 800px; 
    width: 90%;
    margin: 0 auto;
    text-align: left;
}

/* --- HAMBURGER STORE BUTTON (Updated for Visibility) --- */
.shop-hamburger-btn {
    position: fixed;
    top: 17px; 
    right: 20px; 
    z-index: 2000; 
    background-color: #E05C14; /* Brand Orange */
    border: none;
    border-radius: 12px;
    width: 65px;
    height: 65px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    
    /* New Visibility Rules */
    opacity: 0; 
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.3s ease; /* Fade-in animation */
}

.hamburger-icon .bar {
    width: 28px;
    height: 3px;
    background-color: white;
    margin: 2px 0;
}

.shop-text {
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* --- SHOP DRAWER --- */
.shop-drawer {
    position: fixed;
    top: 0; right: -320px;
    width: 300px; height: 100%;
    background-color: #fffdf5;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    transition: right 0.3s ease;
    z-index: 10000;
}

.shop-drawer.active { right: 0; }

/* --- SHOP DRAWER HEADER (Shortened Height) --- */
.drawer-header {
    background-color: #5d6d3e; /* Olive */
    color: white; 
    padding: 10px 18px; /* Reduced vertical padding from 18px to 10px */
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.close-btn { background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }

.drawer-links { list-style: none; padding: 20px; margin: 0; }
.drawer-links li { margin-bottom: 15px; }
.drawer-links a { text-decoration: none; color: #333; font-weight: bold; display: block; }

.drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    display: none; z-index: 9998;
}
.drawer-overlay.active { display: block; }

/* --- SOCIAL BUTTONS FIX --- */
.social-table img {
    width: 32px !important;
    height: 32px !important;
    object-fit: contain;
}

/* --- BACK TO TOP --- */
.back-to-top-btn {
    position: fixed; bottom: 20px; right: 20px;
    z-index: 1999; background-color: #E05C14;
    color: white; border: none; border-radius: 50%;
    width: 45px; height: 45px; display: flex;
    align-items: center; justify-content: center;
    transition: opacity 0.3s; opacity: 0; pointer-events: none;
}

/* Fix for disappearing list styles */
.no-bullets {
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.store-button {
  display: inline-block;
  /* Reduced padding for a sleeker, more balanced look */
  padding: 0.6rem 1.2rem; 
  background: #E05C14;
  color: white;
  text-decoration: none;
  /* Matches standard body text size for a seamless flow */
  font-size: 1rem; 
  border-radius: 5px;
  /* Adds a small gap between the two buttons */
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  transition: background 0.3s ease;
}

.store-button:hover {
  background: #c97f00;
}

/* Email Link Color Match */
.hero a[href^="mailto:"], a[href^="tel:"] {
    color: #E05C14; 
    font-weight: bold;
    text-decoration: none;
}
.hero a[href^="mailto:"]:hover, a[href^="tel:"]:hover {
    text-decoration: underline;
}

.content-card {
  background-color: rgba(252, 249, 242, 0.95); /* Vanilla Cream with 95% opacity */
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
  border-left: 5px solid #2D4028; /* A nice forest green accent line */
  box-shadow: 0 8px 20px rgba(0,0,0,0.1); /* Lifts the text off the background */
}

h3 {
  color: #2D4028; /* Forest Green */
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
}

p {
  color: #333333; /* Dark Charcoal */
  line-height: 1.6;
  font-size: 1.1rem;
}

/* The Card Container */
.content-card {
    background-color: rgba(252, 249, 242, 0.95); /* Vanilla Cream with high opacity */
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 6px solid #2D4028; /* Forest Green accent line */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Subtle shadow for depth */
    text-align: left; /* Keeps the Q&A feeling natural */
}

/* Question Styling */
.content-card h3 {
    color: #2D4028;
    margin-top: 0;
    font-size: 1.3rem;
    font-family: 'Merriweather', serif; /* Or your chosen Serif font */
}

/* Answer Styling */
.content-card p {
    color: #333333;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Clean up the Horizontal Rules */
hr {
    border: 0;
    height: 1px;
    background: transparent;
    margin: 40px 0;
}
