/*
 Theme Name:   nympho-hannah-theme
 Theme URI:    https://example.com/nympho-hannah
 Author:       You / Hannah
 Author URI:   https://example.com
 Description:  Personal companion & custom content landing page theme
 Version:      1.0.0
 Requires at least: 6.0
 Tested up to:     6.7
 Requires PHP:     8.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  nympho-hannah
 Tags:         one-page, portfolio, custom-colors, custom-menu
*/

/* ──────────────────────────────────────
   All your original <style> content goes here
   (remove the <style> tags themselves)
─────────────────────────────────────── */

  /* Import Font */
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

  /* Wrapper */
  .pastel-wrapper {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #555;
    width: 100%;
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
  }

  .pastel-wrapper * {
    box-sizing: border-box;
  }

  /* --- UTILITY & LAYOUT --- */
  .pastel-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .pastel-section {
    padding: 5em 0;
    position: relative;
    background-color: #ffffff; /* Default White */
  }

  /* THE "GREEN BLUE" BACKGROUND CLASS */
  .pastel-bg-alt {
    background: linear-gradient(135deg, #e0f7fa 0%, #e0f2f1 100%);
    border-top: 1px solid #b2f7ef;
    border-bottom: 1px solid #b2f7ef;
  }

  .pastel-divider {
    display: none; /* Removed manual dividers since we have alternating colors now */
  }

  h2.section-title {
    text-align: center;
    font-size: 2.2em;
    color: #ff85a2;
    margin-bottom: 0.2em;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
  }

  p.section-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 3.5em;
    font-size: 1em;
    letter-spacing: 1px;
  }

  /* --- STICKY NAV --- */
  .pastel-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0f2f1;
    padding: 1em 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  }

  .pastel-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2em;
  }

  .pastel-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
  }

  .pastel-nav a:hover {
    color: #4db6ac; /* Mint hover */
  }

  /* --- ROTATING HERO SECTION --- */
  .pastel-hero {
    position: relative;
    width: 100%;
    height: 70vh; 
    min-height: 500px;
    overflow: hidden;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active { opacity: 1; }

  /* Slightly Green/Blue Tint overlay for Hero to match the alternating sections */
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(224, 247, 250, 0.7) 0%, rgba(255, 240, 245, 0.6) 100%);
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 650px;
    padding: 2.5em;
    background: rgba(255,255,255,0.85);
    border: 1px solid #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 150, 136, 0.08); /* Soft Teal Shadow */
    backdrop-filter: blur(8px);
  }

  .hero-content h1 {
    font-size: 2.5em;
    color: #ff85a2;
    margin: 0 0 0.5em 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .hero-content p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 2em;
  }

  /* --- BUTTONS --- */
  .pastel-btn {
    display: inline-block;
    padding: 0.9em 2.2em;
    background-color: #b2f7ef; /* Mint */
    color: #333;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(178, 247, 239, 0.4);
  }

  .pastel-btn:hover {
    background-color: #ffcce5; /* Pink */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 182, 193, 0.4);
    color: #333;
  }

  .pastel-btn.outline {
    background: transparent;
    border-color: #ff85a2;
    color: #ff85a2;
    box-shadow: none;
  }
  .pastel-btn.outline:hover {
    background: #ff85a2;
    color: #fff;
  }

  /* --- SERVICES GRID (CLICKABLE) --- */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2em;
  }

  .service-card {
    background: #fff;
    border-radius: 15px;
    padding: 3em 2em;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer; 
    position: relative;
    overflow: hidden;
  }

  .service-card:hover {
    transform: translateY(-8px);
    border-color: #b2f7ef;
    box-shadow: 0 20px 40px rgba(178, 247, 239, 0.3);
  }

  .service-card::after {
    content: '+ Click for Details';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75em;
    color: #ff85a2;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .service-card:hover::after {
    opacity: 1;
  }

  .service-icon {
    font-size: 3em;
    margin-bottom: 0.5em;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
  }

  .service-card h3 {
    color: #4db6ac;
    margin-bottom: 0.5em;
    font-size: 1.4em;
  }

  .service-details-content { display: none; }

  /* --- SERVICE MODAL --- */
  .service-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
  }
  .service-modal-overlay.active { display: flex; }

  .service-modal-box {
    background: #fff;
    width: 90%;
    max-width: 550px;
    padding: 3em;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 2px solid #b2f7ef;
    position: relative;
    animation: slideUp 0.4s ease;
  }
  @keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

  .service-modal-close { position: absolute; top: 15px; right: 20px; font-size: 2.5em; color: #aaa; cursor: pointer; line-height: 0.6; }
  .service-modal-close:hover { color: #ff85a2; }
  .service-modal-title { color: #4db6ac; margin-bottom: 0.5em; font-size: 1.8em; border-bottom: 2px dashed #f0f0f0; padding-bottom: 10px; }
  .service-modal-body { font-size: 1em; color: #666; margin-bottom: 2em; text-align: left; line-height: 1.8; }
  .service-modal-body strong { color: #ff85a2; }
  .service-modal-body ul { padding-left: 20px; margin-top: 15px; background: #f9f9f9; padding: 15px 15px 15px 35px; border-radius: 10px; }
  .service-modal-body li { margin-bottom: 8px; }

  /* --- CUSTOM CONTENT PRICING --- */
  .pricing-card {
    max-width: 650px; 
    margin: 0 auto; 
    background: #fff; 
    padding: 3em; 
    border-radius: 20px; 
    border: 2px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }

  .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #e0f2f1;
    padding: 1.2em 0;
  }
  .price-row:last-child { border-bottom: none; }
  .price-item { font-weight: 500; color: #555; font-size: 1.1em; }
  .price-cost { color: #ff85a2; font-weight: 700; font-size: 1.2em; }

  /* --- BOOKING FORM --- */
  .booking-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 3em;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    border: 2px solid #fff; /* White border to blend or pop */
    max-width: 700px;
    margin: 0 auto;
  }

  .form-group { margin-bottom: 1.5em; }
  .form-group label { display: block; margin-bottom: 0.6em; font-size: 0.85em; font-weight: 700; color: #4db6ac; text-transform: uppercase; letter-spacing: 1px; }
  .pastel-input { width: 100%; padding: 14px 18px; border: 2px solid #f5f5f5; background: #fcfcfc; border-radius: 10px; font-family: inherit; transition: all 0.3s; font-size: 1em; }
  .pastel-input:focus { outline: none; border-color: #ff85a2; background: #fff; box-shadow: 0 0 0 4px rgba(255, 133, 162, 0.1); }


  .pastel-gallery img {
    width: 100%;
	object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }

  .pastel-gallery img:hover {
    transform: translateY(-8px);
    filter: brightness(1.05);
    border-color: #b2f7ef;
  }

  /* --- LIGHTBOX --- */
  .p-lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    align-items: center;
    justify-content: center;
  }
  .p-lightbox.active { display: flex; }
  .p-lightbox img { max-width: 90vh; max-height: 90vh; height: auto; width: auto; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); border: 2px solid #b2f7ef; }
  .p-arrow { position: absolute; top: 50%; font-size: 3em; color: #ff85a2; cursor: pointer; padding: 0 30px; transform: translateY(-50%); transition: color 0.3s; }
  .p-arrow:hover { color: #4db6ac; }
  #p-prev { left: 10px; }
  #p-next { right: 10px; }
  .p-close { position: absolute; top: 20px; right: 30px; font-size: 4em; color: #ddd; cursor: pointer; line-height: 0.5; transition: color 0.3s; }
  .p-close:hover { color: #ff85a2; }

  /* Mobile */
  @media(max-width: 768px) {
    .pastel-nav ul { gap: 1em; font-size: 0.75em; }
    .hero-content h1 { font-size: 1.8em; }
    .pastel-hero { height: 50vh; }
    .booking-wrap, .pricing-card { padding: 1.5em; }
    .pastel-gallery { grid-template-columns: repeat(2, 1fr); gap: 1em; }
  }

/* Amelia example - target main wrapper */
  .amelia-v2-booking, 
  .amelia-v2-booking * {
      font-family: 'Montserrat', sans-serif !important;
  }
  .amelia-v2-booking .el-button--primary,
  .amelia-v2-booking .el-button--primary:hover {
      background: #b2f7ef !important;  /* mint */
      color: #333 !important;
      border-color: #b2f7ef !important;
  }
  .amelia-v2-booking .el-button--primary:focus {
      box-shadow: 0 0 0 4px rgba(178, 247, 239, 0.3) !important;
  }
/* Adjust fonts, borders, etc. – inspect elements in browser to get exact classes */

/* ... all other rules including media queries ... */
