/*
Theme Name: Lumira Awakenings
Theme URI: https://example.com/lumira-awakenings
Author: OpenAI
Description: Elegant, warm and spiritual WordPress theme inspired by the Lumira Awakenings logo. Includes a complete homepage, editable sections through the Customizer, responsive navigation and WooCommerce-ready styling.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: lumira-awakenings
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
  --lumira-bg: #f9f1e8;
  --lumira-bg-soft: #ead6c3;
  --lumira-paper: #f7ebdf;
  --lumira-gold: #b88b43;
  --lumira-gold-dark: #8a642f;
  --lumira-brown: #503821;
  --lumira-text: #4e453d;
  --lumira-muted: #84786d;
  --lumira-line: rgba(138, 100, 47, .20);
  --lumira-shadow: 0 18px 55px rgba(93, 66, 35, .12);
  --lumira-radius: 14px;
  --lumira-serif: Georgia, 'Times New Roman', serif;
  --lumira-sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--lumira-text);
  background: var(--lumira-bg);
  font-family: var(--lumira-sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--lumira-gold-dark); text-decoration: none; }
a:hover { color: var(--lumira-gold); }
button, input, textarea, select { font: inherit; }

.site-shell { overflow: hidden; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 90px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--lumira-gold-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--lumira-gold); }
h1, h2, h3, h4 { font-family: var(--lumira-serif); color: var(--lumira-brown); line-height: 1.15; font-weight: 500; }
h1 { font-size: clamp(2.9rem, 7vw, 5.4rem); margin: 0 0 22px; }
h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); margin: 0 0 24px; }
h3 { font-size: 1.55rem; margin: 0 0 12px; }
p { margin: 0 0 1.2em; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(233, 214, 195, .97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lumira-line);
}
.admin-bar .site-header { top: 32px; }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; min-width: 250px; }
.brand img { width: 250px; height: auto; max-height: 70px; object-fit: contain; object-position: left center; display: block; }
.brand-text { font-family: var(--lumira-serif); letter-spacing: .25em; color: var(--lumira-brown); text-transform: uppercase; }
.main-navigation { display: flex; align-items: center; gap: 26px; }
.main-navigation ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 28px; align-items: center; }
.main-navigation a { color: var(--lumira-text); text-transform: uppercase; font-size: .76rem; font-weight: 700; letter-spacing: .08em; }
.main-navigation a:hover, .main-navigation .current-menu-item > a { color: var(--lumira-gold); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--lumira-brown); font-size: 1.6rem; cursor: pointer; }
.btn, .wp-block-button__link, input[type='submit'] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lumira-gold), #c99f5c);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(184, 139, 67, .22);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover, input[type='submit']:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 32px rgba(184, 139, 67, .3); }
.btn-outline { background: transparent; color: var(--lumira-gold-dark); border-color: var(--lumira-gold); box-shadow: none; }
.btn-outline:hover { background: var(--lumira-gold); color: #fff; }

.hero {
  min-height: 720px;
  position: relative;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 65% 35%, rgba(255,255,255,.88) 0 9%, transparent 35%),
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.70), transparent 35%),
    linear-gradient(110deg, #f4e8d8 0%, #fbf6ed 48%, #ead7be 100%);
}
.hero::before, .hero::after {
  content: '✦';
  position: absolute;
  color: rgba(184, 139, 67, .33);
  font-size: 3rem;
  animation: float 6s ease-in-out infinite;
}
.hero::before { left: 7%; top: 24%; }
.hero::after { right: 8%; bottom: 18%; animation-delay: -2s; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.hero-copy { position: relative; z-index: 2; padding: 80px 0; }
.hero-copy p { max-width: 600px; font-size: 1.08rem; color: var(--lumira-muted); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; min-height: 560px; }
.hero-visual::before {
  content: '';
  position: absolute;
  width: min(460px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(184, 139, 67, .27);
  box-shadow: 0 0 0 30px rgba(255,255,255,.18), 0 0 0 62px rgba(184,139,67,.05);
}
.hero-logo-card {
  width: min(470px, 96%);
  position: relative;
  z-index: 1;
  padding: 38px;
  border-radius: 50%;
  background: rgba(255,250,244,.78);
  box-shadow: var(--lumira-shadow);
  backdrop-filter: blur(6px);
}
.hero-logo-card img { width: 100%; display: block; border-radius: 50%; }

.trust-strip { background: var(--lumira-paper); border-block: 1px solid var(--lumira-line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 30px 28px; display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: center; border-right: 1px solid var(--lumira-line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 48px; height: 48px; border: 1px solid var(--lumira-line); border-radius: 50%; display: grid; place-items: center; color: var(--lumira-gold); font-size: 1.3rem; }
.trust-item strong { display: block; color: var(--lumira-brown); font-size: .79rem; letter-spacing: .08em; text-transform: uppercase; }
.trust-item span { color: var(--lumira-muted); font-size: .88rem; }

.about-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 80px; align-items: center; }
.portrait-placeholder {
  min-height: 540px;
  border-radius: 220px 220px 28px 28px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.5), transparent 30%),
    linear-gradient(145deg, #dec5a3, #8b6544 75%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--lumira-shadow);
}
.portrait-placeholder::after {
  content: 'Jouw foto';
  position: absolute;
  inset: auto 25px 25px;
  padding: 14px;
  text-align: center;
  color: white;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  background: rgba(60,40,25,.28);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
}
.about-copy .lead { font-family: var(--lumira-serif); font-size: 1.35rem; color: var(--lumira-brown); }

.services { background: linear-gradient(180deg, #fffaf4, #f4e8d8); }
.section-heading { text-align: center; max-width: 720px; margin: 0 auto 45px; }
.section-heading .eyebrow::before { display: none; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: rgba(255,255,255,.7);
  border: 1px solid var(--lumira-line);
  border-radius: var(--lumira-radius);
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(93,66,35,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--lumira-shadow); }
.service-image { height: 230px; background: radial-gradient(circle at center, rgba(255,255,255,.7), transparent 28%), linear-gradient(135deg, #e3cba9, #ad8150); position: relative; }
.service-image::after { content: '✦'; color: #fff; font-size: 4rem; position: absolute; inset: 0; display: grid; place-items: center; text-shadow: 0 5px 20px rgba(0,0,0,.18); }
.service-card:nth-child(2) .service-image { background: linear-gradient(135deg, #9e7858, #e8c99f); }
.service-card:nth-child(3) .service-image { background: linear-gradient(135deg, #dbc7ad, #f6eadb); }
.service-content { padding: 28px; }
.service-content p { color: var(--lumira-muted); }
.text-link { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.quote-section { padding: 65px 0; text-align: center; background: #5d422b; color: #fff; }
.quote-section blockquote { margin: 0 auto; max-width: 850px; font-family: var(--lumira-serif); font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.4; }
.quote-section cite { display: block; margin-top: 18px; color: #dec49c; font-family: var(--lumira-sans); font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; }

.cta-panel { margin: 0 auto; padding: 55px; border: 1px solid var(--lumira-line); border-radius: 28px; background: rgba(255,255,255,.62); box-shadow: var(--lumira-shadow); text-align: center; }

.site-main article { max-width: 900px; margin: 60px auto; padding: 0 20px; }
.entry-title { font-size: clamp(2.3rem, 5vw, 4rem); }
.entry-content > * { max-width: 100%; }
input[type='text'], input[type='email'], input[type='tel'], input[type='url'], textarea, select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--lumira-line);
  border-radius: 12px;
  background: #fff;
  color: var(--lumira-text);
}
textarea { min-height: 150px; }

.site-footer { background: #3f2d1f; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; padding: 70px 0 50px; }
.footer-logo { width: 210px; border-radius: 12px; margin-bottom: 18px; }
.site-footer h3 { color: #fff; font-size: 1.25rem; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; text-align: center; font-size: .86rem; }

@keyframes float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(8deg); } }

@media (max-width: 980px) {
  .admin-bar .site-header { top: 46px; }
  .menu-toggle { display: block; }
  .main-navigation { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 22px; background: var(--lumira-paper); border-bottom: 1px solid var(--lumira-line); }
  .main-navigation.open { display: block; }
  .main-navigation ul { flex-direction: column; align-items: flex-start; gap: 16px; }
  .header-cta { display: none; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { padding: 70px 0 10px; text-align: center; }
  .hero-copy p { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { min-height: 480px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--lumira-line); }
  .services-grid { grid-template-columns: 1fr; max-width: 640px; margin: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 68px 0; }
  .header-inner { min-height: 74px; }
  .brand img { width: 205px; max-height: 58px; }
  .hero-copy { padding-top: 55px; }
  .hero-visual { min-height: 360px; }
  .hero-logo-card { padding: 20px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--lumira-line); }
  .trust-item:last-child { border-bottom: 0; }
  .portrait-placeholder { min-height: 430px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-panel { padding: 36px 22px; }
}

/* WooCommerce basics */
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product { background: #fff; border: 1px solid var(--lumira-line); border-radius: 16px; padding: 16px; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button { background: var(--lumira-gold); color: #fff; border-radius: 999px; }


/* Lumira 2.0 refinements */
body { background: #fbf4ec; }
.site-header { box-shadow: 0 8px 30px rgba(93,66,35,.06); }
.header-inner { min-height: 92px; }
.main-navigation a { position: relative; padding: 34px 0; }
.main-navigation a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 24px; height: 1px; background: var(--lumira-gold-dark); transform: scaleX(0); transition: transform .25s ease; }
.main-navigation a:hover::after, .main-navigation .current-menu-item > a::after { transform: scaleX(1); }
.hero { min-height: 690px; background: linear-gradient(90deg, rgba(246,234,222,.98) 0%, rgba(251,244,236,.94) 45%, rgba(238,219,200,.96) 100%); }
.hero::before { content: ''; inset: 0; left: auto; top: 0; width: 48%; height: 100%; background: radial-gradient(circle at 50% 45%, rgba(255,255,255,.68), transparent 45%); animation: none; }
.hero::after { content: '✦'; right: 7%; bottom: 15%; }
.hero-copy { padding: 105px 0; }
.hero-copy h1 { max-width: 690px; font-size: clamp(3.4rem, 6vw, 5.75rem); }
.hero-copy p { max-width: 570px; }
.hero-visual { min-height: 540px; }
.hero-logo-card { width: min(520px, 100%); padding: 0; border-radius: 0; background: transparent; box-shadow: none; }
.hero-logo-card img { border-radius: 0; mix-blend-mode: multiply; }
.hero-visual::before { width: min(450px, 86%); border-color: rgba(184,139,67,.18); box-shadow: 0 0 0 35px rgba(255,255,255,.16), 0 0 0 75px rgba(184,139,67,.035); }
.trust-strip { background: #fbf4ec; }
.trust-item { padding-block: 27px; }
.about-grid { grid-template-columns: .9fr 1.1fr; }
.about-media img { width: 100%; min-height: 540px; object-fit: cover; border-radius: 16px; box-shadow: var(--lumira-shadow); display: block; }
.portrait-placeholder { border-radius: 16px; }
.services { background: #fbf4ec; border-top: 1px solid var(--lumira-line); }
.services-grid { gap: 20px; }
.service-card { border-radius: 12px; }
.service-image { overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.service-card:hover .service-image img { transform: scale(1.04); }
.service-image.has-image::after { display: none; }
.quote-section { background: #ead6c3; color: var(--lumira-brown); border-block: 1px solid var(--lumira-line); }
.quote-section cite { color: var(--lumira-gold-dark); }
.cta-panel { background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(233,214,195,.75)); }
.site-footer { background: #4a3524; }
@media (max-width: 980px) {
  .main-navigation { background: #e9d6c3; }
  .main-navigation a { padding: 6px 0; }
  .main-navigation a::after { bottom: 0; }
  .hero-copy { padding: 78px 0 15px; }
}
@media (max-width: 640px) {
  .header-inner { min-height: 78px; }
  .brand { min-width: 0; }
  .brand img { width: 205px; }
  .hero-copy h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
}
