/* Gusturi de Acasă - Luxury Premium CSS Style v1.0 (FLEXBOX ONLY) */
/* 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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #f9f7f3;
  color: #2b2220;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
a {
  color: #553D2A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #bf9307;
  outline: none;
}
ul, ol {
  margin-left: 32px;
  margin-bottom: 24px;
  padding-left: 0;
}
ul li, ol li {
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
hr {
  border: none;
  height: 1px;
  background: #ebdec8;
  margin: 32px 0;
}

/* BRAND FONTS (load from Google Fonts if possible) */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

h1, h2, h3, h4 {
  color: #553D2A;
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 9px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
}

p, li, blockquote, dd, dt, input, table, span {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2b2220;
  font-size: 1rem;
  line-height: 1.7;
}

blockquote {
  padding: 18px 24px;
  border-left: 4px solid #c8ac60;
  background: #fcf8f2;
  color: #60471b;
  font-style: italic;
  border-radius: 12px;
  margin: 20px 0 24px 0;
}

/* MAIN LAYOUT */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

/* NAVIGATION */
header {
  width: 100%;
  background: #f7eed3;
  border-bottom: 1.5px solid #e5dac1;
  position: relative;
  z-index: 100;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 0 13px 0;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
}
header nav > a {
  padding: 7px 14px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  color: #553D2A;
  font-weight: 600;
  letter-spacing: 0.01em;
}
header nav > a:hover, header nav > a:focus {
  background: #f7ecd1;
  color: #b99b44;
}
header nav > .cta-primary, .cta-primary {
  background: #553D2A;
  color: #fff6e0;
  padding: 9px 22px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 3px 6px rgba(200,172,96,0.09);
  border: none;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.22s;
  cursor: pointer;
  text-align: center;
  margin-left: auto;
}
header nav > .cta-primary:hover, .cta-primary:hover, .cta-primary:focus {
  background: #b99b44;
  color: #37280f;
  box-shadow: 0 8px 24px rgba(200,172,96,0.22);
}
header nav img {
  height: 40px;
  width: auto;
  margin-right: 18px;
  display: block;
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #553D2A;
  cursor: pointer;
  margin-left: auto;
  z-index: 202;
}
@media (max-width: 1100px) {
  header nav {
    gap: 9px;
    font-size: 15px;
  }
  header nav img {
    margin-right: 8px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 2px;
    font-size: 14px;
    flex-wrap: wrap;
  }
}
@media (max-width: 850px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 24px;
    top: 16px;
  }
}
.mobile-menu {
  position: fixed;
  z-index: 210;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39, 27, 14, 0.93);
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.69,.07,.59,.91);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #f7eed3;
  align-self: flex-end;
  margin: 30px 25px 13px 0;
  cursor: pointer;
  z-index: 230;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #b99b44;
}
.mobile-nav {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  color: #f7eed3;
  font-size: 1.3rem;
  font-family: 'Merriweather', serif;
  padding: 12px 0;
  transition: color 0.2s, background 0.2s;
  border-radius: 6px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #b99b44;
  background: rgba(255,255,255,0.08);
}
@media (max-width: 850px) {
  .mobile-menu {
    display: flex;
  }
}

/* MAIN SECTION STYLES */
section {
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 700px) {
  .section {
    margin-bottom: 40px;
    padding: 26px 7px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 32px 0;
}
.card {
  background: #fffefb;
  border-radius: 18px;
  box-shadow: 0 6px 27px rgba(86,60,43,0.08);
  padding: 30px 26px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 225px;
  max-width: 360px;
  transition: box-shadow 0.23s, transform 0.17s;
  border: 1px solid #ebdec8;
}
.card:hover {
  box-shadow: 0 13px 48px rgba(186,153,68,0.18);
  transform: translateY(-4px) scale(1.02);
  border-color: #c8ac60;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.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, .content-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-top: 16px;
  margin-bottom: 20px;
  background: #f7eed3;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(200,172,96,0.13);
  border: 1px solid #c8ac60;
  max-width: 600px;
  width: 100%;
  color: #392d17;
  font-size: 1.09rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card p {
  color: #392d17;
  font-size: 1.09rem;
  margin: 0 0 8px 0;
  text-align: center;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: #60471b;
}

/* Table styles (for .servicii) */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 18px 0;
  background: #fcf9f3;
  border-radius: 10px;
  overflow: hidden;
}
table caption {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 8px 0;
  font-family: 'Merriweather', serif;
}
table th, table td {
  padding: 13px 11px;
  font-size: 1rem;
  border-bottom: 1px solid #ecdcb5;
  font-family: 'Open Sans', Arial, sans-serif;
  text-align: left;
}
table th {
  background: #f7eed3;
  color: #553D2A;
  font-weight: 700;
}
table tr:last-child td {
  border-bottom: none;
}

/* List and definition list styles */
ul, ol {
  padding-left: 24px;
  margin-bottom: 21px;
}
dt {
  font-weight: 700;
  margin-top: 16px;
}
dd {
  margin-left: 12px;
  margin-bottom: 9px;
}

/* FORM ELEMENTS */
input, textarea {
  padding: 10px 12px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1.5px solid #ebdec8;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #553D2A;
  background: #f7eed3;
  transition: border-color 0.19s;
}
input:focus, textarea:focus {
  border-color: #c8ac60;
  outline: none;
}

/* BUTTONS */
.c Bta-primary, .cta-primary {
  background: #553D2A;
  color: #fff6e0;
  padding: 11px 26px;
  border-radius: 28px;
  font-weight: 700;
  font-family: 'Merriweather', serif;
  font-size: 1.06rem;
  box-shadow: 0 3px 14px rgba(200,172,96,0.11);
  border: none;
  outline: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.23s, color 0.18s, box-shadow 0.19s, transform 0.12s;
  letter-spacing: 0.02em;
  margin-top: 13px;
  margin-bottom: 6px;
  text-decoration: none;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus, .cta-primary:active {
  background: #b99b44;
  color: #392d17;
  box-shadow: 0 7px 28px rgba(200,172,96,0.31);
  transform: translateY(-2px) scale(1.02);
}

button {
  font-family: 'Open Sans', Arial, sans-serif;
  cursor: pointer;
}

/* GOLD ACCENTS & LUXURY ELEMENTS */
.gold {
  color: #b99b44;
}
hr.gold {
  background: linear-gradient(90deg, #b99b44 0%, #c8ac60 100%);
  height: 4px;
  border-radius: 3px;
  border: none;
}

/* SPACING ADJUSTMENTS */
main {
  padding-bottom: 60px;
  flex: 1 0 auto;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  main {
    padding-bottom: 18px;
  }
  .section, section {
    margin-bottom: 38px;
    padding: 24px 4px;
  }
}

/* FOOTER STYLES */
footer {
  background: #fff7e3;
  border-top: 1.5px solid #e5dac1;
  padding: 38px 0 20px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-size: 15px;
}
footer nav {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 5px;
}
footer nav a {
  color: #60471b;
  padding: 3px 12px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  background: #f7eed3;
  color: #b99b44;
}
.contact-info p, .contact-info a {
  color: #554429;
  font-size: 15px;
  margin-bottom: 2px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.contact-info a { text-decoration: underline; }

/* FLEX BREAK PATTERNS - DO NOT EDIT */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* RESPONSIVENESS */
@media (max-width: 768px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 17px;
  }
  section, .section {
    padding: 20px 6px;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  .cta-primary { font-size: 0.98rem; }
}

/* UTILITY */
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* ICONS/IMAGES inside features/services */
section img, .feature-item img, .card img {
  height: 36px;
  width: auto;
  margin-right: 12px;
  vertical-align: middle;
  border-radius: 8px;
  background: #fff9ed;
  border: 1px solid #ebdec8;
  box-shadow: 0 2px 8px rgba(200,172,96,0.09);
}

/* CATEGORIES and FILTERS tags */
p span {
  background: #f7eed3;
  color: #b99b44;
  font-weight: 700;
  padding: 2px 11px;
  border-radius: 6px;
  font-size: 0.98em;
  margin-right: 6px;
  letter-spacing: 0.01em;
}

/* LUXURY SHADOWS, GOLD LINES, AND MICRO-INTERACTIONS */
.card, .testimonial-card, .cta-primary {
  transition: box-shadow 0.21s, border-color 0.15s, transform 0.15s;
}
.card:before {
  content: '';
  display: none;
}
.card .gold-dot, .cta-primary .gold-dot {
  width: 9px;
  height: 9px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 7px;
  background: #b99b44;
  border-radius: 50%;
  box-shadow: 0 0 2px #89691e;
}

/* TABLE SECTIONS - MODERN BORDERS */
table tr:hover td {
  background: #faf4e8;
  transition: background 0.22s;
}
table th, table td {
  border-right: 1.5px solid #ece3cb;
}
table th:last-child, table td:last-child {
  border-right: none;
}

/* Cookie Consent Styles */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #f7eed3;
  color: #2b2220;
  border-top: 1.5px solid #c8ac60;
  box-shadow: 0 -4px 24px rgba(200,172,96,0.19);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 5vw 22px 5vw;
  z-index: 320;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.3s cubic-bezier(.69,.07,.59,.91), transform 0.42s;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 0;
  font-size: 1rem;
  color: #48361d;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.cookie-banner button {
  font-size: 0.97rem;
  padding: 8px 16px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: background 0.13s, color 0.12s;
}
.cookie-banner .accept {
  background: #b99b44;
  color: #fff6e0;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #553D2A;
  color: #ffe6b3;
}
.cookie-banner .reject {
  background: #d2c19a;
  color: #60471b;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #a89871;
  color: #fff6e0;
}
.cookie-banner .settings {
  background: none;
  color: #553D2A;
  text-decoration: underline;
  padding: 7px 11px;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  color: #b99b44;
  background: none;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 17px 3vw 17px 3vw;
    font-size: 0.97rem;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(53,41,26,0.83);
  z-index: 400;
  display: none;
  justify-content: center;
  align-items: center;
  animation: none;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: fadeInModal 0.3s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffefb;
  border-radius: 16px;
  padding: 42px 34px 29px 34px;
  box-shadow: 0 14px 54px rgba(200,172,96,0.17);
  min-width: 320px;
  max-width: 94vw;
  font-size: 1.07rem;
  color: #2b2220;
  position: relative;
  font-family: 'Open Sans', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #553D2A;
  margin-bottom: 8px;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 19px;
  right: 23px;
  background: none;
  border: none;
  color: #553D2A;
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .cookie-close:hover {
  color: #b99b44;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  margin-bottom: 5px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #b99b44;
  width: 17px;
  height: 17px;
}
.cookie-modal .cookie-category {
  font-weight: 600;
  margin-bottom: 2px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 13px;
  margin-top: 13px;
}
.cookie-modal .accept {
  background: #b99b44;
  color: #fff6e0;
}
.cookie-modal .accept:hover, .cookie-modal .accept:focus {
  background: #553D2A;
  color: #ffe6b3;
}
.cookie-modal .reject {
  background: #d2c19a;
  color: #60471b;
}
.cookie-modal .reject:hover, .cookie-modal .reject:focus {
  background: #a89871;
}
@media (max-width: 540px) {
  .cookie-modal {
    padding: 18px 7px 14px 11px;
    font-size: 0.98rem;
  }
  .cookie-modal h2 {
    font-size: 1.01rem;
  }
}

/* MICRO-INTERACTIONS */
.cta-primary, .card, .testimonial-card, .cookie-banner button, .cookie-modal button {
  transition: background 0.18s, color 0.14s, box-shadow 0.15s, transform 0.15s;
}
.cta-primary:active, .card:active, .testimonial-card:active, .cookie-banner button:active {
  transform: scale(0.98);
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid #b99b44;
  outline-offset: 2px;
}

/* Hide scrollbars inside mobile menu overlay */
.mobile-menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}

/* Hide visually for accessibility */
.visually-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* HELPER: Prevent absolute-positioned children from overlapping content unnecessarily */
.card > [class^="decor"], .card > [class*=" decor"],
.testimonial-card > [class^="decor"], .testimonial-card > [class*=" decor"] {
  z-index: 0;
}

/* End of luxury_premium CSS style */