/* Print-specific styles for recipe detail images */
@media print {

  .header-print {

  }

  .header-print h1 {
    color: #000;
    text-align: center;
    font-family: "Satisfy", cursive;
    font-size: 72px;
    text-transform: capitalize;
  }

  /* Side-by-side layout for recipe title and image */
  .recepie_details_area .row.align-items-center {
    display: flex !important;
    flex-wrap: nowrap !important;
  }
  
  .recepie_details_area .row.align-items-center .col-xl-6,
  .recepie_details_area .row.align-items-center .col-md-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  
  .recepies_thumb img {
    max-width: 240px !important;
    height: auto !important;
    display: block;
    margin: 0 auto 1em auto;
  }
  
  /* Two-column layout for recipe ingredients */
  .recepies_text ul {
    column-count: 2;
    column-gap: 2em;
    break-inside: avoid;
  }
  
  .recepies_text ul li {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  
  /* Remove header completely in print */
  .header-area {
    display: none !important;
  }
}
/* Charlene's Cookies - Custom Warm Theme Overrides */

/* Warm color palette */
:root {
  --warm-cream: #faf6f0;
  --warm-brown: #8b6f47;
  --soft-red: #c67171;
  --deep-brown: #5d4e37;
  --light-brown: #d4b896;
  --warm-white: #fffef9;
}

/* Body and general warmth */
body {
  background-color: var(--warm-cream);
  color: #4a4035;
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
}

/* Header adjustments for warmth */
.header-area {
  background-color: var(--warm-white);
  border-bottom: 2px solid var(--light-brown);
}

/* Logo sizing */
.logo img {
  max-height: 150px;
  width: auto;
  display: block;
}

img.logo-notext {
  display: none;
}
img.logo-text {
  display: block;
}

/* Logo responsive sizing - larger on mobile */
@media (max-width: 767px) {
  .logo img {
    max-height: 200px;
  }
  img.logo-notext {
    display: block;
  }
  img.logo-text {
    display: none;
  }
}

/* Medium breakpoint - use icon logo like mobile */
@media (min-width: 768px) and (max-width: 991px) {
  img.logo-notext {
    display: block;
  }
  img.logo-text {
    display: none;
  }
}

/* Navigation */
.main-menu ul li a {
  color: var(--deep-brown) !important;
  font-weight: 500;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.main-menu ul li a:hover {
  color: var(--soft-red) !important;
}

/* Slider/Hero section */
.slider_area {
  background: linear-gradient(rgba(139, 111, 71, 0.1), rgba(139, 111, 71, 0.2)), 
              url('../img/banner/banner.png');
}

.slider_text h3 {
  color: var(--deep-brown);
  font-family: 'Georgia', serif;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

/* Recipe cards - warm and inviting */
.recepie_area .row > [class*="col-"] {
  display: flex;
  margin-bottom: 30px;
}

.single_recepie {
  background: var(--warm-white);
  border: 2px solid var(--light-brown);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(139, 111, 71, 0.15);
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.single_recepie:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(139, 111, 71, 0.25);
  border-color: var(--warm-brown);
}

.single_recepie h3 {
  color: var(--deep-brown);
  font-family: 'Georgia', serif;
  font-weight: 600;
  margin-top: 15px;
}

.single_recepie span {
  color: var(--soft-red);
  font-style: italic;
}

.single_recepie p {
  color: #6b5d52;
  flex-grow: 1;
}

/* Recipe images - softer edges */
.recepie_thumb img {
  border-radius: 50%;
  border: 3px solid var(--light-brown);
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

/* Buttons - warm and homey */
.line_btn,
.boxed-btn3 {
  background: var(--warm-brown);
  color: var(--warm-white) !important;
  border: 2px solid var(--warm-brown);
  border-radius: 6px;
  padding: 12px 30px;
  font-family: 'Georgia', serif;
  transition: all 0.3s ease;
}

.line_btn:hover,
.boxed-btn3:hover {
  background: var(--deep-brown);
  border-color: var(--deep-brown);
  color: var(--warm-white) !important;
}

/* Section titles */
.section_title h3 {
  color: var(--deep-brown);
  font-family: 'Georgia', serif;
  font-weight: 600;
}

/* Breadcrumb area */
.bradcam_area {
  background: linear-gradient(rgba(93, 78, 55, 0.7), rgba(93, 78, 55, 0.7)), 
              url('../img/banner/bradcam.png');
}

.bradcam_text h3 {
  color: var(--warm-white);
  font-family: 'Georgia', serif;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

/* Recipe details page */
.recepie_details_area {
  background-color: var(--warm-cream);
}

.recepies_info h3 {
  color: var(--deep-brown);
  font-family: 'Georgia', serif;
  font-weight: 600;
}

.recepies_text h3,
.recepies_text h4 {
  color: var(--deep-brown);
  font-family: 'Georgia', serif;
  margin-top: 25px;
  margin-bottom: 15px;
}

.recepies_text p {
  color: #4a4035;
  line-height: 1.8;
  margin-bottom: 20px;
}

.recepies_text ul li,
.recepies_text ol li {
  color: #4a4035;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Footer - warm and cozy */
.footer {
  background-color: var(--deep-brown);
}

.footer_border {
  border-color: var(--light-brown);
}

.copy_right {
  color: var(--warm-cream);
  font-family: 'Georgia', serif;
}

.copy_right a {
  color: var(--light-brown);
}

/* Recipe badges/tags */
.badge {
  background-color: var(--soft-red);
  color: var(--warm-white);
  padding: 5px 12px;
  border-radius: 4px;
  margin-right: 8px;
  font-size: 0.85em;
}

/* Latest trend area */
.latest_trand_area {
  background: var(--warm-white);
  border-top: 2px solid var(--light-brown);
  border-bottom: 2px solid var(--light-brown);
}

.trand_info h3 {
  color: var(--deep-brown);
  font-family: 'Georgia', serif;
}

.trand_info p {
  color: var(--warm-brown);
  font-style: italic;
}

/* Forms */
input[type="text"],
input[type="email"],
textarea,
.form-control {
  border: 2px solid var(--light-brown);
  border-radius: 6px;
  padding: 12px;
  background-color: var(--warm-white);
  color: #4a4035;
  font-family: 'Georgia', serif;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
.form-control:focus {
  border-color: var(--warm-brown);
  box-shadow: 0 0 8px rgba(139, 111, 71, 0.2);
}

/* Add warmth to recipe area background */
.recepie_area {
  background-color: var(--warm-cream);
  padding: 60px 0;
}

/* Soften hard edges throughout */
* {
  border-radius: inherit;
}

/* Warm accent for recipe preparation metadata */
.recepies_info p strong {
  color: var(--warm-brown);
  font-weight: 600;
}

/* Typography improvements for readability */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  color: var(--deep-brown);
}

/* Add a subtle pattern/texture feel (optional) */
.recepie_area,
.recepie_details_area {
  position: relative;
}

.recepie_area::before,
.recepie_details_area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(139, 111, 71, 0.02) 2px,
      rgba(139, 111, 71, 0.02) 4px
    );
  pointer-events: none;
}
