:root {

    --primary-color: #2c6e49;

    --secondary-color: #4c956c;

    --light-color: #fefee3;

    --dark-color: #1d3557;

    --accent-color: #e63946;

    --text-color: #333;

    --light-gray: #f5f5f5;

    --transition: all 0.3s ease;

}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



body {

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    line-height: 1.6;

    color: var(--text-color);

    background-color: #fff;

    overflow-x: hidden;

}



.container {

    width: 90%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 15px;

}



/* Sticky Menu */

header {

    background-color: white;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

    position: sticky;

    top: 0;

    z-index: 1000;

}



nav {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 1.3rem 0 0.5rem 0;

}



.logo {

    height: 2rem;

    max-width: 12rem;

    display: flex;

    align-items: center;

}



.logo img {

    height: 100%;

    width: 100%;

    object-fit: contain;

    object-position: left center;

}



@media (max-width: 768px) {

    .logo {

        height: 2.5rem;

        max-width: 10rem;

    }

    

    nav {

        padding: 1rem 0 0.75rem 0;

    }

}



.logo span {

    color: var(--accent-color);

}



.nav-links {

    display: flex;

    list-style: none;

    padding-bottom: 0.5rem;

}



.nav-links li {

    margin-left: 30px;

}



.nav-links a {

    text-decoration: none;

    color: var(--dark-color);

    font-weight: 600;

    transition: var(--transition);

    position: relative;

}



.nav-links a:hover {

    color: var(--primary-color);

}



.nav-links a::after {

    content: '';

    position: absolute;

    bottom: -5px;

    left: 0;

    width: 0;

    height: 2px;

    background-color: var(--primary-color);

    transition: var(--transition);

}



.nav-links a:hover::after {

    width: 100%;

}



.menu-toggle {

    display: none;

    flex-direction: column;

    cursor: pointer;

    padding: 5px;

}



.menu-toggle span {

    width: 25px;

    height: 3px;

    background-color: var(--dark-color);

    margin: 3px 0;

    transition: 0.3s;

}



/* Hero Section */

.hero {

    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/gabinet2.jpg') center/cover no-repeat;

    height: 80vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: white;

    position: relative;

}



.hero-content {

    max-width: 800px;

    padding: 20px;

}



.hero h1 {

    font-size: 3.5rem;

    margin-bottom: 20px;

    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

    white-space: nowrap;

}



@media (max-width: 768px) {

    .hero h1 {

        white-space: normal;

        line-height: 1.2;

    }

}



.mobile-break {

    display: none;

}



@media (max-width: 768px) {

    .mobile-break {

        display: block;

    }

    .hero h1 {

        white-space: normal;

    }

}



.hero p {

    font-size: 1.5rem;

    margin-bottom: 30px;

    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);

}



.btn {

    display: inline-block;

    background-color: var(--primary-color);

    color: white;

    padding: 12px 30px;

    border: none;

    border-radius: 30px;

    text-decoration: none;

    font-weight: 600;

    font-size: 1.1rem;

    transition: var(--transition);

    cursor: pointer;

}



.btn:hover {

    background-color: var(--secondary-color);

    transform: translateY(-3px);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}



/* Sections */

section {

    padding: 80px 0;

}



.section-title {

    text-align: center;

    margin-bottom: 60px;

    position: relative;

}



.section-title h2 {

    font-size: 2.5rem;

    color: var(--dark-color);

    margin-bottom: 15px;

}



.section-title::after {

    content: '';

    position: absolute;

    bottom: -15px;

    left: 50%;

    transform: translateX(-50%);

    width: 80px;

    height: 4px;

    background-color: var(--primary-color);

    border-radius: 2px;

}



/* Offer Section */

.offer-card {

    background-color: white;

    border-radius: 10px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

    padding: 40px;

    margin-bottom: 50px;

    transition: var(--transition);

}



.offer-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);

}



.offer-header {

    display: flex;

    align-items: center;

    margin-bottom: 25px;

    border-bottom: 2px solid var(--light-gray);

    padding-bottom: 20px;

}



.offer-icon {

    background-color: var(--light-color);

    width: 70px;

    height: 70px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-right: 20px;

    flex-shrink: 0;

}



.offer-icon i {

    font-size: 30px;

    color: var(--primary-color);

}



.offer-title {

    font-size: 1.8rem;

    color: var(--dark-color);

}



.offer-content p {

    margin-bottom: 20px;

}



.offer-details {

    margin-top: 30px;

    padding: 20px;

    background-color: var(--light-gray);

    border-radius: 8px;

}



.offer-details h3 {

    color: var(--primary-color);

    margin-bottom: 15px;

}



.offer-details ul {

    padding-left: 20px;

    margin-bottom: 20px;

}



.offer-details li {

    margin-bottom: 10px;

}



.price-info {

    display: flex;

    justify-content: space-between;

    flex-wrap: wrap;

    margin-top: 20px;

    padding-top: 20px;

    border-top: 1px dashed #ddd;

}



.price-item {

    margin-right: 20px;

    margin-bottom: 10px;

}



.price-label {

    font-weight: 600;

    color: var(--dark-color);

}



.price-value {

    font-weight: 700;

    color: var(--primary-color);

    font-size: 1.2rem;

}



.gallery {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;

    margin-top: 30px;

}



.gallery img {

    width: 100%;

    height: 150px;

    object-fit: cover;

    border-radius: 8px;

    transition: var(--transition);

}



.gallery img:hover {

    transform: scale(1.05);

}



/* Preparation Section */

.preparation {

    background-color: var(--light-gray);

}



.prep-list {

    background-color: white;

    border-radius: 10px;

    padding: 40px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

}



.prep-item {

    display: flex;

    margin-bottom: 25px;

    padding-bottom: 25px;

    border-bottom: 1px solid #eee;

}



.prep-item:last-child {

    margin-bottom: 0;

    padding-bottom: 0;

    border-bottom: none;

}



.prep-icon {

    background-color: var(--light-color);

    width: 50px;

    height: 50px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-right: 20px;

    flex-shrink: 0;

}



.prep-icon i {

    color: var(--primary-color);

}



/* Visit Process Section */

.process-steps {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;

}



.step {

    background: linear-gradient(145deg, #ffffff, #f8f8f8);

    padding: 40px 25px 30px;

    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    position: relative;

    transition: var(--transition);

    text-align: center;

    border-left: 4px solid var(--primary-color);

}



.step:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

}



.step-number {

    position: absolute;

    top: -15px;

    left: -15px;

    background-color: var(--primary-color);

    color: white;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

    font-size: 1.5rem;

    box-shadow: 0 4px 10px rgba(44, 110, 73, 0.3);

}



.step-icon {

    font-size: 3rem;

    color: var(--primary-color);

    margin-bottom: 20px;

    transition: var(--transition);

}



.step:hover .step-icon {

    transform: scale(1.1);

}



.step h3 {

    color: var(--dark-color);

    margin-bottom: 15px;

    font-size: 1.4rem;

}



.step p {

    color: #666;

}



@media (max-width: 768px) {

    .process-steps {

        grid-template-columns: 1fr;

    }

    

    .step {

        padding: 35px 20px 25px;

    }

}



.process-img {

    width: 100%;

    height: 300px;

    object-fit: cover;

    border-radius: 8px;

    margin-top: 30px;

}



/* About Section */

.about {

    background-color: var(--light-gray);

    padding: 80px 0;

}



.about-content {

    display: flex;

    flex-wrap: wrap;

    gap: 40px;

}



.about-img {

    flex: 1;

    min-width: 300px;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);

    height: fit-content;

    max-height: 600px;

}



.about-img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;

}



.about-img:hover img {

    transform: scale(1.05);

}



.about-text {

    flex: 1;

    min-width: 300px;

}



.intro-box {

    background: white;

    border-radius: 15px;

    padding: 30px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    margin-bottom: 30px;

}



.intro-box h3 {

    color: var(--primary-color);

    margin-bottom: 20px;

    font-size: 1.8rem;

}



.intro-box p {

    margin-bottom: 15px;

    line-height: 1.8;

}



/* Full-width sections for education, courses, workshops, conferences */

.education-section,

.courses-section,

.workshops-section,

.conferences-section {

    width: 100vw;

    margin-left: calc(-50vw + 50%);

    padding: 40px 20px;

    background: white;

    margin-bottom: 40px;

}



.section-content {

    max-width: 1200px;

    margin: 0 auto;

}



.section-header {

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 40px;

    gap: 15px;

}



.section-header h3 {

    color: var(--dark-color);

    font-size: 2.2rem;

    text-align: center;

}



.section-header i {

    font-size: 2rem;

    color: var(--primary-color);

}



.education-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

    gap: 25px;

    margin-top: 30px;

}



.education-item {

    display: flex;

    gap: 20px;

    background: #f9f9f9;

    border-radius: 12px;

    padding: 25px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

    transition: var(--transition);

    border-left: 4px solid var(--primary-color);

}



.education-item:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

}



.education-icon {

    width: 50px;

    height: 50px;

    background: var(--light-color);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}



.education-icon i {

    font-size: 1.5rem;

    color: var(--primary-color);

}



.education-title {

    font-weight: 700;

    color: var(--dark-color);

    margin-bottom: 8px;

    font-size: 1.2rem;

}



.education-desc {

    color: #666;

    margin-bottom: 0;

}



.courses-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 25px;

    margin-top: 30px;

}



.course-card {

    background: #f9f9f9;

    border-radius: 12px;

    padding: 25px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

    transition: var(--transition);

    display: flex;

    align-items: flex-start;

    gap: 15px;

    border-top: 4px solid var(--primary-color);

}



.course-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

}



.course-card i {

    color: var(--primary-color);

    font-size: 1.2rem;

    margin-top: 3px;

    flex-shrink: 0;

}



.course-content h4 {

    color: var(--dark-color);

    margin-bottom: 8px;

    font-size: 1.1rem;

    line-height: 1.4;

}



.course-meta {

    color: var(--secondary-color);

    font-weight: 600;

    font-size: 0.9rem;

}



/* Responsive Design */

@media (max-width: 992px) {

    .about-content {

        flex-direction: column;

    }

    

    .about-img {

        width: 100%;

        max-height: 500px;

    }



    .education-grid {

        grid-template-columns: 1fr;

    }



    .courses-grid {

        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    }

}



@media (max-width: 768px) {

    .education-item {

        flex-direction: column;

        align-items: flex-start;

    }

    

    .education-icon {

        margin-bottom: 15px;

    }



    .section-header h3 {

        font-size: 1.8rem;

    }



    .section-header i {

        font-size: 1.6rem;

    }

}



@media (max-width: 480px) {

    .intro-box, .education-item, .course-card {

        padding: 20px;

    }

    

    .section-header h3 {

        font-size: 1.6rem;

    }



    .education-section,

    .courses-section,

    .workshops-section,

    .conferences-section {

        padding: 30px 15px;

    }

}



/* Contact Section */

.contact-container {

    display: flex;

    gap: 40px;

    flex-wrap: wrap;

}



.contact-info {

    flex: 1;

    min-width: 300px;

}



.contact-card {

    background-color: white;

    border-radius: 10px;

    padding: 30px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

    margin-bottom: 30px;

}



.contact-card h3 {

    color: var(--dark-color);

    margin-bottom: 20px;

}



.contact-item {

    display: flex;

    margin-bottom: 15px;

}



.contact-icon {

    width: 40px;

    height: 40px;

    background-color: var(--light-color);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-right: 15px;

    flex-shrink: 0;

}



.contact-icon i {

    color: var(--primary-color);

}



.contact-text {

    flex: 1;

}



.contact-text h4 {

    margin-bottom: 5px;

}



.map {

    flex: 1;

    min-width: 300px;

    height: 400px;

    border-radius: 10px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

}



.map iframe {

    width: 100%;

    height: 100%;

    border: none;

}



/* Gift Card Section */

.gift-card {

    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));

    padding: 60px 0;

    text-align: center;

    color: white;

}



.gift-card .section-title h2 {

    color: white;

}



.gift-card .section-title::after {

    background-color: white;

}



.gift-content {

    max-width: 800px;

    margin: 0 auto;

}



.gift-content p {

    margin-bottom: 20px;

    font-size: 1.1rem;

}



.gift-options {

    display: flex;

    justify-content: center;

    gap: 20px;

    margin-top: 30px;

    flex-wrap: wrap;

}



.gift-option {

    background-color: rgba(255, 255, 255, 0.1);

    border-radius: 10px;

    padding: 20px;

    flex: 0 0 calc(50% - 20px);

    min-width: 250px;

    backdrop-filter: blur(5px);

    border: 1px solid rgba(255, 255, 255, 0.2);

}



.gift-option h3 {

    margin-bottom: 15px;

    font-size: 1.3rem;

}



.gift-btn {

    background-color: white;

    color: var(--primary-color);

}



.gift-btn:hover {

    background-color: var(--light-color);

    color: var(--dark-color);

}



/* Reviews Section */

.reviews {

    text-align: center;

    padding: 60px 0;

    position: relative;

}



.rating {

    font-size: 3rem;
    color: gold;

    margin-bottom: 15px;

}



.rating span {

    font-size: 1.5rem;

    color: var(--text-color);

    vertical-align: middle;

}



.reviews p {

    font-size: 1.2rem;

    margin-bottom: 30px;

}



.review-stars {

    font-size: 1.5rem;

    color: gold;

    margin-bottom: 20px;

}



.reviews-container {

    max-width: 800px;

    margin: 40px auto;

    position: relative;

}



.review-carousel {

    background: white;

    border-radius: 10px;

    padding: 40px 60px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    position: relative;

}



.review-item {

    text-align: center;

    padding: 0 10px;

}



.review-text {

    font-style: italic;

    margin-bottom: 30px;

    font-size: 1.1rem;

    line-height: 1.6;

}



.review-author {

    font-weight: bold;

    color: var(--dark-color);

}



.review-date {

    font-size: 0.9rem;

    color: #666;

    margin-top: 5px;

}



.review-stars i {

    color: gold;

    margin: 0 2px;

}



/* Poprawione strzałki karuzeli */

.owl-nav {

    position: absolute;

    top: 50%;

    left: 0;

    right: 0;

    transform: translateY(-50%);

    display: flex;

    justify-content: space-between;

    pointer-events: none;

}



.owl-prev, .owl-next {

    width: 50px;

    height: 50px;

    background: var(--primary-color) !important;

    color: white !important;

    border-radius: 50% !important;

    display: flex !important;

    align-items: center;

    justify-content: center;

    font-size: 1.5rem !important;

    position: relative;

    pointer-events: all;

    transition: var(--transition);

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

    margin: 0 !important;

    line-height: 1; /* Dodajemy line-height: 1 aby uniknąć niepotrzebnych odstępów */

}



.owl-prev {

    left: -25px;

}



.owl-next {

    right: -25px;

}



.owl-prev:hover, .owl-next:hover {

    background: var(--secondary-color) !important;

    transform: scale(1.1);

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);

}



/* Usuwamy domyślne spany i używamy pseudo-elementów dla ikon */

.owl-prev span, .owl-next span {

    display: none !important;

}



.owl-prev::before, .owl-next::before {

    content: '';

    font-family: 'Font Awesome 5 Free'; /* Upewnij się, że korzystasz z Font Awesome */

    font-weight: 900;

    font-size: 1.2rem;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 100%;

}



.owl-prev::before {

    content: '\f053'; /* Unicode dla fa-chevron-left */

}



.owl-next::before {

    content: '\f054'; /* Unicode dla fa-chevron-right */

}







/* Footer */

footer {

    background-color: var(--dark-color);

    color: white;

    padding: 40px 0 20px;

}



.footer-content {

    display: flex;

    justify-content: space-between;

    flex-wrap: wrap;

    margin-bottom: 30px;

    gap: 3rem;

}



.footer-col {

    flex: 1;

    min-width: 250px;

    margin-bottom: 30px;

}



.footer-col h3 {

    color: white;

    margin-bottom: 20px;

    font-size: 1.3rem;

}



.footer-links {

    list-style: none;

}



.footer-links li {

    margin-bottom: 10px;

}



.footer-links a {

    color: #ddd;

    text-decoration: none;

    transition: var(--transition);

}



.footer-links a:hover {

    color: white;

    padding-left: 5px;

}



.copyright {

    text-align: center;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    font-size: 0.9rem;

    color: #aaa;

}



/* Responsive Design */

@media (max-width: 992px) {

    .hero h1 {

        font-size: 3rem;

    }

    

    .step {

        flex: 0 0 calc(50% - 20px);

    }

    

    .about-content {

        flex-direction: column;

    }

    

    .about-img {

        width: 100%;

    }

    

    .gallery {

        grid-template-columns: repeat(2, 1fr);

    }

}



@media (max-width: 768px) {

    .menu-toggle {

        display: flex;

    }

    

    .nav-links {

        position: absolute;

        top: 100%;

        right: 0;

        width: 250px;

        background-color: white;

        flex-direction: column;

        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

        border-radius: 8px;

        transform: translateY(-10px);

        opacity: 0;

        visibility: hidden;

        transition: all 0.3s ease;

        z-index: 1001;

    }

    

    .nav-links.active {

        transform: translateY(0);

        opacity: 1;

        visibility: visible;

    }

    

    .nav-links li {

        margin: 0;

        border-bottom: 1px solid #f0f0f0;

    }

    

    .nav-links li:last-child {

        border-bottom: none;

    }

    

    .nav-links li:last-child a {

        border-bottom-left-radius: 8px;

        border-bottom-right-radius: 8px;

    }

    

    .nav-links a {

        display: block;

        padding: 15px 20px;

        border-radius: 0;

    }

    

    nav {

        position: relative;

    }

    

    .hero h1 {

        font-size: 2.5rem;

    }

    

    .hero p {

        font-size: 1.2rem;

    }

    

    .section-title h2 {

        font-size: 2rem;

    }

    

    .step {

        flex: 0 0 100%;

    }

    

    .price-info {

        flex-direction: column;

    }

    

    .gift-option {

        flex: 0 0 100%;

    }

}



@media (max-width: 576px) {

    .hero {

        height: 70vh;

    }

    

    .hero h1 {

        font-size: 2rem;

    }

    

    .offer-card {

        padding: 25px;

    }

    

    .offer-header {

        flex-direction: column;

        text-align: center;

    }

    

    .offer-icon {

        margin-right: 0;

        margin-bottom: 15px;

    }

    

    .gallery {

        grid-template-columns: 1fr;

    }

}



/* Ukryj przycisk na dużych ekranach */

@media (min-width: 768px) {

    .call-button {

        display: none;

    }

}



/* Pokaż przycisk na małych ekranach */

@media (max-width: 767px) {

    .call-button {

        display: inline-block;

    }

}



/* Responsywność dla strzałek */

@media (max-width: 768px) {

    .review-carousel {

        padding: 30px 50px;

    }

    

    .owl-prev, .owl-next {

        width: 40px;

        height: 40px;

        font-size: 1.2rem !important;

    }

    

    .owl-prev {

        left: -20px;

    }

    

    .owl-next {

        right: -20px;

    }



    .owl-prev::before, .owl-next::before {

        font-size: 1rem;

    }

}



.offer-logo-container {

    display: flex;

    align-items: center;

    justify-content: center;

    margin-right: 5px;

    flex-shrink: 0;

}



.offer-logo {

    width: 150px; /* lub większe jeśli chcesz, np. 100px */

    height: auto;

    object-fit: contain;

}

@media (max-width: 576px) {

    .review-carousel {

        padding: 25px 40px;

    }

    

    .owl-prev, .owl-next {

        width: 35px;

        height: 35px;

        font-size: 1rem !important;

    }

    

    .owl-prev {

        left: -15px;

    }

    

    .owl-next {

        right: -15px;

    }



    .owl-prev::before, .owl-next::before {

        font-size: 0.9rem;

    }



    

    

}