/* Munis Under Beauty Center – style.css
   Nature_organic theme: earthy tones, organic shapes, modern comfort, green accent, refined brand style
   Flexbox ONLY. No CSS Grid/Columns. Responsive & interactive. */

/* CSS RESET / NORMALIZE */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,output,ruby,section,summary,time,mark,audio,video {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
}
html { box-sizing: border-box; scroll-behavior: smooth; }
*,*:before,*:after { box-sizing: inherit; }
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section { display: block; }
body { line-height: 1.6; }
ul,ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; border: none; }
table { border-collapse: collapse; border-spacing: 0; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700,800|Lato:400,700&display=swap');

:root {
  /* Brand palette */
  --brand-primary: #A72B5A;
  --brand-secondary: #223A43;
  --brand-accent: #F7F2F0;
  --brand-earth: #7B5F47;
  --brand-green: #4F7754;
  --brand-bg: #F7F2F0;
  --brand-surface: #fff;
  --brand-border: #e4ded9;
  --brand-muted: #cfc6bd;
  --brand-shadow: rgba(34,58,67,0.11);
  --brand-shadow-strong: rgba(34,58,67,0.15);
  --brand-error: #CC7864;
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', Arial, sans-serif;
}

body {
  background: var(--brand-bg);
  font-family: var(--font-body);
  color: var(--brand-secondary);
  font-size: 16px;
  font-weight: 400;  
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: var(--brand-surface);
  box-shadow: 0 2px 8px var(--brand-shadow);
  z-index: 50;
  position: sticky;
  top: 0;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 12px 0;
}
.logo img { height: 42px; width: auto; }

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 24px;
  color: var(--brand-secondary);
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}

.button-primary {
  background: var(--brand-primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  border: none;
  padding: 12px 32px;
  border-radius: 32px;
  box-shadow: 0 2px 12px var(--brand-shadow);
  font-size: 17px;
  letter-spacing: .5px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  display: inline-block;
}
.button-primary:hover, .button-primary:focus {
  background: var(--brand-green);
  color: #fff;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 4px 18px var(--brand-shadow-strong);
}
.button-secondary {
  background: var(--brand-green);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  padding: 11px 28px;
  border-radius: 28px;
  font-size: 16px;
  display: inline-block;
  box-shadow: 0 2px 10px var(--brand-shadow);
  cursor: pointer;
  transition: background 0.2s, transform 0.13s, box-shadow 0.15s;
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 4px 14px var(--brand-shadow-strong);
}

/* --- MOBILE NAVIGATION ---*/
.mobile-menu-toggle {
  display: none;
  font-size: 32px;
  color: var(--brand-primary);
  border: none;
  background: none;
  margin-left: 12px;
  cursor: pointer;
  padding: 8px 12px;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: var(--brand-bg);
  box-shadow: 0 8px 32px var(--brand-shadow-strong);
  z-index: 900;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 32px;
  color: var(--brand-primary);
  background: none;
  border: none;
  padding: 30px 24px 8px 24px;
  align-self: flex-end;
  cursor: pointer;
  z-index: 910;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100vw;
  padding: 32px 24px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: .5px;
  color: var(--brand-secondary);
  padding: 12px 0;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}

/* --- HERO / HEADINGS / TYPOGRAPHY --- */
h1, .hero h1, .thank-you h1 { font-family: var(--font-display); font-size: 2.8rem; line-height: 1.16; color: var(--brand-primary); font-weight: 700; }
h2 { font-family: var(--font-display); font-size: 2.1rem; color: var(--brand-green); line-height: 1.19; font-weight: 700; margin-bottom: 6px; }
h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--brand-secondary); line-height: 1.2; font-weight: 600; margin-bottom: 4px; }
p { font-size: 1rem; color: var(--brand-secondary); margin-bottom: 8px; }
a { color: var(--brand-primary); transition: color 0.15s; }
a:hover, a:focus { color: var(--brand-green); text-decoration: underline; }

/* --- SECTIONS, SPACING & LAYOUTS --- */
.section,
.hero,
.features,
.about-preview,
.services-preview,
.testimonials,
.cta-final,
.about-detailed,
.features-why,
.cta-about,
.services-list,
.features-materials,
.cta-services,
.hero-pricing,
.pricing-table,
.features-pricing,
.cta-pricing,
.hero-gallery,
.gallery-cases,
.features-nailart,
.cta-gallery,
.hero-reviews,
.testimonials-list,
.features-reviews,
.cta-reviews,
.hero-contact,
.contact-details,
.features-contact,
.cta-contact,
.privacy-policy,
.cookies-policy,
.terms-of-use,
.gdpr-info,
.thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-surface);
  border-radius: 24px;
  box-shadow: 0 6px 24px var(--brand-shadow);
}

@media (max-width: 800px) {
  .section,
  .hero,
  .features,
  .about-preview,
  .services-preview,
  .testimonials,
  .cta-final,
  .about-detailed,
  .features-why,
  .cta-about,
  .services-list,
  .features-materials,
  .cta-services,
  .hero-pricing,
  .pricing-table,
  .features-pricing,
  .cta-pricing,
  .hero-gallery,
  .gallery-cases,
  .features-nailart,
  .cta-gallery,
  .hero-reviews,
  .testimonials-list,
  .features-reviews,
  .cta-reviews,
  .hero-contact,
  .contact-details,
  .features-contact,
  .cta-contact,
  .privacy-policy,
  .cookies-policy,
  .terms-of-use,
  .gdpr-info,
  .thank-you {
    padding: 26px 8px;
    border-radius: 14px;
    margin-bottom: 36px;
  }
}

.features,
.features-why,
.features-materials,
.features-pricing,
.features-nailart,
.features-reviews,
.features-contact {
  background: #f2ede9;
  border: 1.8px solid var(--brand-border);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap:20px; }
}

/* --- FLEX SPACING SCAFFOLD ---> */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--brand-surface);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--brand-shadow);
  position: relative;
  padding: 20px 22px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f3f9f6;
  border-radius: 20px;
  box-shadow: 0 1.5px 8px var(--brand-shadow);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 0;
  border: 1.2px solid var(--brand-border);
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 20px var(--brand-shadow-strong);
  transform: translateY(-3px) scale(1.01);
}

.testimonial-content p { font-size: 1.03rem; color: #254236; font-weight: 500; margin-bottom: 10px; }
.testimonial-meta { color: var(--brand-secondary); font-size: 0.95em; font-weight: 600; margin-bottom: 6px; }
.star-rating {
  color: #E1B55A;
  font-size: 1.18em;
  letter-spacing: .04em;
}

@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 10px;
    border-radius: 11px;
  }
}

/* --- MAIN ELEMENTS --- */
section ul {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
section ul li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 1rem;
  color: var(--brand-secondary);
  padding-left: 1px;
}
section ul li img { height: 26px; width: 26px; margin-top: 2px; }
section ul li strong { color: var(--brand-primary); font-weight: 700; font-size: 1.06em; margin-right: 2px; }

.services-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  background: none;
  border: none;
  margin-bottom: 10px;
}
.services-list ul {
  gap: 15px;
}
.services-list ul li img { height: 26px; width: auto; margin-right: 8px; }

/* PRICING TABLE */
.pricing-table table {
  width: 100%;
  margin: 18px 0 18px 0;
  background: #fafafa;
  border-radius: 16px;
  box-shadow: 0 1px 5px var(--brand-shadow);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 13px 18px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--brand-secondary);
}
.pricing-table th {
  background: var(--brand-accent);
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 1.12rem;
}
.pricing-table tr:nth-child(2n+1) td {
  background: #f5f8f5;
}
.pricing-table tr:nth-child(2n) td {
  background: #fff;
}
.pricing-table tr td:first-child {
  font-weight: 500;
}

.pricing-notes {
  background: #e4efe7;
  border-left: 5px solid var(--brand-green);
  border-radius: 0 16px 16px 0;
  padding: 18px 22px;
  margin: 15px 0 0 0;
}

/* --- CTA SECTIONS & BUTTONS --- */
.cta-final, .cta-about, .cta-services, .cta-pricing, .cta-gallery, .cta-reviews, .cta-contact, .thank-you {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-accent);
  border: none;
  box-shadow: 0 1px 8px var(--brand-shadow);
}
.cta-final h2,
.cta-about h2,
.cta-services h2,
.cta-pricing h2,
.cta-gallery h2,
.cta-reviews h2,
.cta-contact h2,
.thank-you h1 {
  margin-bottom: 20px;
  color: var(--brand-primary);
  font-size: 2rem;
}

.thank-you p { font-size: 1.15em; margin-bottom: 22px; color: var(--brand-secondary); }

/* --- GALLERY --- */
.gallery-cases .text-section {
  background: #f0f7f0;
  border-radius: 13px;
  box-shadow: 0 1px 5px var(--brand-shadow);
  padding: 18px 15px;
  margin-bottom: 15px;
}
.gallery-cases .text-section h3 { color: var(--brand-green); font-weight: 700; margin-bottom: 7px; }

/* --- FOOTER --- */
footer {
  background: #f6f3ef;
  border-top: 1.2px solid var(--brand-border);
  padding: 50px 0 24px 0;
  margin-top: 30px;
  font-size: 1rem;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  min-width: 170px;
}
.footer-brand img { height: 36px; width: auto; }
.brand-desc {
  font-family: var(--font-display);
  color: var(--brand-green);
  font-size: 1.07em;
  font-weight: 600;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: var(--brand-secondary);
  font-size: 1rem;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-primary);
  text-decoration: underline;
}
.footer-contact { display: flex; flex-direction: column; gap: 7px; font-size: 0.97em; }
.footer-contact img { height: 18px; width: 18px; vertical-align: middle; margin-right: 8px; }

@media (max-width: 850px) {
  footer .container { flex-direction: column; gap: 15px; align-items: flex-start; }
}

/* --- FORMS, INPUTS (if needed in future) --- */
input, textarea, select {
  border-radius: 4px;
  border: 1.4px solid var(--brand-border);
  background: #fff;
  padding: 10px 12px;
  font-size: 1em;
  margin-bottom: 10px;
  font-family: var(--font-body);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 2px #c1e5c8;
}

button, .button-primary, .button-secondary {
  outline: none;
  font-family: var(--font-body);
}

/* --- TABLES (for privacy/policy) --- */
table,th,td {
  border: none;
}

/* --- UTILS --- */
.hide { display: none !important; }
.text-center { text-align: center!important; }
.text-right { text-align: right; }
.mb-2 { margin-bottom: 20px; }

/* --- ORGANIC SHAPES --- */
.section, .card, .testimonial-card, .gallery-cases .text-section, .pricing-table table, .about-detailed, .features,
.features-why,.features-materials, .features-pricing,.features-nailart, .features-reviews { 
  border-radius: 24px 35px 19px 22px / 20px 30px 26px 30px;
}
.about-preview, .hero, .services-preview, .testimonials, .cta-final, .cta-about, .cta-services, .cta-gallery,
.cta-reviews, .cta-contact, .thank-you {
  border-radius: 44px 20px 20px 25px / 27px 30px 33px 18px;
}

/* --- PLACEHOLDER BLOCKS --- */
.team-photo-placeholder, .map-embed-placeholder {
  background: repeating-linear-gradient(135deg, #e2e5dd 0 4px, #e8eee7 4px 20px);
  border-radius: 16px;
  height: 180px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px var(--brand-shadow);
  display: flex; align-items: center; justify-content: center;
  color: #a6ae9e; font-size: 1.2em;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1050px) {
  .container { max-width: 97vw; }
}
@media (max-width: 820px) {
  .main-nav { gap: 11px; }
  .footer-brand img { height: 30px; }
}
@media (max-width: 700px) {
  header .container { flex-direction: row; gap: 10px; }
  .main-nav { display: none; }
  .button-primary { padding: 10px 16px; font-size: 15px; }
  .button-secondary { padding: 9px 15px; font-size: 14px; }
  .logo img { height: 35px; }
  .footer-brand img { height: 26px; }
}
@media (max-width: 645px) { 
  h1, .hero h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
}
@media (max-width: 700px) {
  .mobile-menu-toggle { display: inline-block; }
}

/* --- SHOW/HIDE BURGER NAV */
@media (min-width: 701px) {
  .mobile-menu,
  .mobile-menu-toggle { display: none !important; }
  .main-nav { display: flex !important; }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed; left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--brand-surface);
  color: var(--brand-secondary);
  box-shadow: 0 -2px 14px var(--brand-shadow);
  border-top: 1.5px solid var(--brand-border);
  z-index: 2222;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 22px 18px;
  font-size: 1rem;
  animation: fadeBannerIn 0.9s ease;
}
@media (max-width: 750px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 13px;
    font-size: 0.97rem;
    align-items: flex-start;
  }
}
@keyframes fadeBannerIn { 0% { opacity: 0; transform: translateY(40px); } 100% { opacity: 1; transform: none; } }

.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 8px;
}
.cookie-buttons button,
.cookie-buttons .button-primary,
.cookie-buttons .button-secondary {
  font-size: 0.95rem;
  border-radius: 22px;
  padding: 7px 22px;
  border: none;
  transition: background 0.14s, color 0.14s, box-shadow 0.14s;
  font-weight: 500;
  box-shadow: 0 1px 4px var(--brand-shadow);
  outline: none;
  cursor: pointer;
}
.cookie-buttons .accept {
  background: var(--brand-green);
  color: #fff;
}
.cookie-buttons .accept:hover, .cookie-buttons .accept:focus { background: var(--brand-primary); }
.cookie-buttons .reject {
  background: #E8D9D9;
  color: var(--brand-secondary);
}
.cookie-buttons .reject:hover, .cookie-buttons .reject:focus { background: #dec1c1; color: var(--brand-primary); }
.cookie-buttons .settings {
  background: transparent;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}
.cookie-buttons .settings:hover, .cookie-buttons .settings:focus {
  background: var(--brand-accent);
  color: var(--brand-green);
  border-color: var(--brand-green);
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(40,50,46, 0.38);
  z-index: 2400;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeModal 0.2s ease;
}
@keyframes fadeModal { 0% { opacity: 0; } 100% { opacity: 1; } }

.cookie-modal {
  background: var(--brand-surface);
  border-radius: 18px;
  box-shadow: 0 8px 34px var(--brand-shadow-strong);
  padding: 38px 34px 20px 34px;
  max-width: 94vw; width: 410px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: slideInModal 0.32s cubic-bezier(.6,0,.24,1);
}
@keyframes slideInModal { 0% { transform: translateY(60px) scale(.96); opacity: .7; } 100% { transform: none; opacity: 1; } }
.cookie-modal h2 { color: var(--brand-primary); margin-bottom: 7px; font-size: 1.41em; }
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-top: 8px;
}
.cookie-category label {
  font-size: 1em;
  color: var(--brand-secondary);
  cursor: pointer;
}
.cookie-modal .category-always {
  color: #484848;
  padding-left: 2px;
  opacity: 0.7;
  font-size: 0.97em;
}
.cookie-toggle {
  width: 32px; height: 18px; border-radius: 17px;
  background: var(--brand-muted);
  margin-right: 4px;
  position: relative;
  cursor: pointer;
  transition: background 0.14s;
  border: none;
}
.cookie-toggle.enabled {
  background: var(--brand-green);
}
.cookie-toggle .circle {
  display: inline-block;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 1px;
  left: 2px;
  transition: left 0.15s;
}
.cookie-toggle.enabled .circle {
  left: 14px;
}
.cookie-modal .cookie-modal-close {
  position: absolute; top: 17px; right: 13px; font-size: 1.45em; color: var(--brand-primary); background: none; border: none; cursor: pointer; }
.cookie-modal .cookie-modal-actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* --- ANIMATIONS / MICROINTERACTIONS --- */
.button-primary, .button-secondary {
  transition: background 0.14s, color 0.16s, box-shadow 0.15s, transform 0.15s;
}
.button-primary:active, .button-secondary:active {
  transform: scale(.98);
}

.testimonial-card {
  transition: box-shadow 0.14s, transform 0.14s;
}

/* --- ACCESSIBILITY: FOCUS STYLE --- */
a:focus, button:focus, .button-primary:focus, .button-secondary:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* --- CONTRAST & READABILITY (esp testimonials) --- */
.testimonial-card p, .testimonial-content p, .testimonial-meta, .star-rating {
  color: #274636;
  background: none;
}

/* --- ERROR & SPECIAL STYLES --- */
.error { color: var(--brand-error); font-weight: 700; }

/* --- END --- */
