/* ==========================================================================
   CSS RESET & NORMALIZATION (Mobile First, Retro/Vintage)
   ========================================================================== */

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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8F8F8;
  color: #1a2639;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

*, *:before, *:after { box-sizing: inherit; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
button { appearance: none; border: none; background: none; font: inherit; cursor: pointer; }

/* ==========================================================================
   VINTAGE RETRO COLOR SCHEME -- authentic palette
   ========================================================================== */
:root {
  --primary: #254985;     /* Deep navy blue */
  --primary-dark: #192d4c;
  --secondary: #FEE44C;   /* Butter yellow */
  --accent: #F8F8F8;      /* Warm light background */
  --vintage-red: #DC5752; /* Retro coral red */
  --vintage-orange: #E6A15B; /* Vintage muted orange */
  --vintage-green: #56746B;  /* Muted retro pine green */
  --vintage-brown: #C69C6D;  /* Biscuit brown */
  --text-main: #2D271A;
  --text-dark: #1a2639;
  --bg-paper: #FEF7E0;
  --border: #CCB780;
  --card-shadow: 0 2px 12px rgba(60, 40, 20, 0.10), 0 8px 24px rgba(207, 181, 104, 0.10);
  --radius-main: 18px;
  --radius-card: 14px;
  --font-display: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ==========================================================================
   TYPOGRAPHY (Vintage/Rertro Inspo)
   ========================================================================== */
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-main);
  background-color: var(--bg-paper);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  text-shadow: 1px 2px 0 var(--secondary), 0 3px 6px rgba(238,200,55,0.12);
}
h1 { font-size: 2.4rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }
p, li, span { font-size: 1rem; line-height: 1.7; }
p { margin-bottom: 16px; }

@media (min-width: 480px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
}
@media (min-width: 1024px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.4rem; }
  h3 { font-size: 1.4rem; }
}
strong {
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Retro Display Fonts mimic */
.hero h1, .cta h2, .cta h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  color: var(--vintage-red);
}

/* ==========================================================================
   SPACING, CONTAINERS, AND LAYOUT (Flexbox Only!)
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-main);
  background: var(--bg-paper);
  box-shadow: var(--card-shadow);
  border: 1.5px solid var(--border);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--accent);
  border-radius: var(--radius-card);
  border: 1.5px solid var(--border);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  padding: 28px 20px;
  min-width: 260px;
  max-width: 400px;
  transition: transform 0.15s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 10px 22px rgba(60,40,20,0.18), 0 20px 48px rgba(199,156,109,0.16);
  z-index: 2;
}
.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;
}

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

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

@media (max-width: 900px) {
  .container { padding: 0 10px; }
  .content-wrapper { gap: 16px; }
  .card { min-width: 210px; padding: 20px 14px; }
  .section { padding: 28px 8px; }
}
@media (max-width: 768px) {
  .section { margin-bottom: 40px; padding: 20px 5px; }
  .card-container, .content-grid { flex-direction: column; gap: 18px; }
  .text-image-section { flex-direction: column; gap: 18px; }
}

/* ==========================================================================
   NAVIGATION (DESKTOP & MOBILE BURGER MENU)
   ========================================================================== */
header {
  background: var(--primary);
  color: #fff;
  width: 100%;
  box-shadow: 0 2px 14px 0 rgba(37,73,133, 0.065);
  padding-bottom: 3px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-navigation {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 14px 0 10px 0;
}
.main-navigation a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.14rem;
  padding: 6px 12px;
  border-radius: 7px;
  letter-spacing: 0.02em;
  transition: background 0.16s, color 0.16s;
}
.main-navigation a:hover,
.main-navigation a:focus {
  background: var(--secondary);
  color: var(--primary-dark);
}
.main-navigation img {
  height: 44px;
  margin-right: 18px;
}
.cta-button {
  color: var(--primary);
  background: var(--secondary);
  border-radius: 27px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.13rem;
  letter-spacing: 0.08em;
  padding: 11px 30px;
  box-shadow: 0 2px 8px 0 rgba(254,228,76, .10);
  border: 2px solid var(--primary);
  transition: background 0.20s, color 0.16s, transform 0.09s;
  margin-left: 12px;
  cursor: pointer;
  text-shadow: 0 2px 0 rgba(255,255,250,0.10);
}
.cta-button:hover, .cta-button:focus {
  background: var(--vintage-red);
  color: #fff;
  transform: scale(1.04);
  border-color: var(--vintage-red);
}

.mobile-menu-toggle {
  display: none;
}

@media (max-width: 990px) {
  .main-navigation { flex-wrap: wrap; gap: 10px; }
  .main-navigation a { font-size: 1rem; }
  .cta-button { margin-left: 7px; font-size: 1rem; padding: 9px 18px; }
}
@media (max-width: 840px) {
  .main-navigation { flex-wrap: wrap; gap: 7px; }
  .main-navigation img { height: 37px; margin-right: 12px; }
}
@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 17px;
    top: 17px;
    z-index: 20;
    color: #fff;
    font-size: 2rem;
    background: var(--vintage-red);
    border-radius: 8px;
    padding: 7px 14px 9px 14px;
    border: 1.5px solid #fff;
    box-shadow: 0 1px 4px 0 rgba(37,73,133,0.13);
    transition: background 0.16s, color 0.13s;
  }
  .mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
    background: var(--secondary);
    color: var(--primary-dark);
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  width: 100vw;
  background: var(--primary);
  color: #fff;
  z-index: 3001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.9,.02,.45,.97);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  color: #fff;
  font-size: 2.1rem;
  background: var(--vintage-red);
  border-radius: 9px;
  position: absolute;
  right: 18px;
  top: 19px;
  padding: 5px 17px 6px 17px;
  z-index: 3010;
  border: 1px solid #fff;
  box-shadow: 0 1px 10px 0 rgba(220,87,82,0.09);
  transition: background 0.16s, color 0.13s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--secondary);
  color: var(--primary-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 78px;
  width: 100%;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.27rem;
  letter-spacing: 0.055em;
  color: #fff;
  padding: 17px 0 7px 4px;
  border-bottom: 1px dotted var(--secondary);
  transition: background 0.17s, color 0.11s, padding-left 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vintage-red);
  color: #fff;
  padding-left: 16px;
}

/* ==========================================================================
   HERO SECTION & SECTION STYLING
   ========================================================================== */
.hero {
  background: repeating-linear-gradient(105deg, var(--secondary) 0 72px, var(--bg-paper) 72px 144px);
  min-height: 270px;
  padding-top: 35px;
  padding-bottom: 35px;
  border-bottom: 4px dotted var(--vintage-brown);
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  background: rgba(254,247,224,0.96);
  border-radius: 19px;
  box-shadow: 0 4px 20px 0 rgba(199,156,109,0.11);
  border: 2px solid var(--vintage-brown);
  padding: 28px 16px;
  gap: 19px;
  max-width: 664px;
}
.hero h1 {
  color: var(--vintage-red);
  text-shadow: 2px 3px 0 var(--secondary);
}
.hero p {
  margin-bottom: 10px;
  color: var(--text-dark);
  font-size: 1.09rem;
}
@media (max-width: 991px) {
  .hero { padding-top: 20px; padding-bottom: 20px; }
}
@media (max-width: 768px) {
  .hero { min-height: 0; padding: 10px 0 14px; }
  .hero .content-wrapper { padding: 15px 7px; gap: 10px; }
}

/* ==========================================================================
   RETRO LISTS, SERVICE PRICES, BADGES, etc.
   ========================================================================== */
ul, ol {
  margin-bottom: 18px;
  margin-left: 1.8em;
  padding-left: 8px;
  position: relative;
}
ul li, ol li {
  color: var(--text-main);
  margin-bottom: 11px;
  padding-left: 0.25em;
  font-size: 1rem;
  position: relative;
}
ul li:before {
  content: '\25E6';
  color: var(--primary);
  margin-right: 0.59em;
  font-size: 1.1em;
  position: absolute;
  left: -1.2em;
  top: -1px;
}
.service-price {
  display: inline-block;
  font-family: var(--font-display);
  color: var(--vintage-red);
  background: var(--secondary);
  border-radius: 7px;
  border: 1px solid var(--vintage-red);
  padding: 2px 10px 2px 13px;
  font-size: 1.04rem;
  font-weight: 700;
  margin-left: 7px;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fffbe9;
  border-radius: 17px;
  box-shadow: 0 3px 16px 0 rgba(222,200,100,0.08);
  border: 2px solid var(--vintage-brown);
  flex-direction: row;
  font-size: 1.1rem;
  position: relative;
}
.testimonial-card p {
  color: #2D271A;
  flex: 1 1 80%;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: var(--primary-dark);
  font-size: 1.07rem;
  background: var(--secondary);
  border-radius: 5px;
  margin-left: 10px;
  font-family: var(--font-display);
  padding: 3px 12px 1px 8px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .testimonial-card { flex-direction: column; align-items: flex-start; padding: 15px 7px 12px 7px;  }
  .testimonial-card span { margin-left: 0; margin-top: 6px; }
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta {
  background: repeating-linear-gradient(-12deg, var(--vintage-orange) 0 60px, var(--bg-paper) 60px 120px);
  border-radius: 22px;
  border: 2.5px dashed var(--vintage-brown);
  box-shadow: 0 7px 22px 0 rgba(230,161,91,0.10);
  margin-top: 60px;
  margin-bottom: 42px;
  text-align: center;
  padding-top: 23px;
  padding-bottom: 23px;
}
.cta .content-wrapper { align-items: center; }
.cta h2, .cta h3 { color: var(--vintage-green); text-shadow: 1px 2px 0 var(--secondary); }
.cta p {
  color: var(--primary-dark);
  margin-bottom: 14px;
  font-size: 1.06rem;
}
@media (max-width: 768px) {
  .cta { margin-top: 34px; margin-bottom: 32px; padding: 15px 0; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  padding: 0 0 6px 0;
  border-top: 4px dotted var(--vintage-brown);
}
footer .container {
  padding: 0 15px;
  max-width: 1240px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 7px 7px 7px;
}
.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-navigation a {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.01em;
  background: transparent;
  border-radius: 5px;
  padding: 4px 0 4px 0;
  transition: color 0.17s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-contact p {
  font-size: 0.96rem;
  margin-bottom: 4px;
  color: #eef2fa;
}
.footer-contact p strong {
  color: var(--secondary);
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 7px;
}
.footer-social a img {
  width: 33px;
  height: 33px;
  filter: grayscale(35%) brightness(112%);
  border-radius: 7px;
  background: var(--accent);
  border: 1px solid #fffbe9;
  box-shadow: 0 2.5px 6.5px 1px rgba(37,73,133,0.098);
  transition: filter 0.18s, box-shadow 0.18s;
}
.footer-social a:hover img {
  filter: none;
  box-shadow: 0 4px 11px 0 rgba(220,87,82,0.09);
}
@media (max-width: 900px) {
  footer .content-wrapper { gap: 23px; padding: 24px 4px 7px; }
}
@media (max-width: 560px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 2px 5px;
  }
  .footer-social { margin-top: 8px; }
}

/* ==========================================================================
   GENERIC BUTTONS, FORMS, MICRO-INTERACTIONS
   ========================================================================== */
button, .cta-button, .cookie-banner button, .cookie-settings button {
  outline: none;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.19s, color 0.13s, box-shadow 0.18s, border-color 0.20s;
}

input[type="text"], input[type="email"], textarea {
  font-family: var(--font-body);
  border-radius: 5px;
  border: 2px solid var(--vintage-brown);
  background: #fdf7ec;
  padding: 8px 10px;
  margin-bottom: 15px;
  font-size: 1rem;
  transition: border 0.15s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border: 2px solid var(--primary);
  outline: none;
}

/* ==========================================================================
   COOKIE CONSENT BANNER & MODAL (retro look)
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 4000;
  background: #fffbe9;
  color: #2D271A;
  border-top: 3px solid var(--vintage-brown);
  box-shadow: 0 -4px 16px 0 rgba(199,156,109,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 18px 16px 12px 16px;
  width: 100%;
  font-size: 1rem;
  animation: cookieBannerIn 0.7s 0.15s cubic-bezier(.65, 1.1, .5, 1.14) backwards;
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0.2; }
  to { transform: none; opacity: 1; }
}
.cookie-banner p {
  color: var(--text-dark);
  margin-bottom: 7px;
  font-size: 1.05rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-bottom: 2px;
}
.cookie-banner button {
  font-size: 1.01rem;
  padding: 8px 21px;
  border-radius: 22px;
  background: var(--secondary);
  color: var(--primary-dark);
  border: 2px solid var(--vintage-red);
  transition: background 0.18s, color 0.12s;
}
.cookie-banner .accept {
  background: var(--vintage-green);
  color: #fffbe9;
  border-color: var(--primary);
}
.cookie-banner .accept:hover {
  background: var(--primary); color: #fff; }
.cookie-banner .reject {
  background: var(--vintage-red);
  color: #fff;
  border-color: var(--vintage-red);
}
.cookie-banner .reject:hover {
  background: var(--primary-dark); color: #FEE44C; }
.cookie-banner .settings {
  background: var(--secondary);
  color: var(--primary-dark);
  border-color: var(--vintage-brown);
}
.cookie-banner .settings:hover {
  background: var(--vintage-orange);
}

.cookie-modal {
  position: fixed;
  z-index: 4100;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(37, 73, 133, .17);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookieModalIn 0.4s cubic-bezier(.72,.47,.41,.90) backwards;
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-settings {
  background: #fffbe9;
  border-radius: 18px;
  padding: 36px 25px 18px 25px;
  min-width: 315px;
  max-width: 92vw;
  box-shadow: 0 13px 36px 0 rgba(230,161,91,0.11);
  border: 3px solid var(--vintage-brown);
  font-family: var(--font-body);
  font-size: 1.12rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cookie-settings h3 {
  margin-bottom: 16px;
  color: var(--primary-dark);
  font-size: 1.3rem;
  font-family: var(--font-display);
}
.cookie-settings .category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 17px;
}
.cookie-settings .category label {
  font-size: 1.07rem;
  color: var(--primary-dark);
}
.cookie-settings input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--primary);
  border-radius: 5px;
  margin-right: 4px;
}
.cookie-settings button {
  font-size: 1rem;
  margin-right: 13px;
  margin-top: 8px;
  padding: 8px 22px;
  border-radius: 22px;
  background: var(--secondary);
  color: var(--primary-dark);
  border: 2px solid var(--vintage-red);
}
.cookie-settings .close {
  position: absolute;
  top: 14px; right: 23px;
  color: var(--vintage-red);
  background: none;
  font-size: 1.8rem;
  border: none;
}
.cookie-settings .close:hover { color: var(--primary); }

@media (max-width: 600px) {
  .cookie-banner { font-size: 0.95rem; padding: 14px 7px 9px 7px; }
  .cookie-settings { padding: 22px 8px 13px 8px; font-size: 1.01rem; }
}

/* ==========================================================================
   RETRO/VINTAGE DETAILS: Borders, Patterns, Shadows, Animations
   ========================================================================== */
.section, .card, .testimonial-card {
  /* subtle retro print background grain (optional can remove) */
  background-image: url('data:image/svg+xml;utf8,<svg fill="none" height="4" width="4" xmlns="http://www.w3.org/2000/svg"><rect width="3" height="2" x="0.25" y="1.2" fill="%23ffe492" fill-opacity="0.23"/></svg>');
  background-repeat: repeat;
  background-size: 8px 4px;
}
.section {
  border-radius: 18px;
}
.card, .testimonial-card {
  border-radius: 14px;
}

hr {
  border: 0; border-top: 2px dashed var(--vintage-brown);
  margin: 32px 0;
}

/* Subtle hover for all cards */
.card, .testimonial-card {
  transition: box-shadow 0.18s, border 0.19s, transform 0.14s;
}

.card:hover, .testimonial-card:hover {
  box-shadow: 0 3px 17px 0 rgba(37,73,133,0.11), 0 19px 38px 0 rgba(220,87,82,0.06);
  border-color: var(--primary);
}

/* ==========================================================================
   MISC: Text-section (used in about/thankyou/kontakt/etc)
   ========================================================================== */
.text-section, .text-section ul.{
  margin-bottom: 18px;
  line-height: 1.68;
}
.text-section h2, .text-section h3 {
  margin-top: 13px;
  color: var(--primary-dark);
}
.text-section ul {
  margin-top: 6px;
  margin-bottom: 8px;
}

/* ==========================================================================
   SCROLLBAR Retro Custom (nice touch, optional)
   ========================================================================== */
::-webkit-scrollbar {
  width: 11px;
  background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border: 2px solid var(--primary-dark);
  border-radius: 6px;
}

/* ==========================================================================
   PRINT/ACCESSIBILITY
   ========================================================================== */
@media print {
  header, footer, .cookie-banner, .cookie-modal, .mobile-menu { display: none !important; }
  body { background: #fff; color: #222; }
}

/* ==========================================================================
   TRANSITIONS AND MICRO ANIMATIONS
   ========================================================================== */
a, button, .cta-button {
  transition: color 0.14s, background 0.16s, border 0.13s, box-shadow 0.14s, transform 0.13s;
}

/* ==========================================================================
   Z-INDEX LAYERS
   ========================================================================== */
header { z-index: 1000; }
.mobile-menu { z-index: 3001; }
.cookie-banner { z-index: 4000; }
.cookie-modal { z-index: 4100; }

/* ==========================================================================
   Misc: Prevent absolute for cards/content. Only for decor (nav/menu)
   ========================================================================== */

/* ==========================================================================
   END OF VINTAGE RETRO CSS FOR TORIA ENERGIZE
   ========================================================================== */
