/* General Font and Typography */
body {
    font-family: Arial, sans-serif;
}

h2, .bebas-neue-regular, .bebas-neue-regular-title {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.bebas-neue-regular-title {
    font-size: 1.5rem;
}

.bebas-neue-regular {
    font-size: 2rem;
}

/* Hero Section */
.hero {
    background-color: rgb(231, 29, 125);
    padding: 20px 0 0;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* Carousel */
.carousel-item img {
    height: 500px;
    object-fit: contain;
    width: 100%;
}

/* Card Section (#services) */
#services {
    padding: 2rem 1rem;
    background-color: #f8f9fa;
}

#services h2 {
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: #333;
}

/* Responsive Grid for Cards */
#services .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#services .col {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 1rem;
}

@media (max-width: 768px) {
    #services .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.card1{
    height: 600px;
}

.terka{
    height: 500px;
    object-position: 0 85px;
}  
.card4{
    height: 300px;
}
.modal-text{
    text-align: left;
}
.skup-lekce-time{
    color:#d81b60;
    display: block;
    text-align: center;
}
.center-text {
    display: block;
    text-align: center;
}

/* Card Styling */
.card {
    background-color: #fff;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border-radius: 0.5rem;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    height: 260px;
    object-fit: cover;
    width: 100%;
}

.card5 {
    width: 75%; /* Zmenší šířku obrázku na 90 % */
    height: 350px; /* Udržuje poměr stran */
    margin: 0 auto; /*Zarovná obrázek na střed */
    /* padding-top: 0.4%; */
  }
  .card-img-container {
    text-align: center; /* Center the image in the container */
  }
.card-body {
width: 70%; /* Match the image width */
margin: 0 auto; /* Center the card body */
padding: 0; /* Remove any default padding */
text-align: center; /* Optional: Align text to the center */
}
.card-body {
    padding: 1rem;
}

.card-body h5 {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0;
    color: #555;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding-top: 60px;
    text-align: center;
}

.modal-content {
    background-color: white;
    margin: auto;
    padding: 20px;
    border-radius: 5px;
    width: 50%;
    position: relative;
}

@media (max-width: 576px) {
    .modal-content {
        width: 90%;
        font-size: 0.9rem;
    }
}
@media (max-width: 992px) {
    .card3 {
        object-fit: cover;
        height: 100%;
    }
}

/* Social Buttons */
.social-buttons a {
    display: inline-block;
    margin: 0 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e91e63;
    color: #fff;
    text-align: center;
    line-height: 40px;
    transition: background-color 0.3s;
}

.social-buttons a:hover {
    background-color: #d81b60;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


/* pricing */

/* body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
} */

.pricing-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.pricing-section h2 {
    margin-bottom: 30px;
    font-size: 28px;
    color: #333;
}

.pricing-item {
    margin-bottom: 20px;
}

.pricing-item h3 {
    margin-bottom: 10px;
    font-size: 22px;
    color: #555;
}

.price {
    font-size: 20px;
    color: #d9534f;
    margin: 0;
}

.note {
    font-size: 14px;
    color: #777;
    display: block;
}



/* references */
/* Carousel Styling */
#referenceCarousel {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-indicators {
    bottom: -30px;
}

.carousel-indicators li {
    background-color: #888;
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.carousel-indicators .active {
    background-color: #333;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1); /* Make arrows black */
}

/* Reference Styling */
.reference-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.reference-author {
    text-align: right;
    font-style: italic;
    color: #555;
    margin-top: 10px;
}


/* ďivider */
/* .divider-custom {
    margin: 1.25rem 0 1.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .divider-custom .divider-custom-line {
    width: 100%;
    max-width: 7rem;
    height: 0.25rem;
    background-color: #2c3e50;
    border-radius: 1rem;
    border-color: #2c3e50;
  }
  .divider-custom .divider-custom-line:first-child {
    margin-right: 1rem;
  }
  .divider-custom .divider-custom-line:last-child {
    margin-left: 1rem;
  }
  .divider-custom .divider-custom-icon {
    color: black;
    font-size: 2rem;
  }
  .divider-custom.divider-light .divider-custom-line {
    background-color: #2c3e50;
  } */