* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #000;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.menu-list {
    list-style: none;
    display: flex;
    gap: 30px;
}

.menu-link {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: color 0.3s ease;
}

.menu-link:hover {
    color: #ffd700;
}

.hero {
    background-color: #000;
    background-image: url('images/fon.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-title {
    font-size: 72px;
    color: #ffd700;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: left;
    width: fit-content;
    max-width: 100%;
}

.hero-subtitle {
    font-size: 24px;
    color: #fff;
    margin-bottom: 30px;
    transition: color 0.3s ease;
    text-align: left;
    width: fit-content;
    max-width: 100%;
}

.hero-subtitle:hover {
    color: #ffd700;
}

.hero-button {
    padding: 15px 40px;
    font-size: 18px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: fit-content;
}

.hero-button:hover {
    background-color: #ffd700;
    color: #000;
    transform: scale(1.05);
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 50px;
    color: #ffd700;
    transition: color 0.3s ease;
}

.section-title:hover {
    color: #313131;
}

.about {
    background-color: #ffffff;
    padding: 80px 0;
}

.about-blocks {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.about-block {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    border: 2px solid #000000;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.about-block:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
}

.about-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    color: #000000;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.about-block:hover .about-text {
    color: #ffd700;
}

.rules {
    background-color: #000;
    padding: 80px 0;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rule-block {
    border: 2px solid #fff;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    min-height: 150px;
    display: flex;
    align-items: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.rule-block:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
}

.rule-text {
    font-size: 16px;
    color: #fff;
    transition: color 0.3s ease;
}

.rule-block:hover .rule-text {
    color: #ffd700;
}

.cats {
    background-color: #ffffff;
    padding: 80px 0;
}

.cats-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cat-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #fff;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.cat-photo:hover {
    transform: scale(1.1);
    border-color: #ffd700;
    z-index: 10;
    position: relative;
}

.prices {
    background-color: #000;
    padding: 80px 0;
}

.carousel {
    position: relative;
    width: 80%;
    max-width: 600px;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    flex: 0 0 100%;
    width: 100%;
}

.carousel-item img {
    width: 100%;
    display: block;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: rgb(0, 0, 0);
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

.carousel-control.prev {
    left: 0;
}

.carousel-control.next {
    right: 0;
}

.carousel-item.active {
    display: block;
}

.carousel-item:not(.active) {
    display: none;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85); 
}

.modal-content {
  background-color: #000; 
  margin: 5% auto;
  padding: 30px;
  border: 2px solid #ffcc00; 
  max-width: 500px;
  border-radius: 16px;
  position: relative;
  animation: fadeIn 0.4s ease-out;
  color: #fff; 
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.close {
  color: #ffcc00; 
  float: right;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close:hover,
.close:focus {
  color: #ffffff; 
}

form label {
  margin-top: 15px;
  display: block;
  font-weight: 500;
  color: #cccccc;
}

form input,
form select {
  width: 100%;
  padding: 12px;
  margin: 8px 0 20px 0;
  border: 2px solid #444; 
  border-radius: 6px;
  box-sizing: border-box;
  background-color: #111; 
  color: #fff;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

form input:focus,
form select:focus {
  border-color: #ffcc00; 
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.4);
  outline: none;
}

form button {
  background-color: #ffcc00; 
  color: #000;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
  width: 100%;
  transition: background-color 0.3s, transform 0.2s;
  letter-spacing: 0.5px;
}

form button:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

form button:active {
  transform: translateY(0);
}

#confirmation-message {
  text-align: center;
  padding: 25px 0;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  border-radius: 12px;
  border: 1px solid #ffcc00;
}

#confirmation-message h2 {
  color: #ffcc00;
  margin-bottom: 20px;
  font-size: 24px;
}

#confirmation-message p {
  color: #ddd;
  line-height: 1.7;
  margin: 15px 0;
  font-size: 16px;
}

.confirm-btn {
  background-color: #000; 
  color: #ffcc00;
  padding: 12px 28px;
  border: 2px solid #ffcc00;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 20px;
}

.confirm-btn:hover {
  background-color: #ffcc00;
  color: #000;
  transform: scale(1.05);
}

.card-container {
    position: absolute;
    top: 50%;
    right: 500px;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-card {
    width: 350px;
    height: 350px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    overflow: hidden;
    margin-top: 6800px;
}

.price-title {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #000000;
}

.price-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.price-name {
    font-weight: bold;
    color: #000;
}

.price-value {
    color: #000000;
}

.price-button {
    background-color: #ffd700;
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.price-button:hover {
    background-color: #ffd700;
}


.reviews {
    background-color: #000000;
    padding: 80px 0;
    min-height: 600px; 
}

.reviews-blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-content: center;
    align-items: start;
}

.review-block {
    border: 2px solid #fff;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    transition: border-color 0.3s ease, transform 0.3s ease;
    min-height: 250px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-block:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
}

.review-name {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
    transition: color 0.3s ease;
}

.review-block:hover .review-name {
    color: #ffd700;
}

.review-stars {
    margin-bottom: 15px;
}

.star {
    color: #ffd700;
    font-size: 20px;
}

.review-text {
    font-size: 16px;
    color: #fff;
    transition: color 0.3s ease;
}

.review-block:hover .review-text {
    color: #ffd700;
}

.feedback {
    background-color: #ffffff;
    padding: 80px 0;
}

.feedback-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feedback-input {
    padding: 15px;
    font-size: 16px;
    background-color: #ffffff;
    color: #000000;
    border-color: 2px solid #ffd900;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.feedback-textarea {
    padding: 15px;
    font-size: 16px;
    background-color: #ffffff;
    color: #000000;
    border-color: 2px solid #ffd900;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.feedback-input {
    outline: none;
    background-color: #ffffff;
    border: 2px solid #ffd900;
    color: #000000;
}

.feedback-textarea {
    outline: none;
    background-color: #ffffff;
    border: 2px solid #ffd900;
    color: #000000;
}

.feedback-textarea {
    resize: vertical;
    border: 2px solid #ffd900;
}

.feedback-button {
    padding: 15px 40px;
    font-size: 18px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.feedback-button:hover {
    background-color: #ffffff;
    color: #000000;
    transform: scale(1.05);
}

.address {
    background-color: #000;
    padding: 80px 0;
}

.address-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.address-map {
    flex: 1;
}

.address-info {
    flex: 1;
    min-width: 00px;
    border: 2px solid #fff;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    transition: border-color 0.3s ease;
    z-index: 1;
    margin-left: -100px;
    background-color: #000000;
}

.address-info:hover {
    border-color: #ffd700;
}

.address-text {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    transition: color 0.3s ease;
}

.address-info:hover .address-text {
    color: #ffd700;
}

.footer {
    background-color: #000;
    padding: 50px 0;
    border-top: 1px solid #ffffff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-copyright {
    font-size: 14px;
    color: #fff;
}

.footer-right {
    text-align: right;
}

.footer-text {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
    transition: color 0.3s ease;
}

.footer-text:hover {
    color: #ffd700;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.social-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ffd700;
}

.error {
    color: #ff4444;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.confirm-btn {
    background-color: #ffcc00;
    color: #000;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.confirm-btn:hover {
    background-color: #e6b800;
}

@media (max-width: 1200px) {
    .review-block {
        min-width: calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .review-block {
        min-width: 100%;
        max-width: 100%;
    }
    
    .reviews {
        min-height: auto !important;
        padding: 40px 0;
    }
}

.review-block {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#map {
    border-radius: 10px;
    border: 2px solid #fff;
    height: 400px;
    width: 100%;
}

.leaflet-container {
    background: #1a1a1a;
    font-family: Arial, sans-serif;
}

.leaflet-popup-content-wrapper {
    background: #000;
    color: #fff;
    border: 2px solid #ffd700;
    border-radius: 8px;
}

.leaflet-popup-tip {
    background: #ffd700;
}

.leaflet-container a.leaflet-popup-close-button {
    color: #ffd700;
    font-size: 20px;
    padding: 8px;
}

.leaflet-container a.leaflet-popup-close-button:hover {
    color: #fff;
    background: #ffd700;
}

.cat-marker-icon {
    font-size: 30px;
    text-align: center;
    line-height: 40px;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.5));
}

@media (max-width: 768px) {
    #map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    #map {
        height: 250px;
    }
}