* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    scroll-behavior: smooth;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 1px 1px 3px #000;
}

nav a {
    color: #fff;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffd700;
}

.hero {
    height: 100vh;
    background: linear-gradient(
        rgba(0, 0, 0, 0.4), 
        rgba(0, 0, 0, 0.4)
      ), 
      url("images/изо.jpg") no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    text-align: center;
    position: relative;
    color: #fff;
}
.hero-content p {
    font-size: 22px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px #000;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px #000;
}

.btn-book {
    background: linear-gradient(45deg, #ffd700, #ffcc00);
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-book:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #ffcc00, #ffd700);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.info {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    flex-wrap: wrap;
    gap: 30px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card h2 {
    color: #ffd700;
    margin-bottom: 15px;
}

.tour-description {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 20px;
}

.included-list {
    list-style: none;
    text-align: left;
    padding: 0;
    color: #ccc;
}

.included-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.included-list li.check::before {
    content: "✓";
    color: #ffd700;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.price {
    margin-top: 15px;
    font-size: 18px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
}

.new-price {
    background: #222;
    padding: 5px 15px;
    color: #ffd700;
    font-size: 22px;
    border-radius: 10px;
    margin-top: 5px;
}

#contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #fff;
    padding: 40px 20px;
}

.contacts-section {
    padding: 50px 20px;
    border-radius: 12px;
}  
  
.contacts-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #222;
}
  
.contacts-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}
  
.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
  
.contact-info {
    list-style: none;
    padding: 0;
    font-size: 18px;
    color: #333;
}
  

.contact-info i {
    margin-right: 10px;
    color: #e67e22;
}
  
.contact-button .btn-contact {
    display: inline-block;
    background-color: #e67e22;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease;
 }
  
  .contact-button .btn-contact:hover {
    background-color: #cf711f;
}

.contact-form {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease;
}

.contact-form h2 {
    color: #ffd700;
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-form p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ddd;
}

.contact-info li {
    margin-bottom: 10px;
    font-size: 16px;
    position: relative;
    padding-left: 25px;
    color: #eee;
}

.contact-info li::before {
    content: "📞";
    position: absolute;
    left: 0;
    color: #ffd700;
}

.contact-info li:nth-child(2)::before {
    content: "✉️";
}

.contact-button {
    margin-top: 30px;
    text-align: center;
}

.btn-contact {
    background: linear-gradient(45deg, #ffd700, #ffcc00);
    color: #000;
    padding: 15px 30px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #ffcc00, #ffd700);
} 

html {
    scroll-behavior: smooth;
}
  
/*.image-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
}
  
.slider-container {
    width: 600px;
    height: 350px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    position: relative;
}
  
.slider {
    display: flex;
    width: 100%;
    height: 100%;
    animation: slide 12s infinite ease-in-out;
}

.slider img {
    width: 600px;
    height: 350px;
    object-fit: cover;
    flex-shrink: 0;
}
  
@keyframes slide {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}
*/

.carousel {
    position: relative;
    width: 100%;
    max-width: 1150px;
    height: 500px;
    margin: 60px auto;
    margin-bottom: 60px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 20px;
    overflow: hidden;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img,
.carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.video-slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.btn-more {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: linear-gradient(45deg, #ffcc00, #ffd700);
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}
  
.btn-more:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #ffd700, #ffcc00);
}
  