/********** Template CSS **********/
:root {
    --primary: #cb3f66;
    --light: #f1f8ff;
    --dark: #111a24;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}
.container {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
}


.header {
  background: url('../img/header-bg.jpg') no-repeat center center/cover;
  position: relative;
  color: white;
  text-align: center;
  padding: 250px 0 200px;
}

.header .container {
  background: rgba(0, 0, 0, 0.4);
}

.title {
  font-size: 48px;
  margin: 0;
}

.subtitle {
  font-size: 24px;
  margin: 10px 0;
}

.btn-primary {
  background-color: #cb3f66;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
}

.section-title {
  font-size: 38px;
  margin: 40px 0;
  text-align: center;
}

.details, .program, .special-offer, .reviews, .tickets, .contact, .newsletter, .artist {
  padding: 40px 0;
}
.artist  {
  background: #f1d8df;
}
.artist p {
  font-size: 18px;
  line-height: 1.6;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  font-size: 18px;
  margin: 10px 0;
}

.ticket-form, .newsletter-form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}

.ticket-form label, .newsletter-form label {
  margin: 10px 0 5px;
}

.ticket-form input, .ticket-form select, .newsletter-form input {
  padding: 10px;
  font-size: 16px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.social-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.social-links li {
  margin: 0 10px;
}

.social-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.btn-primary:hover {
  background-color: #cb3f66;
  transition: background-color 0.3s ease;
}
.detailsFlex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  .detailsFlex{
    flex-direction: column;
  }
}
.detailsimg {
  width: 50%;
  margin-left: 20px;
}
@media (max-width: 600px) {
  .detailsimg {
    width: 100%;
  }
}
.programFlex {
  display: flex;
  flex-direction: row;
  /* gap: 20px; */
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  .programFlex {
    flex-direction: column;
  }
}
.detailsimg2 {
  width: 100%;
}
@media (max-width: 600px) {
  .detailsimg2 {
    width: 100%;
  }
}
.reviews {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 600px) {
  .reviews {
    flex-direction: column;
  }
}
.review {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  max-width: 400px;
  border: 1px solid #ffbeb2;
  padding: 40px;
  border-radius: 10px;
  background-color: #fffbfb;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 43, 0.7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    /* background-color: #c19553; */
    /* padding: 8px; */
    color: #cb3f66;
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}

/*** Service ***/
.service-item {
    height: 420px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    transition: 0.5s;
}

.service-item:hover {
    background: #cb3f66;
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: 0.5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: 0.5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #ffffff !important;
}

/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, 0.1), rgba(15, 23, 43, 0.1)),
        url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(15, 23, 43, 0.7), rgba(15, 23, 43, 0.7)),
        url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
}

.testimonial-item img {
    object-fit: cover;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #cb3f66;
    border-radius: 2px;
    font-size: 18px;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #cb3f66;
    background: #ffffff;
}

/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: 0.5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}

/*** Footer ***/

/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

@media (max-width: 700px) {
    .cookie-wrapper {
        width: 100%;
    }
}
@media (max-width: 600px) {
  .contact-img {
    display: none;
  }
}

.cookie-wrapper {
    position: fixed;
    bottom: 0px;
    right: 0;
    width: 40%;
    background: #000;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgb(0, 0, 0);
    z-index: 999;
    @media (max-width: 600px) {
        width: 100%;
    }
}
.cookie-wrapper .show {
    right: 20px;
}

.hidden {
    display: none;
}
header i {
    color: #cb3f66;
    font-size: 32px;
    text-align: center;
}
header h2 {
    color: #cb3f66;
    font-weight: 500;
    text-align: center;
}
.data {
    text-align: center;
}
.data p a {
    color: #cb3f66;
    text-decoration: none;
    text-align: center !important;
}
.data p a:hover {
    text-decoration: underline;
}
.buttons {
    padding: 20px 0px;
    text-align: center;
}
.buttons .cookie-button {
    border: 2px solid #cb3f66;
    color: #fff;
    padding: 8px 0;
    background: #cb3f66;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.5s ease;
    max-width: 150px;
    border-radius: 0;
}
.buttons #acceptBtn:hover {
    background-color: transparent;
    color: #cb3f66;
}
#declineBtn {
    background-color: #fff;
    color: #cb3f66;
}
#declineBtn:hover {
    background-color: #cb3f66;
    color: #fff;
}
/* Footer Style */
section.reasons {
    padding: 50px 0 0 0 ;
    text-align: center;
    background-color: white;
    margin-bottom: 20px;
}
section.reasons h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

section.reasons ul, section.reasons li {
    font-size: 1.2em;
    margin-bottom: 10px;
}

section.reasons ul {
  margin-top: 40px;
    list-style: none;
    padding: 0;
}

section.reasons li {
    margin-bottom: 20px;
    border: 1px solid #cb3f66;
    padding: 10px 20px;
}
section.reasons li:hover {
  background: #f1d8df;
}

.hero-section {
  /* Зона головного екрану */
  background-image: url('../img/header-bg.jpg');
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}


#beitritt {
  background-image: url('../img/header-bg.jpg');

}
.hero-heading i {
  color: #cb3f66; /* Акцентний колір іконки */
  margin-right: 8px;
}

.hero-subtitle {
  margin-top: 20px;
  font-size: 1.1rem;
  line-height: 1.5;
}

.form-box {
  background-color: #1f1e39;
  padding: 30px;
  border-radius: 8px;
}

.form-box h3 {
  color: #ffffff;
  margin-bottom: 20px;
}

.form-box label {
  color: #d1d1d1;
}

.btn-accent {
  background-color: #cb3f66;
  border: none;
}

.btn-accent:hover {
  background-color: #b9355a;
}

/* Декоративні елементи (не обов'язково, але додають стилю) */
.floating-icon {
  position: absolute;
  top: 10%;
  right: -5%;
  font-size: 150px;
  color: rgba(203, 63, 102, 0.05);
  transform: rotate(-15deg);
}

/* Заголовки розділів */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
/* Акцентний колір */
.text-accent {
  color: #cb3f66;
}
/* Стилізація списків */
.custom-list li {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}
/* Декоративний фон для блоку "Ziele, Mission und Aufgaben" */
#ziele-mission-aufgaben {
  background: rgba(203, 63, 102, 0.1);
}
/* Додатковий відступ для секцій */
section {
  padding: 60px 0;
}
/* Додаткове стилювання зображення */
.img-rounded-shadow {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

section {
  padding: 60px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.text-accent {
  color: #cb3f66;
}

/* Картка кроку */
.step-box {
  position: relative;
  background-color: #1f1e39; /* Трохи світліший темний фон для контрасту */
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  overflow: hidden;
  min-height: 210px;
}

/* Велика цифра на фоні */
.step-number {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 9rem;
  font-weight: 700;
  color: #e3e3e3;
  opacity: 0.2; /* Прозорість для "watermark"-ефекту */
  z-index: 0;
}

/* Заголовок кроку */
.step-box h3 {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Текст кроку */
.step-box p {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.5;
}

/* Декоративна іконка (опційно) */
.step-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 1.5rem;
  z-index: 1;
  color: #cb3f66;
}
.advantage-card {
  background-color: #1f1e39;
  border: none;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}
.advantage-card:hover {
  transform: translateY(-5px);
}
.advantage-icon {
  font-size: 2.5rem;
  color: #cb3f66;
  margin-bottom: 15px;
}
.advantage-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.advantage-text {
  font-size: 1rem;
  line-height: 1.6;
}
/* Декоративна лінія */
.divider {
  width: 60px;
  height: 4px;
  background-color: #cb3f66;
  margin: 0 auto 40px auto;
  border-radius: 2px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
}

.feature-card {
  position: relative;
  background: linear-gradient(135deg, #1f1e39, #29274e);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.feature-icon {
  font-size: 3rem;
  color: #cb3f66;
  margin-bottom: 20px;
}
.feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.feature-text {
  font-size: 1rem;
  line-height: 1.6;
}
.floating-shape {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 8rem;
  color: #cb3f66;
  opacity: 0.05;
  z-index: 0;
}
.cta-button {
  display: block;
  width: max-content;
  margin: 40px auto 0;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffffff;
  background-color: #cb3f66;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #b9355a;
}

.testimonial-card {
  background-color: #1f1e39;
  border: none;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
}
.quote-icon {
  font-size: 3rem;
  color: #cb3f66;
  position: absolute;
  top: -20px;
  left: 20px;
  opacity: 0.2;
}
.testimonial-content {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 20px;
}
.testimonial-author {
  margin-top: 20px;
  font-weight: bold;
  font-size: 1.1rem;
  color: #cb3f66;
}
.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #cb3f66;
  margin-right: 15px;
}
.author-info {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.contact-info {
  font-size: 1.1rem;
  line-height: 1.8;
}
.contact-info h4 {
  margin-top: 20px;
  color: #cb3f66;
}
.contact-info p {
  margin-bottom: 10px;
}
.contact-icon {
  font-size: 1.5rem;
  color: #cb3f66;
  margin-right: 10px;
}
.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.contact-text {
  position: relative;
  padding: 20px;
  background-color: #1f1e39;
  border-radius: 8px;
}
