* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #000000;
}

sub {
  text-align: center;
  font-family: "Courgette", cursive;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.logo {
  color: #b9b9b9;
  font-size: 20px;
  font-weight: bold;
}

.logo span {
  display: block;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 1px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.burger {
  display: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.hero {
  position: relative;
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__content p {
  font-size: 24px;
  color: #f5f2f2;
  font-family: 'Georgia', serif;
  margin-bottom: 10px;
}

.hero__content h1 {
  font-size: 60px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero__btn {
  width: fit-content;
  background: #fff;
  color: #ff4d4d;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  transition: 0.3s ease;
}

.hero__btn:hover {
  background: #ff4d4d;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .nav ul

   {
          flex-direction: column;
          background: rgba(0, 0, 0, 1);
          position: absolute;
          top: 76px;
          right: 0;
          z-index: 9;
          width: 100%;
          padding: 20px;
          display: none;
      }

  .nav.active ul {
    display: flex;
  }

  .burger {
    display: block;
  }
}

.about {
  padding: 78px 0;
}

.about__items {
  display: flex;
  gap: 55px;
  margin-bottom: 40px;
  align-items: center;
}

.about__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;

}

.about__item img {
  width: 100%;
  object-fit: cover;
  height: 400px;
  border-radius: 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

sub {
  display: block;
  font-family: Courgette;
  font-size: 30px;
  line-height: 1.2;
  color: #d61c22;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

p {

  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
  margin-bottom: 22px;
}

h2 {
  text-align: center;
  margin: 0;
  font-family: Poppins;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
  color: #222222;
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-bottom: 35px;
}

.about__item a {
  display: block;
  color: #666666;
}

.about__item a:hover {
  color: #d61c22;
}

.about__item p {
  text-align: center;
}

.discover {
  padding: 100px 0;
  background-attachment: fixed;
  background-position: center;
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #6b6868;
}

.discover .container {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.discover p,
.discover h2 {
  color: #fff;
}

.discover p {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}

.services2 {
  padding: 78px 0;
}

.services2__items {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
}

.services2__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 35px;
}

.services2__item h3 {
  font-family: Poppins;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 15px;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.services2__item p {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
}

.menu__gallery {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: 200px;
}

.menu__item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.menu__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.menu__item:hover img {
  transform: scale(1.05);
}

.menu__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.85);
  color: #222;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  letter-spacing: 1px;
}

/* Варианты растяжения */
.v-span {
  grid-row: span 2;
}

.h-span {
  grid-column: span 2;
}

/* Для узких экранов отключаем растяжение */
@media (max-width: 768px) {
  .v-span {
    grid-row: span 1;
  }

  .h-span {
    grid-column: span 1;
  }
}

.gallery {
  padding: 78px 0;
}

.gallery sub,
.gallery h2 {
  text-align: center;
}

.events {
  padding: 80px 20px;
  text-align: center;
}

.events h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 60px;
}

.swiper {
  max-width: 1100px;
  margin: auto;
}

.event__slide {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  color: #222;
}

.event__image {
  flex: 1;
  min-width: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.event__time {
  position: absolute;
  left: 0;
  top: 0;
  background: #c41d1d;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 20px 10px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 0 0 10px 10px;
}

.event__details {
  flex: 1;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event__details h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.event__details p {
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
}

.timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.timer div {
  text-align: center;
}

.timer div span {
  display: block;
  font-size: 30px;
  font-weight: bold;
  color: #e63946;
}

.timer div small {
  font-size: 12px;
  color: #777;
}

.view-link {
  text-decoration: none;
  font-size: 13px;
  color: #000;
  font-weight: bold;
  border-bottom: 1px solid #000;
  width: fit-content;
  margin: 0 auto;
}

/* Swiper pagination styling */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  background: #ff3c3c;
  opacity: 1;
}

@media (max-width: 768px) {
  .event__slide {
    flex-direction: column;
  }
}

.events {
  background-blend-mode: multiply;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #222;
  padding: 100px 0;
}

.reservation {
  background: #f7f7f7;
  padding: 60px 20px;
  font-family: sans-serif;
}

.reservation__container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.reservation__form {
  flex: 1;
  min-width: 300px;
}

.reservation__form h3 {
  margin-bottom: 30px;
  font-size: 28px;
}

.italic-red {
  font-style: italic;
  color: #c41d1d;
  font-size: 20px;
}

.form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form__row div {
  flex: 1;
  min-width: 200px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
}

input,
select {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.btn-black {
  background: #000;
  color: #fff;
  padding: 14px 24px;
  border: none;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
}

.reservation__image {
  flex: 1;
  min-width: 280px;
}

.reservation__image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.contact {
  padding: 80px 0;
  background-color: #f5f2f2;
}

.contact .container {
  display: flex;
  gap: 55px;
  align-items: center;
}

.reviews-section h3 {
  font-style: italic;
  color: #c41d1d;
  font-size: 22px;
  margin-bottom: 0;
}

.reviews-section h2 {
  font-size: 40px;
  font-weight: 900;
  margin: 10px 0 40px;
}

.review__slide img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #c41d1d;
  object-fit: cover;
  margin-bottom: 20px;
}

.review__text {
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 20px;
}

.stars {
  color: #e63946;
  margin-bottom: 15px;
}

.review__author {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  color: #555;
}

.swiper-pagination-bullet {
  background: #999;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  background: #c41d1d;
  opacity: 1;
}

.reviews {
  padding: 80px 0;
}

.review__slide {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.blog {
  padding: 80px 0;
}

.blog__items {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

.blog__item img {
  width: 100%;
  border-radius: 20px;
  height: 220px;
  object-fit: cover;
  margin-bottom: 30px;
}

.blog h3 {
  font-weight: 500;
  font-size: 22px;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.blog p {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
}

.blog a {
  font-weight: 400;
  font-size: 12px;
  color: #222222;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer {
  background: #1b1b1b;
  color: #ccc;
  padding: 60px 20px 20px;
  font-family: sans-serif;
}

.footer__container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer__col {
  flex: 1;
  min-width: 250px;
}

.footer__col h4 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__col p,
.tweet {
  font-size: 14px;
  margin-bottom: 15px;
}

.footer__col i {
  margin-right: 10px;
}

.footer__col a {
  color: #f44336;
  text-decoration: none;
}

.footer__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.footer__gallery img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.tweet-date {
  font-size: 12px;
  color: #888;
}

.footer__bottom {
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
}

.socials {
  margin-bottom: 10px;
}

.socials i {
  color: #fff;
  margin: 0 8px;
  cursor: pointer;
  transition: 0.3s;
}

.socials i:hover {
  color: #f44336;
}

@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
  }
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  color: #b9b9b9;
}

.fixed.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background-color: #291313;
  position: fixed;
  width: 100%;
  z-index: 2;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 40px;
}

.breadcrumb a {
  text-decoration: none;
  color: #777;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.blog-post {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.blog-post__img {
  position: relative;
}

.blog-post__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 8px 8px 0 0;
}

.blog-post__date {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e60023;
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  font-weight: bold;
  border-radius: 6px;
  font-size: 14px;
}

.blog-post__date span {
  display: block;
  font-size: 22px;
}

.blog-post__content {
  padding: 30px;
}

.blog-post__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.blog-post__meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 20px;
}

.blog-post__meta a {
  color: #007BFF;
  text-decoration: none;
}

.blog-post__text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  text-transform: uppercase;
  font-size: 13px;
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
}

.read-more:hover {
  text-decoration: underline;
}

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.post__image {
  position: relative;
}

.post__image img {
  width: 100%;
  object-fit: cover;
  height: 400px;
  border-radius: 10px;
  display: block;
}

.post__date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e60023;
  color: #fff;
  padding: 10px 12px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  border-radius: 6px;
}

.post__date span {
  font-size: 22px;
  display: block;
}

.post__title {
  margin: 30px 0 10px;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1px;
}

.post__meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
}

.post__meta a {
  color: #007BFF;
  text-decoration: none;
}

.post__text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 50px;
}

/* Comment section */
.comment__section h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.comment__section p {
  font-size: 13px;
  color: #777;
  margin-bottom: 20px;
}

form.comment__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form.comment__form textarea,
form.comment__form input {
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  resize: vertical;
}

form.comment__form button {
  background: #111;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  width: fit-content;
}

form.comment__form button:hover {
  background: #e60023;
}

.contact-form {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-top {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-top input {
  flex: 1;
  min-width: 250px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

textarea {
  width: 100%;
  padding: 14px;
  height: 150px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
}

.submit-btn {
  margin: 20px auto 0;
  background: #111;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

.submit-btn:hover {
  background: #e60023;
}

.info__blocks {
  max-width: 1000px;
  margin: 60px auto 0;
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
  gap: 30px;
  justify-content: center;
  text-align: left;
}

.info__item {
  flex: 1;
  min-width: 250px;
}

.info__item i {
  font-size: 18px;
  margin-right: 10px;
  color: #222;
}

.info__item h4 {
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.info__item p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.info__item p a {
  color: #007BFF;
  text-decoration: none;
}

@media (max-width: 768px) {
  .form-top {
    flex-direction: column;
  }
}

.tes {
  padding: 80px 20px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}


.tes__slide {
  display: flex;
  gap: 30px;

}
.tes__items{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.tes__slide img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #c41d1d;
  object-fit: cover;
  margin-bottom: 20px;
}

.tes__text {
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 20px;
}

.stars {
  color: #e63946;
  margin-bottom: 15px;
}

.tes__author {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  color: #555;
}

.faq__section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.faq__item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: 0.3s;
}

.faq__question {
  cursor: pointer;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  position: relative;
}

.faq__question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 24px;
  transition: transform 0.3s;
}

.faq__question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
 
  padding: 0 20px;
  background: #fafafa;
}

.faq__answer.open {
  max-height: 500px;
  padding: 15px 20px 20px;
}

.faq__answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
.faq{
  padding: 100px 0;
}
@media (max-width: 600px) {
  .faq__section h2 {
    font-size: 28px;
  }
}
.faq__items{
  display: grid;
grid-template-columns: repeat(2,1fr);
  gap: 40px;
}
.events__wrapper{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.events__wrapper ul{
  list-style: none;
  padding-left: 15px;
}
.events__wrapper ul li{
  text-align: start;
  display: flex;
  gap: 10px;
}
.events__wrapper ul li i{
  margin-top: 5px;
}
.terms
{
  padding: 90px 0;

}
.terms ul{
 padding-left: 15px;
}
.terms ul li{
  font-size: 14px;
  color: #666;
}
@media screen and (max-width:768px) {
  .services2__items {
    display: grid
;
    gap: 40px;
    grid-template-columns: repeat(1, 1fr);
}
.contact .container {
  display: flex
;
  gap: 55px;
  align-items: center;
  flex-direction: column;
}
.blog__items {
  display: grid
;
  gap: 30px;
  grid-template-columns: repeat(1, 1fr);
}
.about__items {
  display: flex
;
  gap: 55px;
  margin-bottom: 40px;
  align-items: center;
  flex-direction: column;
}
h2{
  font-size: 36px;
}
.faq__items {
  display: grid
;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
}
.event__image {
  flex: 1;
  min-width: 100%;
  width: 100%;
  height: 350px;
  min-height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
}
}
.cookie__banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  font-size: 14px;
}

.cookie__banner p {
  margin: 0;
  flex: 1;
}

.cookie__banner a {
  color: #ffb400;
  text-decoration: underline;
}

.cookie__banner button {
  background: #ffb400;
  color: #000;
  padding: 10px 20px;
  border: none;
  margin-left: 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

@media (max-width: 600px) {
  .cookie__banner {
    flex-direction: column;
    text-align: center;
  }

  .cookie__banner button {
    margin: 10px 0 0;
  }
}