/* ===============================================================
   Mindglanz "Vintage Retro" UI CSS
   Modern Responsive Flexbox-Only CSS with Brand Guidelines
   =============================================================== */

/* ==== CSS Reset ==== */
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 {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    background: #F5F2EE;
    color: #364155;
    min-height: 100vh;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: .005em;
    -webkit-font-smoothing: antialiased;
    background-image: url('../assets/pattern-retro.png'); /* subtle retro repeating pattern */
    background-repeat: repeat;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
a {
    color: #6B4C35;
    text-decoration: none;
    transition: color .18s cubic-bezier(.7,.2,.35,1);
    cursor: pointer;
}
a:hover, a:focus {
    color: #8EB3A9;
    outline: none;
}
ul, ol {
    margin-left: 24px;
    margin-bottom: 16px;
}
li {
    margin-bottom: 8px;
    font-size: 1rem;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #364155;
    margin-bottom: 10px;
}
h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
}
h2 {
    font-size: 2rem;
    margin-bottom: 18px;
}
h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}
h4, h5, h6 {
    font-size: 1.1rem; margin-bottom:8px;
}
p {
    margin-bottom: 16px;
    color: #4F3B2D;
    font-size: 1.09rem;
}
strong {
    color: #7D5B38;
}

/* === Retro/Vintage palette + accents === */
:root {
  --mg-primary: #364155;
  --mg-secondary: #8EB3A9;
  --mg-accent: #F5F2EE;
  --mg-brown: #71554B;
  --mg-yellow: #EECB71;
  --mg-orange: #E29A38;
  --mg-blue: #5C6D85;
  --mg-red: #DB7161;
  --mg-neutral: #E4DBCF;
  --mg-shadow: rgba(54,65,85,.16);
  --mg-pattern: url('../assets/pattern-retro.png');
}

/* =========== Typography scale =========== */
body { font-size: 1rem; }
h1    { font-size: 2.8rem; }
h2    { font-size: 2rem; }
h3    { font-size: 1.35rem; }
h4, h5, h6 { font-size: 1.1rem; }

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.12rem; }
}

.container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 16px;
}
.content-wrapper {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 16px 0;
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: var(--mg-accent);
    border-radius: 18px;
    box-shadow: 0 2px 12px var(--mg-shadow);
    position: relative;
}

@media (max-width: 600px) {
  .section {
    margin-bottom: 30px;
    padding: 24px 8px;
  }
}

/* ==== Header ==== */
header {
    background: linear-gradient(90deg, #EECB71 0%, #F5F2EE 50%, #8EB3A9 100%);
    border-bottom: 2px solid #D1C2A4;
    box-shadow: 0 2px 8px var(--mg-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 12px 16px 12px 16px;
    flex-wrap: wrap;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo img {
    width: 46px; height: 46px;
}
.main-nav {
    display: flex;
    gap: 26px;
    align-items: center;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
}
.main-nav a {
    color: #364155;
    padding: 8px 2px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.18s, color 0.18s;
    position: relative;
}
.main-nav a:hover, .main-nav a:focus {
    color: #E29A38;
    border-bottom: 2px solid #E29A38;
}
.btn-primary {
    background: #DB7161;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.17rem;
    padding: 10px 28px;
    border-radius: 38px;
    border: none;
    font-weight: 700;
    letter-spacing: .05em;
    box-shadow: 0 6px 18px -5px var(--mg-shadow);
    transition: background .18s, box-shadow .18s, color .18s;
    margin-left: 16px;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(40,24,13,.09);
}
.btn-primary:hover, .btn-primary:focus {
    background: #E29A38;
    color: #fffbea;
    box-shadow: 0 4px 18px 0 rgba(225,155,40,.12);
    text-decoration: underline;
}

/* Hide mobile toggles on desktop */
.mobile-menu-toggle {
    display: none;
    background: #DB7161;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 1.8rem;
    box-shadow: 0 3px 16px rgba(54,65,85,.14);
    cursor: pointer;
    transition: background .18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
    background: #E29A38;
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .btn-primary { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* =============== Mobile Menu =============== */
.mobile-menu {
    position: fixed;
    z-index: 3300;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(120deg, #E29A38 0, #F5F2EE 60%, #8EB3A9 100%);
    box-shadow: 0 12px 48px var(--mg-shadow);
    transform: translateX(100%);
    transition: transform 0.33s cubic-bezier(.82,.18,.2,1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 36px 16px 24px;
    gap: 18px;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    background: #7D5B38;
    color: #fff;
    border: none;
    font-size: 2rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    align-self: flex-end;
    cursor: pointer;
    box-shadow: 0 3px 16px rgba(54,65,85,.12);
    transition: background .18s;
    margin-bottom: 20px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    background: #E29A38;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.mobile-nav a {
    font-size: 1.25rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    color: #364155;
    padding: 14px 2px 12px 4px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    color: #E29A38;
    border-bottom: 2px solid #E29A38;
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/* =============== Hero Banner =============== */
.hero {
    background: linear-gradient(96deg, #8EB3A9 35%, #F5F2EE 60%, #EECB71 100%);
    border-radius: 0 0 36px 36px;
    padding: 56px 0 40px 0;
    box-shadow: 0 6px 29px 0 rgba(54,65,85,.13);
    margin-bottom: 60px;
}
.hero .container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    min-height: 220px;
}
.hero h1 {
    color: #7D5B38;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.3rem;
    text-shadow: 0 1px 2px #e4dbcf6e;
}
.hero p {
    color: #364155;
    font-size: 1.17rem;
    margin-bottom: 24px;
}
.hero .btn-primary {
    margin-top: 12px;
}
@media (max-width: 700px) {
  .hero {
    border-radius: 0 0 18px 18px;
    padding: 32px 0 22px 0;
  }
  .hero h1 { font-size: 1.4rem; }
}

/* =========== Features Grid & Cards =========== */
.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    justify-content: flex-start;
    margin-bottom: 8px;
}
.feature-card {
    flex: 1 1 210px;
    min-width: 180px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: #fffbe6;
    border-radius: 16px;
    padding: 26px 22px 22px 22px;
    box-shadow: 0 4px 16px 0 rgba(54,65,85,.10);
    border: 2px solid #EECB71;
    position: relative;
    margin-bottom: 20px;
    transition: box-shadow .19s, border-color .18s, transform .21s;
}
.feature-card img {
    width: 44px; height: 44px;
    margin-bottom: 8px;
    filter: sepia(0.5) hue-rotate(-15deg) contrast(1.2);
}
.feature-card h3, .feature-card span {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #7D5B38;
    margin-bottom: 8px;
    font-size: 1.2rem;
}
.feature-card p {
    color: #4F3B2D;
    font-size: 1rem;
}
.feature-card:hover, .feature-card:focus-within {
    box-shadow: 0 10px 34px 0 rgba(226,155,56,.14);
    border-color: #E29A38;
    transform: translateY(-2px) scale(1.033);
}

@media (max-width: 850px) {
  .feature-grid {gap: 20px;}
  .feature-card {max-width: 100%;}
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-card {
    width: 100%;
    min-width: 0;
  }
}

/* ==== Service Cards ==== */
.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 8px;
}
.service-card {
    flex: 1 1 240px;
    min-width: 220px;
    max-width: 310px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: #F5F2EE;
    border: 2px solid #8EB3A9;
    border-radius: 14px;
    box-shadow: 0 4px 16px 0 rgba(54,65,85,.09);
    padding: 28px 20px 22px 20px;
    position: relative;
    margin-bottom: 20px;
    transition: box-shadow .19s, border-color .16s, transform .17s;
}
.service-card h3 {
    color: #364155;
    font-size: 1.17rem;
    margin-bottom: 7px;
}
.service-card p {
    font-size: 1.02rem;
    color: #4F3B2D;
}
.service-price {
    margin-top: 12px;
    color: #DB7161;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .05em;
}
.service-card:hover, .service-card:focus-within {
    box-shadow: 0 8px 34px 0 rgba(142,179,169,.13);
    border-color: #364155;
    transform: translateY(-3px) scale(1.027);
}
@media (max-width: 900px) {
  .service-cards { gap: 14px; }
}
@media (max-width: 600px) {
  .service-cards {
    flex-direction: column;
    gap: 17px;
  }
}

/* ====== Content grid utility classes ====== */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; border-radius: 15px; background: #fff; box-shadow: 0 2px 7px var(--mg-shadow); }
.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; }

/* ============== Testimonial Cards ============== */
.testimonial-slider {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 10px;
}
.testimonial-card {
    align-items: flex-start;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 18px 0 rgba(54,65,85,.11);
    padding: 26px 26px 20px 26px;
    min-width: 230px;
    max-width: 330px;
    flex: 1 1 264px;
    margin-bottom: 20px;
    transition: box-shadow .17s, transform .15s;
    border: 2px solid #8EB3A9;
    position: relative;
}
.testimonial-card p {
    color: #364155;
    font-size: 1.07rem;
    font-style: italic;
    margin-bottom: 14px;
}
.testimonial-author {
    display: block;
    font-size: 1rem;
    color: #E29A38;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: .03em;
    margin-top: 8px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
    box-shadow: 0 14px 32px 0 rgba(54,65,85,.16);
    transform: translateY(-2px) scale(1.02);
}
@media (max-width: 730px) {
  .testimonial-slider {
    gap: 12px; flex-direction: column;
  }
  .testimonial-card { max-width: 100%; }
}

/* ============== CTA Banner ============== */
.cta-banner {
    width: 100%;
    background: linear-gradient(94deg, #E29A38 10%, #EECB71 80%);
    padding: 38px 0 34px 0;
    border-radius: 19px;
    box-shadow: 0 2px 14px 0 rgba(210,140,38,.10);
    color: #364155;
    margin-bottom: 42px;
    text-align: center;
}
.cta-banner .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cta-banner h2 {
    color: #7D5B38;
    margin-bottom: 8px;
    font-size: 2.1rem;
    text-shadow: 0 2px 8px #e4dbcf35;
}
.cta-banner p {
    font-size: 1.19rem;
    color: #364155;
    margin-bottom: 18px;
}
.cta-banner .btn-primary {
    margin-top: 16px;
    font-size: 1.15rem;
    padding: 12px 38px;
}
@media (max-width: 700px) {
  .cta-banner { padding: 20px 0 22px 0; border-radius: 9px; }
  .cta-banner h2 { font-size: 1.25rem; }
}

/* ========== Footer ========== */
footer {
    background: #F5F2EE;
    border-top: 2px solid #EECB71;
    margin-top: 32px;
    font-size: 1rem;
}
.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 0 14px 0;
}
.footer-main .logo img {
    width: 38px; height: 38px;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-nav a {
    color: #7D5B38;
    font-size: 1.02rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    transition: color 0.18s;
}
.footer-nav a:hover {
    color: #DB7161;
    text-decoration: underline;
}
.footer-contact {
    color: #71554B;
    font-size: 0.98rem;
    font-family: 'Open Sans', Arial, sans-serif;
}
.footer-contact img {
    width: 17px; height: 17px; vertical-align: middle;
    filter: grayscale(.19) sepia(.36) contrast(1.3);
    margin-right: 7px;
}
.footer-bottom {
    width: 100%;
    border-top: 1px solid #EECB71;
    padding: 8px 0 10px 0;
    color: #7D5B38;
    text-align: center;
    font-size: 0.98rem;
}
@media (max-width: 850px) {
  .footer-main {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* ========== Secondary and Tertiary Buttons ========== */
.btn-tertiary {
    background: #EECB71;
    color: #364155;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    padding: 7px 19px;
    border-radius: 23px;
    border: none;
    font-weight: 600;
    margin-left: 10px;
    box-shadow: 0 2px 6px rgba(54,65,85,.10);
    transition: background .18s, color .18s;
}
.btn-tertiary:hover, .btn-tertiary:focus {
    background: #DB7161;
    color: #fff;
}

/* =========== Section-specific List Styling =========== */
.service-list, .workshop-list, .benefits-list, .course-list, .contact-details {
    list-style: none;
    padding-left: 0;
    margin-bottom: 26px;
    font-size: 1.04rem;
}
.service-list li, .workshop-list li, .benefits-list li, .course-list li, .contact-details li {
    margin-bottom: 13px;
    color: #4F3B2D;
    padding-left: 34px;
    position: relative;
}
.service-list li:before, .workshop-list li:before, .benefits-list li:before, .course-list li:before, .contact-details li:before {
    content: '\2605'; /* retro star */
    position: absolute;
    left: 0; top: 0;
    color: #E29A38;
    font-size: 1.1em;
    line-height: 1.1;
}
.contact-details li img {
    width: 20px;
    height: 20px;
    filter: sepia(0.5) hue-rotate(-15deg) contrast(1.15);
    margin-right: 10px;
    vertical-align: middle;
}

/* =========== About Section =========== */
.about-section {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(142,179,169,.14);
    padding: 22px 26px;
    margin-bottom: 16px;
    border-left: 8px solid #8EB3A9;
}
.about-section ul {
    list-style-type: disc;
    margin-left: 32px;
}
@media (max-width:600px) {
  .about-section { padding: 10px 9px; border-radius: 11px; }
}

/* =========== Responsive Layouts =========== */
@media (max-width: 768px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-main {
    flex-direction: column;
    gap: 22px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* =========== Cookie Consent Banner & Modal =========== */
.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    width: 100vw;
    background: linear-gradient(90deg, #E29A38 30%, #EECB71 100%);
    color: #4F3B2D;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    box-shadow: 0 -2px 26px rgba(112,86,48,.19);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding: 20px 12px 22px 12px;
    z-index: 5000;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .33s, transform .33s;
}
.cookie-banner.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateY(50px);
}
.cookie-banner p { margin-bottom: 0; }
.cookie-banner .btn {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    border: none;
    border-radius: 21px;
    padding: 9px 23px;
    margin: 0 7px;
    cursor: pointer;
    margin-right: 0;
    margin-top: 0;
    box-shadow: 0 1px 4px rgba(54,65,85,.09);
    font-weight: 700;
    transition: background .16s, color .13s;
    outline: none;
}
.cookie-banner .accept {
    background: #8EB3A9;
    color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
    background: #364155;
    color: #fff;
}
.cookie-banner .reject {
    background: #fff;
    color: #DB7161;
    border: 2px solid #DB7161;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
    background: #DB7161;
    color: #fff;
}
.cookie-banner .settings {
    background: #EECB71;
    color: #364155;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
    background: #364155;
    color: #EECB71;
}

/* ===== Cookie Modal ===== */
.cookie-modal {
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    width: 100vw; height: 100vh;
    background: rgba(54,65,85,0.43);
    z-index: 5500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    pointer-events: all;
    transition: opacity .32s;
}
.cookie-modal.hide {
    opacity: 0;
    pointer-events: none;
}
.cookie-modal-content {
    background: #fffbe6;
    color: #364155;
    border-radius: 18px;
    box-shadow: 0 8px 44px rgba(54,65,85,.24);
    padding: 34px 40px 28px 38px;
    max-width: 390px;
    width: 96vw;
    display: flex;
    flex-direction: column;
    gap: 21px;
}
.cookie-modal-content h3 {
    color: #7D5B38;
    font-size: 1.33rem;
    margin-bottom: 9px;
    text-align: left;
}
.cookie-modal-content .cookie-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.cookie-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 11px 14px;
    border: 1px solid #E29A38;
}
.cookie-toggle label {
    color: #364155;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}
.cookie-toggle input[type=checkbox] {
    width: 22px;
    height: 22px;
    accent-color: #E29A38;
}
.cookie-toggle input[disabled] {
    accent-color: #8EB3A9;
    opacity: .4;
    cursor: not-allowed;
}
.cookie-modal-content .btn-row {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.cookie-modal-content .btn-row .btn {
    min-width: 102px;
    font-size: 1rem;
}
.cookie-modal-content .btn-row .accept {
    background: #8EB3A9;
    color: #fff;
}
.cookie-modal-content .btn-row .reject {
    background: #fff;
    color: #DB7161;
    border: 2px solid #DB7161;
}
.cookie-modal-content .btn-row .close {
    background: #EECB71;
    color: #364155;
}
.cookie-modal-content .btn-row .accept:hover, .cookie-modal-content .btn-row .accept:focus {
    background: #364155; color:#fff; }
.cookie-modal-content .btn-row .reject:hover, .cookie-modal-content .btn-row .reject:focus {
    background: #DB7161; color: #fff; }
.cookie-modal-content .btn-row .close:hover, .cookie-modal-content .btn-row .close:focus {
    background: #364155; color: #EECB71; }

/* ============ Animations & Micro-interactions ============ */
.btn-primary, .btn-tertiary, .cookie-banner .btn, .mobile-menu-toggle, .mobile-menu-close {
    transition: background .18s, color .18s, box-shadow .14s, transform .13s;
}
.feature-card, .service-card, .testimonial-card, .cta-banner, .about-section, .cookie-modal-content {
    transition: box-shadow .19s, border-color .16s, transform .17s;
}
.feature-card:active, .service-card:active, .testimonial-card:active {
    transform: scale(0.98);
}
.btn-primary:active, .btn-tertiary:active, .cookie-banner .btn:active {
    transform: scale(.96);
}

/* =========== Miscellaneous =========== */
::-webkit-input-placeholder { color: #A89F8A; }
::-moz-placeholder { color: #A89F8A; }
:-ms-input-placeholder { color: #A89F8A; }
::placeholder { color: #A89F8A; }

/* Hide unwanted visually on print */
@media print {
  .cookie-banner, .cookie-modal, .mobile-menu, .main-nav, .mobile-menu-toggle { display: none !important; }
}

/* ===== Vintage/Retro decorative borders/patterns for sections ===== */
.section, .about-section, .testimonial-card, .feature-card, .service-card {
    border-radius: 16px;
    border: 2.5px dashed #D1C2A4;
    background-image: url('../assets/pattern-retro.png');
    background-size: 320px;
    background-repeat: repeat;
    position: relative;
}

/* Remove background pattern for very small screens to reduce clutter */
@media (max-width: 550px) {
  .section, .about-section, .testimonial-card, .feature-card, .service-card {
    background-image: none !important;
  }
}

/* ========================= Fallbacks for No Custom Fonts ======================== */
@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat'), local('Arial');
}
@font-face {
    font-family: 'Open Sans';
    src: local('Open Sans'), local('Arial');
}

/* ================== Ensure No Items Overlap, Spacing =============== */
section, .section { margin-bottom: 60px; }
.card-container > *, .content-grid > *, .feature-grid > *, .service-cards > *, .testimonial-slider > * {
    margin-bottom: 0 !important;
}

/* ------------- For SVG icons retro coloring ------------- */
img[src$=".svg"] {
    filter: sepia(.17) hue-rotate(-20deg) saturate(1.2);
}
img[alt*="logo"] {
    filter: none;
}

/* ===================== End ===================== */
