html {
    scroll-behavior: smooth;
}

body {
    background-color: #eef2f3;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.navbar {
    background-color: #00aaff;
    color: white;
    transition: background-color 0.3s ease;
}

.nav-link {
    display: flex;
    align-items: center;
    /* Középre igazítja a szöveget és az ikont */
    font-size: 16px;
    /* Az összes elem betűméretének beállítása */
}

.nav-link svg {
    margin-right: 5px;
    /* Kisebb távolság az ikon és a szöveg között */
    width: 20px;
    /* Az ikonok szélessége */
    height: 20px;
    /* Az ikonok magassága */
}


.navbar-brand {
    font-weight: bold;
    color: white !important;
}

.nav-link {
    color: white !important;
}

.nav-link:hover {
    color: #ffefd5 !important;
}

.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url(assets/images/cats-and-dog-hero.jpg);
    padding: 200px 0;
    color: #ececec;
    text-shadow: 1px 1px 2px #40b0e4;
    width: 100%;
    height: 50%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

@media screen and (max-width: 991px) {
    .hero-section {
        padding: 50px 0;
        background-position: center;
    }
}

@media screen and (max-width: 500px) {
    .hero-section h1 {
        font-size: 32px !important;
    }

    .hero-section p {
        font-size: 20px !important;
    }
}

.hero-section h1 {
    font-size: 48px;
}

.hero-section p {
    font-size: 24px;
    margin-bottom: 40px;
}

.btn-hero {
    background-color: #40b0e4;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.btn-hero:hover {
    background-color: #47cbff;
}

#praxis .section-title {
    font-size: 2.5rem;
}

#praxis .carousel-item img {
    max-height: 500px;
    object-fit: cover;
}

#praxis p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
    color: #333;
}

.section-title {
    font-size: 36px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    color: #333;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #00aaff;
}

.carousel-image {
    height: 800px;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .carousel-image {
        height: 400px;
        object-fit: cover;
    }
}

@media screen and (max-width: 450px) {
    .carousel-image {
        height: 200px;
        object-fit: cover;
    }
}


.team-section .team-member {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.team-section .team-member:hover {
    transform: translateY(-10px);
}

.team-img-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.team-member:hover .team-img-wrapper {
    transform: scale(1.1);
}

.team-member h4 {
    margin-top: 15px;
    font-size: 24px;
}

.team-member .role {
    color: #888;
    margin-bottom: 15px;
}

.team-member .bio {
    font-size: 16px;
    color: #666;
    margin: auto;
    width: 50%;
}

.image-section {
    margin: 20px 0;
    width: 100%;
}

.image-section img {
    border-radius: 10px;
    width: 100%;
    transition: box-shadow 0.3s ease;
}

.image-section img:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;

}

@media screen and (max-width: 1199px) {
    .service-box h4 {
        font-size: 1.2rem;
    }

    .team-member .bio {
        width: 100%;
    }
}

@media screen and (max-width: 992px) {
    .service-box {
        margin-bottom: 24px;
    }
}


.service-box:hover {
    transform: translateY(-10px);
}

footer {
    background-color: #00aaff;
    color: white;
    padding: 15px;
    text-align: center;
    margin-top: 50px;
    width: 100%;
}

footer p {
    margin: 0;
}

/* Full-width container-fluid */
.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/* Navbar collapsible (hamburger) */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns%3D%27http://www.w3.org/2000/svg%27 fill%3D%27%23000%27 viewBox%3D%270 0 30 30%27%3E%3Cpath stroke%3D%27rgba%280%2C 0%2C 0%2C 0.5%29%27 stroke-width%3D%272%27 d%3D%27M4 7h22M4 15h22M4 23h22%27/%3E%3C/svg%3E');
}

@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }

    .team-section .team-member {
        margin-bottom: 20px;
    }

    .team-img-wrapper {
        width: 120px;
        height: 120px;
    }
}

.contact-section {
    background-color: #f7f9fa;
    padding: 50px 0;
    color: #333;
    text-align: center;
}

.contact-title {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    color: #00aaff;
}

.contact-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #00aaff;
}

.contact-info {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-info a {
    color: #00aaff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ff6347;
}

/* Alapstílusok az árlistához */
#price-list {
    background-color: #f9f9f9;
    padding: 3rem 0;
    margin-top: 3rem;
}

/* Cím stílus */
#price-list h3 {
    margin-bottom: 2rem;
}

/* Szolgáltatás és ár egy sorban */
#price-list .service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

#price-list .service-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #40b0e4;
    margin-bottom: 0rem;
}

/* Kártya hover effekt */
#price-list img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Mobilos nézet */
@media (max-width: 768px) {
    #price-list .col-md-6 {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 469px) {
    #price-list .service-title {
        font-size: 1rem;
    }
}

@media (max-width: 469px) {
    #price-list .service-price {
        font-size: 1rem;
    }
}

@media (max-width: 395px) {
    .price-list-modifier .d-flex {
        display: block !important;
    }

    .service-title {
        margin-bottom: 0 !important;
    }

    .service-price {
        margin-bottom: 0.5rem !important;
    }
}

price-list-modifier #rendeles {
    background-color: #f9f9f9;
    padding: 3rem 0;
}

#rendeles .section-title {
    font-size: 2rem;
}

#rendeles table {
    background-color: #ffffff;
}

#rendeles .table th,
#rendeles .table td {
    color: #333;
    font-size: 1.1rem;
    text-align: center;
}

#rendeles .table th {
    background-color: #40b0e4;
    color: white;
}

#rendeles p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.table-wrapper {
    padding: 0 30px;
}

#elerhetoseg .contact-item svg {
    margin-right: 10px;
}

#elerhetoseg .contact-item span {
    font-size: 1.7rem;
    color: #333;
}

#elerhetoseg .section-title {
    font-size: 2rem;
    font-weight: bold;
}

#elerhetoseg iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

@media (max-width: 768px) {

    #elerhetoseg .contact-item span {
        font-size: 1.2rem;
    }

}

.card-body {
    padding: 0.5rem;
}

@media (max-width: 768px) {
    #price-list .card {
        margin-bottom: 0.2rem;
    }
}

.fa-facebook-f {
    color: #3B5998;
}


@media (max-width: 425px) {
    .container {
        padding-right: 0px !important;
        padding-left: 0px !important;
    }
}