/**
* Template Name: Anna


/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Ubuntu",  sans-serif;
  --font-primary: 'Lato', sans-serif;
  --font-secondary: 'Cormorant Garamond', serif;
  --font-default: 'Merriweather', serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #5f687b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #7c9a92;  /* Zmiana z #09bc69 na #7c9a92 */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --primary-color: #7C9A92;     /* Spokojny, stonowany zielony */
  --secondary-color: #4A4A4A;   /* Ciemny szary do tekstów */
  --accent-light: #E8F1F2;      /* Jasny błękitno-szary do tła */
  --accent-warm: #D4B5A6;       /* Ciepły beżowy jako akcent */
  --text-muted: #767676;        /* Szary do mniej ważnych tekstów */
  --background-light: #F8F9FA;  /* Bardzo jasne tło */
  --background-warm: #FAF6F3;   /* Ciepłe jasne tło */
  --success: #91B4A8;           /* Stonowany zielony do potwierdzeń */
  --error: #C98B8B;            /* Stonowany czerwony do błędów */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #5f687b;  /* The default color of the main navmenu links */
  --nav-hover-color: #10bc69; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #5f687b; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #10bc69; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
  background-color: var(--background-warm);
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #10bc69;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #14eb83;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--secondary-color);
  background-color: var(--background-light);
  font-family: var(--font-default);
  font-weight: 300;
  line-height: 1.8;
}

a {
  color: #7c9a92;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

.nazwisko {
  font-size: 1.7em;
  font-weight: 500;
}

.adres {
  font-size: 2em;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 40px;
}

.adres_kontakt {
  color: #ffffff!important;
  font-size: 1.6em;
}

.kontakth3 {
  color: #7c9a92!important;
  font-size: 1.8em;
}

h1,
h2,
h3,
h4,
h5,
h6,
.sitename {
  color: #7c9a92;
  font-family: var(--font-default);
  font-weight: 700;
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: rgba(255, 255, 255, 0.95);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid rgba(124, 154, 146, 0.1);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 70px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--primary-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 5px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: #8AABA2;
  box-shadow: 0 8px 28px rgba(124, 154, 146, 0.2);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 19px;
    font-family: var(--font-primary);
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--primary-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #7c9a92;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-warm);
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--primary-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #7c9a92;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: transparent;
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
  color: var(--primary-color);
}

.section-title span {
  position: absolute;
  top: 4px;
  color: #d4b5a638;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  color: #b7b7b7;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../img/grafiki/anna_background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
  filter: brightness(0.8);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.quote-box {
  width: 110%;
  margin: 0 auto;
  text-align: center;
  transform: translateX(-5%);
}

.quote-box p:first-child {
  font-size: 1.8rem;
  font-style: italic;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 2;
  font-weight: 100;
}

.quote-box p:last-child {
  font-size: 1.2rem;
  color: white;
  text-align: center;
}

.btn-get-started {
  background: var(--primary-color);
  padding: 15px 35px;
  border-radius: 50px;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-get-started:hover {
  background: var(--primary-color-dark);
  transform: translateY(-3px);
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 20%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 4px solid #7c9a92;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 30px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  color: #cfcfcf;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

.help-list {
  list-style: none;
  padding: 0;
}

.help-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: start;
}

.help-list li i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 5px;
}

.price-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.price-item p {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.price-item h4 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin: 0;
}

.service-details h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.service-item-large {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
}


.service-item-large .icon {
  width: 72px;
  height: 72px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-item-large .icon i {
  color: #fff;
  font-size: 28px;
  line-height: 0;
}

.service-item-large h3 {
  color: #7c9a92;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.service-item-large p {
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-size: 16px;
  line-height: 1.8;
}

.service-item-large:hover {
  transform: translateY(-5px);
}

.quote-wrapper {
  margin-bottom: 2rem;
}

.quote-text {
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid var(--accent-warm);
}

.quote-author {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 0.5rem;
  font-weight: 400;
}

.service-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-header .icon {
  font-size: 4.8rem;
  color: #fff;
  opacity: 0.9;
  flex-shrink: 0;
}

.service-header h4 {
  margin: 0;
  width: 100%;
}

.service-header h4 a {
  color: #fff;
  text-decoration: none;
  font-size: 4rem;
  font-weight: 400;
  display: block;
  line-height: 1.2;
  word-wrap: break-word;
}

.service-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.service-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 300;
  margin-top: auto;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  box-shadow: 0 2.5px 7.5px rgba(0, 0, 0, 0.1);
}

.service-header h4 a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Media queries dla wersji mobilnej */
@media screen and (max-width: 992px) {
  .quote-box p:first-child {
    font-size: 1.2rem;  /* Znacznie mniejszy cytat */
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  
  .quote-box p:last-child {
    font-size: 0.9rem;  /* Mniejszy podpis */
  }
}

@media screen and (max-width: 576px) {
  .quote-box p:first-child {
    font-size: 1.4rem;
    line-height: 1.7;
  }
  
  .quote-box p:last-child {
    font-size: 0.8rem;
  }
}

/* Główny kontener */
.main {
  position: relative;
}

/* Tło parallax */
.parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../img/grafiki/anna_background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -999;
}

/* Przyciemnienie tła */
.parallax-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Zwiększ ostatnią wartość (0.5) aby było ciemniejsze */
  z-index: 1;
}

/* Style dla sekcji z zawartością */
.content-section {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95); /* Domyślne białe tło z przezroczystością */
  margin: 0;
  border-radius: 5px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* Specjalne style dla sekcji hero */
.hero.content-section {
  background: transparent;
  box-shadow: none;
  min-height: 100vh;
  margin-top: 0;
}

/* Modyfikacja tła dla sekcji z jasnym tłem */
.light-background.content-section {
  background: rgba(248, 249, 250, 0.95);
}

/* Dostosowanie quote-box w hero */
.quote-box {
  background: transparent;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: none;
}

/* Dodaj płynne przejścia */
.content-section {
  transition: transform 0.3s ease-out;
}

/* Opcjonalnie: efekt unoszenia się sekcji przy najechaniu */
.content-section:hover {
  transform: translateY(-5px);
}

/* Dostosowanie dla mobile */
@media (max-width: 768px) {
  .content-section {
    margin: 1rem 0;
    border-radius: 10px;
  }
}

/* Zwiększ odstęp między elementami */
.row.gy-4 {
  --bs-gutter-y: 2rem;
}

.full-width-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0 2rem;
}

.service-wrapper {
  padding: 2rem;
}

.service-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.service-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.service-header .icon {
  font-size: 2rem;
  color: #fff;
  opacity: 0.9;
  flex-shrink: 0;
}

.service-header h4 {
  margin: 0;
  width: 100%;
}

.service-header h4 a {
  color: #b3c6c1;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 400;
  display: block;
  line-height: 1.3;
  word-wrap: break-word;
}

.service-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 300;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  box-shadow: 0 2.5px 7.5px rgba(0, 0, 0, 0.1);
}

/* Responsywność */
@media (max-width: 1200px) {
  .service-item {
    padding: 2rem;
  }
  
  .service-header .icon {
    font-size: 0;
  }
  
  .service-header h4 a {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .service-item p {
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .services-container {
    flex-direction: column;
    padding: 2rem;
  }

  .service-box {
    width: 100%;
  }
}

.services-row {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.col-2 {
  flex: 0 0 auto;
  width: 33.333333%;
  padding: 1rem;
}

/* Media queries dla wersji mobilnej */
@media screen and (max-width: 992px) {
  .services-row {
    width: 90%;
    flex-direction: column;
  }
  
  .col-2 {
    width: 100%;
    padding: 0.5rem 0;
  }
  
  .service-item {
    padding: 1.5rem;
  }
  
  .service-header {
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .service-header .icon {
    font-size: 2rem;  /* Znacznie mniejsza ikona */
  }
  
  .service-header h4 a {
    font-size: 1.75rem;  /* Znacznie mniejszy nagłówek */
    line-height: 1.2;
  }
  
  .service-item p {
    font-size: 1rem;  /* Mniejszy tekst */
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 576px) {
  .services-row {
    width: 95%;
  }
  
  .service-item {
    padding: 1.25rem;
  }
  
  .service-header .icon {
    font-size: 1.5rem;  /* Jeszcze mniejsza ikona */
  }
  
  .service-header h4 a {
    font-size: 1.25rem;  /* Jeszcze mniejszy nagłówek */
  }
  
  .service-item p {
    font-size: 0.9rem;  /* Jeszcze mniejszy tekst */
  }
}

@media (max-width: 991px) {
  .container-fluid {
    flex-direction: column;
    padding: 15px;
  }

  .logo-container {
    width: 100%;
    margin-bottom: 15px;
  }

  .logo-container .logo {
    justify-content: center;
  }

  .logo-container .sitename {
    text-align: center;
    font-size: 24px!important;
  }

  .mobile-controls {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .mobile-nav-toggle {
    position: static;
    margin: 0;
  }

  .btn-getstarted {
    margin: 0;
  }
}

@media (min-width: 992px) {
  .mobile-controls {
    display: contents;
  }
}

.col-lg-6.position-relative.align-self-start {
  width: 40%;
  display: flex;
  justify-content: flex-end;  /* Przesuwa zawartość na prawo */
  padding-right: 2rem;  /* Odstęp od tekstu */
}

.col-lg-6.position-relative.align-self-start img {
  width: 50%;
  height: auto;
  display: block;
}

.col-lg-6.content {
  width: 60%;
  padding-right: 10%;
}

/* Responsywność */
@media screen and (max-width: 992px) {
  .col-lg-6.position-relative.align-self-start {
    width: 100%;
    justify-content: center;  /* Centruje na mobile */
    padding-right: 0;
  }
  
  .col-lg-6.position-relative.align-self-start img {
    width: 50%;
  }
  
  .col-lg-6.content {
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
  }
}

/* Style dla sekcji z doświadczeniem */
.col-12.content {
  padding-left: 10%;
  padding-right: 10%;
}

.col-12.content p {
  text-align: justify;
}

/* Style dla sekcji z wykształceniem */
.col-lg-6.content {
  padding-right: 10%;  /* Wyrównanie do prawej krawędzi sekcji doświadczenia */
}

.col-lg-6.content ul {
  text-align: justify;
}

.col-lg-6.content li span {
  display: inline-block;
  text-align: left;
}

/* Responsywność */
@media screen and (max-width: 992px) {
  .col-lg-6.content {
    padding-left: 10%;  /* Na mobile dodajemy padding z lewej */
    padding-right: 10%;
  }
}

.help-list, .services-list, .price-list {
  list-style: none;
  padding-left: 0;
}

.help-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.help-list li:before {
  content: "•";
  color: #7c9a92;
  position: absolute;
  left: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price {
  font-weight: 600;
  color: #7c9a92;
}

@media screen and (max-width: 768px) {
  .service-item-large {
    padding: 1.5rem;
  }
  
  .service-item-large h3 {
    font-size: 1.25rem;
  }
}

.contact-section {
  background-image: url('../img/grafiki/drzewo.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;  /* Opcjonalnie, dla efektu parallax */
  position: relative;
  padding: 160px 0;
}

/* Nakładka przyciemniająca dla lepszej czytelności tekstu */
.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);  /* Półprzezroczysta czarna nakładka */
}

.contact_data {
  width: 100%;
  text-align: center;
}

/* Upewniamy się, że zawartość jest nad nakładką */
.contact-section .container {
  position: relative;
  z-index: 2;
}

/* Dostosowanie kolorów tekstu dla lepszej czytelności na tle */
.contact-section h2,
.contact-section h3,
.contact-section p,
.contact-section a {
  color: #fff;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 24px;
    line-height: 1.3;
  }
  
  .hero blockquote {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .about h2 {
    font-size: 24px;
    margin: 20px 0;
  }
  
  .about h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
 .about p {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .contact h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .service-item {
    padding: 25px;
  }
  
  .service-item i {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .service-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .service-item p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .adres {
    font-size: 20px;
    margin-bottom: 25px;
  }
  
  .adres_kontakt {
    font-size: 18px;
  }
  
  .kontakth3 {
    font-size: 20px;
  }

  .navbar-mobile a,
  .navbar-mobile a:focus {
    font-size: 16px;
    padding: 15px 20px;
  }

  .testimonial-item h3 {
    font-size: 18px;
  }

  .testimonial-item h4 {
    font-size: 14px;
  }

  .testimonial-item p {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 575px) {
  .hero h2 {
    font-size: 22px;
  }
  
  .hero blockquote {
    font-size: 15px;
  }
  
  .about h2 {
    font-size: 22px;
  }
  
  .about h3 {
    font-size: 18px;
  }
  
  .about p {
    font-size: 14px;
  }
  
  .contact h2 {
    font-size: 22px;
  }
  
  .service-item {
    padding: 20px;
  }
  
  .service-item i {
    font-size: 24px;
  }
  
  .service-item h3 {
    font-size: 16px;
  }
  
  .service-item p {
    font-size: 14px;
  }
  
  .adres {
    font-size: 18px;
  }
  
  .adres_kontakt {
    font-size: 16px;
  }
  
  .kontakth3 {
    font-size: 18px;
  }

  .testimonial-item h3 {
    font-size: 16px;
  }

  .testimonial-item h4 {
    font-size: 13px;
  }

  .testimonial-item p {
    font-size: 14px;
  }
}

.logo-container {
  display: contents;
}

@media (max-width: 991px) {
  .logo-container {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  .logo-container .logo {
    justify-content: center;
  }
}

.mobile-only {
  display: none;
}

@media (max-width: 1200px) {
  .mobile-only {
    display: block;
    margin-top: 120px;
    text-align: center;
  }
}

.mobile-contact-info {
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin: 15px 0;
}

.mobile-contact-section {
  margin-bottom: 20px;
}

.mobile-contact-section:last-child {
  margin-bottom: 0;
}

.mobile-contact-section h4 {
  color: var(--accent-color);
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.mobile-contact-section .phone {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

.mobile-contact-section .address {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
}