/******************************************************* 
 * style.css
 * 
 * Feminine, pastel design with circles/mandala motifs.
 * 
 * Key colors:
 *   - Primary Magenta: #751e48
 *   - Hover Magenta:   #7b005e
 *   - Light BG:        #fffafc (with a subtle pattern)
 *
 * Font: "Karla" or default sans-serif
 * 
 * Inspired by your reference screenshots + instructions.
 *******************************************************/

/* 1. GLOBAL RESET & BOX SIZING */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, h3 {
  text-align: center;
  color: #e7cc87;
  font-style: italic;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  text-align: center !important;
}

.contact-img {
  max-width: 280px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* 2. BODY & GLOBAL STYLES */
body {
  font-family: "Karla", Arial, sans-serif;
  color: #3d3d3d;
  line-height: 1.6;
  background: #fffafc
    url("https://via.placeholder.com/1200x1200/fffafc/ffcce0?text=Mandala+Pattern") repeat;
  background-size: 600px 600px; /* or 'cover' if you want a single large pattern */
}

/* 3. LINKS & INTERACTIVE ELEMENTS */
a {
  color: #751e48;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
a:hover,
a:focus,
a:active {
  color: #7b005e;
}

/* Buttons (for .button, .btn, input[type=submit], etc.) */
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.button,
.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  color: #000000;
  border: 3px solid #e7cc87;
  border-radius: 4px;
  background: transparent;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
button:hover,
.button:hover,
.btn:hover,
button:focus,
.button:focus,
.btn:focus {
  color: #751e48;
  border-color: #751e48;
}
.button.button-primary,
.btn.btn-primary,
input[type="submit"].button-primary {
  background-color: #751e48;
  color: #fff;
  border: none;
}
.button.button-primary:hover,
.btn.btn-primary:hover {
  background-color: #751e48;
  color: #fff;
  border: none;
}

/* ===== Sticky bottom button ===== */
.book-session-btn {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;

  background-color: #e1b578;  /* Auriu deschis */
  color: #333;
  font-weight: 600;
  font-style: italic;

  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;

  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.book-session-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

.book-session-btn:hover {
  background-color: #d1b46a;  /* Auriu mai intens */
  color: white;
}

/* 4. TOP BAR & HEADER */
.top-bar {
  background-color: #751e48;
  color: #fff;
  padding: 0.5rem 0;
  text-align: center;
}
.top-bar-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.top-bar .site-description {
  font-size: 0.9rem;
  font-weight: 400;
}

.site-header {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

/* 5. STICKY WRAPPER (if used) */
.sticky-wrapper {
  background-color: #fff; /* ensures top part is white */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 6. SITE BRANDING */
.site-branding-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
}
.site-branding {
  display: flex;
  align-items: center;
}
.site-branding .custom-logo-link img {
    max-height: 80px; /* 3x bigger than 60px */
    margin-right: 1rem;
    color: #333;
}
.site-title a {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
}
.site-title a:hover {
  color: #751e48;
}


.alert-success {
  background: linear-gradient(135deg, #751e48, #d44d70);
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  max-width: 600px;
  margin: 2rem auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#gdpr-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #751e48;
  color: #fff;
  padding: 1rem 1.5rem;
  text-align: center;
  z-index: 9999;
  display: none;
  transition: opacity 0.5s ease-out;
  font-size: 1rem;
}
#gdpr-banner span {
  display: block;
  margin-bottom: 0.5rem;
}
#gdpr-banner button {
  margin-top: 0.5rem;
}

/* Mobile adjustments */
@media (max-width: 576px) {
  #gdpr-banner {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  #gdpr-banner span {
    font-size: 0.9rem;
  }
  #gdpr-banner button {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }
}

/* 7. MAIN NAVIGATION */
ul {
  margin: 0;                  /* remove default margin if desired */
  padding-left: 1.5rem;       /* indent the bullets slightly */
  list-style-position: inside;/* bullets are closer to text */
}

ul li {
  margin-bottom: 0.5rem;      /* reduce spacing between list items */
}

/* 1) Distinguish sections with a bottom border and spacing */
section {
  padding-bottom: 2rem;       /* space inside the section */
  margin-bottom: 2rem;        /* space below the section */
  border-bottom: 1px solid #ccc; /* light gray line to separate sections */
}

/* (Optional) Remove the border from the last section if desired */
section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* 2) Provide additional spacing below “Learn More” (or similar) buttons */
.btn-link {
  margin-bottom: 2rem;        /* adds extra gap after the button */
}

.main-navigation {
  position: relative;
}
.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.main-navigation ul li {
  position: relative;
}
.main-navigation ul li a {
  color: #333;
  font-weight: 800;
  text-transform: none; /* or uppercase if you prefer */
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.main-navigation ul li a:hover,
.main-navigation ul li a:focus {
  color: #751e48;
  border-bottom: 2px solid #751e48;
}
.menu-toggle {
  display: none; /* hidden by default, for mobile only */
}
/* Mobile nav styles */
@media (max-width: 768px) {
    .main-navigation ul {
      flex-direction: column;
      display: none; /* collapsed by default */
    }
    .main-navigation ul.show {
      display: flex; /* toggled via JS */
    }
    .menu-toggle {
      display: inline-block;
      background: none;
      color: #751e48;
      border: 2px solid #751e48;
      padding: 0.4rem 0.75rem;
      border-radius: 4px;
      cursor: pointer;
      font-weight: 500; /* optional for a bolder look */
    }
    .menu-toggle:hover {
      color: #7b005e;
      border-color: #7b005e;
    }
  }
  
/*******************************************************
 * HERO SECTION: BIGGER TEXT, MORE SPACING
 *******************************************************/


/* Remove or ignore previous .size-karuna-hero rules */

/* 9. CONTENT AREA */
#content {
  background: #fffafc;
}
.content-area {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  max-width: 1200px;
}
.site-main {
  width: 70%;
  padding: 2rem 1rem;
}
.widget-area {
  width: 30%;
  padding: 2rem 1rem;
}
@media (max-width: 992px) {
  .content-area {
    flex-direction: column;
  }
  .site-main,
  .widget-area {
    width: 100%;
  }
}

/* 10. ENTRY CONTENT & HEADINGS — UPDATED */
.entry-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  
  .entry-header .entry-title {
    font-size: 2.8rem;
    text-align: center;
    margin: 2rem 0 1rem;
    font-weight: 700;
    color: #333;
  }
  
  .entry-content h2,
  .entry-content h3,
  .entry-content h4 {
    font-size: 2rem;
    color: #5b5b5b;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
    text-align: left;
  }
  
  .entry-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    color: #3d3d3d;
  }
  
  .entry-content p strong {
    color: #751e48;
  }
  
  blockquote.blockquote {
    font-size: 1.3rem;
    padding-left: 1.5rem;
    border-left-width: 5px;
    margin: 2rem 0;
  }
  

/* 11. BLOCKQUOTE / TESTIMONIALS */
blockquote {
  border-left: 4px solid #751e48;
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
}
blockquote footer {
  color: #999;
  font-weight: 700;
  margin-top: 0.5rem;
}

/* 12. SIDEBAR WIDGETS */
.widget-area .widget {
  margin-bottom: 2rem;
}
.widget-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #751e48;
  margin-bottom: 0.5rem;
}
.round-img img {
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 13. FOOTER */
.site-footer {
  background-color: #751e48;
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-widgets {
  padding: 2rem 0;
}
.footer-widgets-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-widgets .widget-area {
  flex: 1;
  min-width: 250px;
}
.footer-widgets .widget h2,
.footer-widgets .widget-title {
  color: #fff;
}
.footer-widgets .textwidget a {
  color: #fff;
  text-decoration: underline;
}
.site-info {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
}
.site-info a {
  color: #fff;
}
.site-info a:hover {
  text-decoration: underline;
}

.footer-content a img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.footer-content a:hover img {
  transform: scale(1.1);
}


/* 14. RESPONSIVE BREAKPOINTS */
@media (max-width: 768px) {
  .site-branding-wrapper {
    flex-direction: column;
  }
  .widget-area {
    margin-top: 2rem;
  }
  .footer-widgets-wrapper {
    flex-direction: column;
  }
}

/* 15. MISC UTILITY CLASSES */
.de-only:lang(en) {
  display: none !important;
}
.en-only:lang(de) {
  display: none !important;
}
.text-center {
  text-align: center !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.hide-when-logged-out {
  display: none !important;
}
.hide-when-logged-in {
  display: none !important;
}
.logged-in .hide-when-logged-out {
  display: inherit !important;
}
.logged-in .hide-when-logged-in {
  display: none !important;
}

/*******************************************************
 * OPTIONAL: Some circle-themed accents (like behind 
 * images or headings). Adjust or remove as needed.
 *******************************************************/

/* Example: a circle behind .entry-title */
.entry-title {
  position: relative;
  z-index: 1;
}
.entry-title::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -10px;
  left: -30px;
  width: 80px;
  height: 80px;
  background: #ffeef3;
  border-radius: 50%;
}

/* Example: add a subtle mandala overlay behind main content */
.content-area::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 20%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translateX(-50%);
  background: url("https://via.placeholder.com/400x400/fffafc/ffcce0?text=Mandala+Circle") no-repeat center/contain;
  opacity: 0.15;
  pointer-events: none;
}

/* END OF style.css */
