/* General styling for the hotels section */
.about-section {
    background-color: #3131CE; /* Blue background */
    color: white;
    padding: 90px 0 70px;
}

.tour-top-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px; 
    padding-bottom: 40px;
}

.tour-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px; 
}

/* Left Block: Heading */
.block-left {
    flex: 1;
}

.block-left h2 {
    font-family: 'Work Sans', serif;
    line-height: 150%;
    font-size: 40px;
    font-weight: bold;
}

/* Right Block: Text content */
.block-right {
    flex: 1;
    align-items: flex-start;
}

.block-right p {
    font-size: 18px;
    line-height: 30px;
}

/* Anchor link styling */
.block-right a {
    text-decoration: none;
}

.block-right a:hover {
    text-decoration: underline;
}

.tour-image img {
    width: 450px;
    height: auto;
    border-radius: 3px;
    object-fit: cover;
}

.block-right h3 {
    font-family: 'Work Sans', serif;
    line-height: 150%;
    font-size: 32px;
    font-weight: bold;
    padding-bottom: 25px;
}

.block-left p{
    font-size: 18px;
}

.tour-details {
    flex: 1;
}

.tour-rating {
    font-size: 1.5rem;
    margin-top: 20px; 
    align-self: flex-start; 
}
.tour-rating{
  display: inline-block; /* чтобы scale работал аккуратно */
  transition: transform 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.tour-rating:hover{
  transform: scale(1.12);
  color: #FABC1D;
}

.tour-block{
    padding: 0 0 70px;
}

.tour-right-block{
    padding: 40px 0;
    border-top: 1px solid #ffffff;
}

.tour-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.content-left {
    flex: 1;
    align-items: flex-start;
}

.content-left p {
    font-size: 18px;
    line-height: 30px;
    max-width: 560px
}

/* Anchor link styling */
.content-left a {
    text-decoration: none;
}

.content-left a:hover {
    text-decoration: underline;
}

.content-left h3 {
    font-family: 'Work Sans', serif;
    line-height: 150%;
    font-size: 32px;
    font-weight: bold;
    padding-bottom: 25px;
}

.content-right p{
    font-size: 18px;
}

.tour-left-block{
    padding: 70px 0;
    border-top: 1px solid #ffffff;
}

/* Smooth image hover effect */
.tour-image img,
.gallery-item img,
.image img {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover state */
.tour-image img:hover,
.gallery-item img:hover,
.image img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
