/* Arcadia Trendów - style.css (elegant_classic, responsive, flexbox only) */

/* CSS RESET & BASELINE 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 {
  line-height: 1.5;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #FCFAF6;
}
body {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #1B4D3E;
  background: #FCFAF6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1B4D3E;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4A259;
  text-decoration: none;
}
ul, ol {
  margin-left: 2em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
p {
  margin-bottom: 16px;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #273C31;
  font-size: 1rem;
  line-height: 1.65;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #1B4D3E;
  letter-spacing: 0.025em;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 16px; }
h4 { font-size: 1.2rem; margin-bottom: 12px; }
.subheadline {
  font-size: 1.25rem;
  color: #6C7A7A;
  margin-bottom: 28px;
}
blockquote {
  font-style: italic;
  border-left: 4px solid #F4A259;
  margin: 24px 0;
  padding: 12px 20px;
  color: #324339;
  background: #f3efe6;
  border-radius: 6px;
}
strong { font-weight: 700; }
em, i { font-style: italic; }

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 850px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Section spacing patterns */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F9F6F2;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 10px;
    margin-bottom: 36px;
  }
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(45,68,64,0.07);
  padding: 28px 22px;
  min-width: 260px;
  flex: 1 1 300px;
}
.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;
    align-items: flex-start;
  }
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 18px 28px;
  background: #fff;
  border-left: 5px solid #F4A259;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(45,68,64,0.06);
  min-width: 250px;
  max-width: 360px;
  flex: 1 1 260px;
}
.testimonial-card p {
  color: #273C31;
  font-style: italic;
  font-size: 1.07rem;
}
.testimonial-author {
  color: #1B4D3E;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 6px;
  letter-spacing: 0.01em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Services and features list patterns */
.services-list, .feature-grid, .benefits-grid, .report-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding-left: 0;
}
.services-list li, .feature-grid li, .benefits-grid li, .report-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(45,68,64,0.05);
  padding: 22px 18px;
  margin-bottom: 20px;
  flex: 1 1 260px;
}
.services-list .price, .service-card .price {
  color: #1B4D3E;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 8px;
  display: block;
}
.services-list .cta-btn,
section .cta-btn {
  margin-top: 28px;
}
@media (max-width: 900px) {
  .services-list li, .feature-grid li, .benefits-grid li, .report-list li {
    flex: 1 1 100%;
  }
}
.service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(45,68,64,0.07);
  padding: 30px 20px;
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.services-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 768px) {
  .testimonials, .services-list, .feature-grid, .benefits-grid, .report-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* BLOG */
.post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.post-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(45,68,64,0.07);
  padding: 24px 16px;
  min-width: 230px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
}
.post-item h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}
.post-item a {
  margin-top: 14px;
  color: #1B4D3E;
  font-weight: 700;
  transition: color 0.2s;
}
.post-item a:hover {
  color: #F4A259;
}
.featured-article {
  background: #FCFAF6;
  padding: 22px 18px;
  border-left: 5px solid #1B4D3E;
  border-radius: 10px;
  margin-bottom: 18px;
  margin-top: 0;
  max-width: 375px;
  box-shadow: 0 1px 6px rgba(45,68,64,0.07);
}
.featured-article h3 { font-size: 1.1rem; margin-bottom: 6px; }

.newsletter-signup {
  background: #f9f6f2;
  border-radius: 10px;
  padding: 24px 18px;
  box-shadow: 0 1px 6px rgba(45,68,64,0.06);
  margin-bottom: 18px;
}
.newsletter-signup input[type=email] {
  border: 1px solid #dbe2db;
  border-radius: 6px;
  font-size: 1rem;
  padding: 8px 12px;
  margin-right: 10px;
  width: 220px;
}
.newsletter-signup button {
  background: #1B4D3E;
  color: #fff;
  border-radius: 6px;
  padding: 10px 26px;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  cursor: not-allowed;
}
.newsletter-signup .note {
  color: #6C7A7A;
  font-size: 0.95rem;
  margin-left: 12px;
}

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(45,68,64,0.03);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.08rem;
  color: #1B4D3E;
  padding: 4px 10px;
  border-radius: 7px;
  transition: background 0.14s, color 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: #F4A259;
}
@media (max-width: 992px) {
  .main-nav {
    gap: 12px;
  }
}

.cta-btn {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.07rem;
  padding: 12px 32px;
  background: #1B4D3E;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-left: 26px;
  box-shadow: 0 2px 12px rgba(45,68,64,0.04);
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.23s;
  outline: none;
  display: inline-block;
  position: relative;
}
.cta-btn.primary {
  background: #1B4D3E;
  color: #fff;
}
.cta-btn.secondary {
  background: #F4A259;
  color: #1B4D3E;
}
.cta-btn.accent {
  background: #F9F6F2;
  color: #1B4D3E;
  border: 2px solid #1B4D3E;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F4A259;
  color: #1B4D3E;
  box-shadow: 0 6px 27px 0 rgba(60,75,68,.11);
}
.cta-btn.primary:hover,
.cta-btn.primary:focus {
  background: #F4A259;
  color: #fff;
}
.cta-btn.secondary:hover,
.cta-btn.secondary:focus {
  background: #1B4D3E;
  color: #fff;
}
.cta-btn.accent:hover,
.cta-btn.accent:focus {
  background: #1B4D3E;
  color: #F9F6F2;
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .cta-btn { display: none; }
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #1B4D3E;
    margin-left: 18px;
    z-index: 103;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: background 0.16s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #f9f6f2;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(251,248,240,0.97);
  box-shadow: 4px 0 40px 0 rgba(40,55,36,0.08);
  z-index: 110;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.42,1,0.58,1.01);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #1B4D3E;
  font-size: 2.1rem;
  padding: 14px 24px 8px 20px;
  align-self: flex-end;
  cursor: pointer;
  z-index: 120;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F4A259;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 22px 0 0 30px;
}
.mobile-nav a {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.3rem;
  color: #1B4D3E;
  padding: 10px 0;
  text-decoration: none;
  border-radius: 5px;
  width: 100%;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4A259;
  color: #fff;
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/* FOOTER */
footer {
  background: #fff;
  color: #1B4D3E;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  padding-top: 38px;
  box-shadow: 0 2px 24px 0 rgba(45,68,64,0.04);
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  padding-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #1B4D3E;
  text-decoration: none;
  font-size: 1rem;
  margin-bottom: 3px;
  transition: text-decoration 0.14s, color 0.14s;
  border-radius: 4px;
}
.footer-nav a:hover, .footer-nav a:focus {
  text-decoration: underline;
  color: #F4A259;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 1rem;
}
.footer-bottom {
  border-top: 1px solid #ece0c6;
  padding-top: 12px;
  font-size: 0.97rem;
  color: #6C7A7A;
  text-align: center;
  margin-top: 16px;
}
@media (max-width: 700px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

.footer-contact a{
  color: #1b4d3e;
  text-decoration: underline;
}
.footer-contact a:hover {
  color: #F4A259;
}

/* MISC UTILITIES & DECOR */
.price {
  color: #F4A259;
  font-weight: 600;
  font-size: 1.18rem;
}
.map-placeholder {
  background: #F9F6F2;
  border: 1px dashed #dedbcc;
  border-radius: 9px;
  color: #6C7A7A;
  padding: 16px 20px;
}

/* ADDRESS TAG */
address {
  font-style: normal;
  color: #324339;
  background: #f9f6f2;
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 14px;
}
address a { color: #1B4D3E; }
address a:hover { color: #F4A259; }

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #312c22;
  color: #F9F6F2;
  z-index: 1050;
  box-shadow: 0 -4px 28px 0 rgba(45,68,64,0.15);
  padding: 24px 10px 18px 10px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
  transition: transform 0.35s cubic-bezier(.42,1,0.58,1.01), opacity 0.25s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-message {
  max-width: 640px;
  color: #f9f6f2;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 7px;
  border: none;
  margin: 0 5px 4px 0;
  cursor: pointer;
  background: #fff;
  color: #1B4D3E;
  transition: background 0.12s, color 0.12s, box-shadow 0.18s;
  box-shadow: 0 2px 7px rgba(45,68,64,0.09);
}
.cookie-btn.accept {
  background: #1B4D3E;
  color: #fff;
}
.cookie-btn.reject {
  background: #ce2c19;
  color: #fff;
}
.cookie-btn.settings {
  background: #F4A259;
  color: #1B4D3E;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F4A259;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #1B4D3E;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #AB2414;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 8px 16px 8px;
    font-size: 0.93rem;
  }
}
/* Cookie preferences modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(45,68,64,0.27);
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #1B4D3E;
  border-radius: 13px;
  padding: 38px 34px 24px 34px;
  min-width: 340px;
  max-width: 98vw;
  box-shadow: 0 4px 28px rgba(45,68,64,0.17);
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F9F6F2;
  border-radius: 7px;
  padding: 10px 12px;
}
.cookie-category label {
  flex: 1;
  color: #1B4D3E;
}
.cookie-category input[type=checkbox],
.cookie-category input[type=radio] {
  accent-color: #1B4D3E;
  width: 19px; height: 19px;
}
.cookie-category.essential label {
  font-weight: 700;
  color: #6C7A7A;
  font-style: italic;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.cookie-modal .cookie-btn {
  margin: 0;
}
.cookie-modal .cookie-btn.close {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 1.7rem;
  background: transparent;
  color: #1B4D3E;
  border: none;
  padding: 2px 10px;
  box-shadow: none;
}
.cookie-modal .cookie-btn.close:hover {
  color: #F4A259;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 18px 7vw 18px 7vw;
    min-width: 90vw;
  }
}

/* ANIMATION UTILS */
.fade-in {
  animation: fade-in 0.4s ease-in forwards;
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.slide-in-right {
  animation: slide-in-right 0.4s cubic-bezier(.4, 1.7, 0.7, 1) forwards;
}
@keyframes slide-in-right {
  from { transform: translateX(45vw); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.slide-out-right {
  animation: slide-out-right 0.3s cubic-bezier(.76,0,0.24,1) forwards;
}
@keyframes slide-out-right {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100vw); opacity: 0; }
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
}
@media (max-width: 850px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  section { padding: 24px 0 0 0; }
}
@media (max-width: 768px) {
  body, html { font-size: 15px; }
  .content-wrapper { gap: 15px; }
  .card, .service-card, .post-item, .testimonial-card { min-width: 0; width: 100%; }
  .card-container, .content-grid { flex-direction: column; gap: 14px; }
  .footer-main { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 550px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.08rem; }
  .container { padding: 0 7px; }
  .section { padding: 13px 3px; }
  .card, .service-card, .testimonial-card { padding: 18px 8px; }
}

/* UTILS */
.d-none { display: none !important; }

/************************************************************
      Elegant Classic Finishing Touches: Shadows, Borders
************************************************************/
.card, .service-card, .post-item, .testimonial-card, .featured-article {
  box-shadow: 0 2px 14px 0 rgba(45,68,64,0.07);
  border-radius: 12px;
}

/************************************************************
      Accessibility: Focus, ARIA, Contrast in Testimonials
************************************************************/
a:focus, .cta-btn:focus, .cookie-btn:focus, .mobile-nav a:focus {
  outline: 2px solid #F4A259;
  outline-offset: 3px;
}
.testimonial-card,
.testimonials {
  background: #fff;
  color: #212c21;
}
.testimonial-card p,
.testimonial-card .testimonial-author {
  color: #1B4D3E;
  font-size: 1.07rem;
}

/***** END OF CSS FILE *****/
