body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #212529;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #007bff;
    border-radius: 2px;
}

.navbar-brand .site-logo, .footer-brand .site-logo-footer {
    height: 40px; /* Adjust as needed */
    width: auto;
}

.navbar-brand .site-name, .footer-brand .site-name-footer {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 4vw, 26px);
    color: #fff;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

.top-info-stripe {
    background-color: #343a40; /* Darker background for the stripe */
    font-size: 0.85rem;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 50px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 1s ease-out forwards;
    animation-delay: 0.5s;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes fadeInSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Platform */
.about-platform img {
    max-height: 400px;
    object-fit: cover;
}

/* Rating Grid */
.hotel-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.hotel-logo-wrapper {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    flex-shrink: 0;
    transition: 0.4s linear;

    &:hover{
        transform: scale(0.98);
        opacity: 0.96;
    }
}

.hotel-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hotel-details h3 {
    color: #007bff;
    font-weight: 600;
}

.star-rating {
    color: #ffc107;
}

.star-rating.large {
    font-size: 1.5rem;
}

/* Comparison Table */
.table-responsive {
    border-radius: 0.5rem;
}

.table-dark th {
    background-color: #343a40;
    color: #fff;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.075);
}

.table button.collapsed i.bi-chevron-down {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.table button:not(.collapsed) i.bi-chevron-down {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* User Reviews */
.review-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    max-width: 700px;
}

.avatar-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.carousel-item {
    padding: 2rem;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    filter: invert(1);
}

/* Editor's Rating */
.editor-rating-card {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    max-width: 600px;
    border: none;
    position: relative;
    overflow: hidden;
}

.editor-rating-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

/* Rating Criteria */
.criteria-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.criteria-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}

.progress {
    height: 10px;
    background-color: #e9ecef;
}

.progress-bar {
    transition: width 1s ease-out;
}

/* FAQ Block */
.accordion-button {
    font-weight: 600;
    color: #212529;
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #007bff;
    background-color: #e7f2ff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-item {
    border: 1px solid #dee2e6;
    margin-bottom: -1px;
}

/* Contact Form */
.contact-form-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
}

.contact-form-card .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

/* Disclaimer Block */
#disclaimer-block {
    background-color: #fff3cd; /* Light warning yellow */
    border-color: #ffc107 !important;
}

#disclaimer-block h3 {
    color: #dc3545;
}

/* Footer */
footer {
    background-color: #212529 !important;
    color: #adb5bd;
}

footer a {
    color: #adb5bd;
}

footer a:hover {
    color: #fff;
}

.site-logo-footer {
    height: 30px;
}

.site-name-footer {
    font-size: 1.2rem;
}

.footer-logos {
    margin-top: 2rem;
}

.footer-logo {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo-18plus {
    max-width: 60px;
    height: auto;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.2);
}

/* Cookie Banner */
.cookie-banner {
    z-index: 1050;
    background-color: #212529 !important;
    color: #fff;
    border-top: 1px solid #343a40;
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner a {
    color: #007bff;
}

.cookie-banner .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.cookie-banner .btn-outline-light {
    color: #fff;
    border-color: #fff;
}

.cookie-banner .btn-outline-light:hover {
    background-color: #fff;
    color: #212529;
}

/* Modal */
.modal-content {
    border-radius: 0.5rem;
}

.modal-header {
    border-bottom: none;
}

.modal-footer {
    border-top: none;
}

/* Animations for scroll */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-scale-up {
    transform: scale(0.95);
}

.fade-in-scale-up.is-visible {
    transform: scale(1);
}

.fade-in-slide-up {
    transform: translateY(20px);
}

.fade-in-slide-up.is-visible {
    transform: translateY(0);
}

.fade-in-progress .progress-bar {
    width: 0% !important; /* Reset width for animation */
    transition: width 1.5s ease-out;
}

.fade-in-progress.is-visible .progress-bar {
    width: var(--progress-width) !important; /* Set actual width via JS custom property */
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2.1rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .hotel-card {
        flex-direction: column;
        text-align: center;
    }
    .hotel-logo-wrapper {
        margin-right: 0 !important;
        margin-bottom: 1rem !important;
        width: 120px;
        height: 120px;
        margin-left: auto;
        margin-right: auto;
    }
    .d-flex.justify-content-around.mt-4 {
        flex-direction: column;
        gap: 1rem;
    }
    .cookie-banner .container {
        flex-direction: column;
    }
}
/* Container padding for .rightsCloudWrap */
.rightsCloudWrap {
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px; /* Added bottom padding for consistency */
}

/* Paragraph base styles */
.rightsCloudWrap p {
    font-size: 16px; /* Base font size for paragraphs */
    line-height: 1.6; /* Improved readability */
    margin-bottom: 1em; /* Space after paragraph */
}

/* Heading 1 styles - moderate size */
.rightsCloudWrap h1 {
    font-size: 28px; /* Not excessively large */
    line-height: 1.2;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    font-weight: 700; /* Bold */
}

/* Heading 2 styles - moderate size */
.rightsCloudWrap h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    font-weight: 600;
}

/* Heading 3 styles - moderate size */
.rightsCloudWrap h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    font-weight: 500;
}

/* Heading 4 styles - moderate size */
.rightsCloudWrap h4 {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    font-weight: 500;
}

/* Heading 5 styles - moderate size */
.rightsCloudWrap h5 {
    font-size: 17px; /* Slightly larger than paragraph */
    line-height: 1.5;
    margin-top: 1.1em;
    margin-bottom: 0.4em;
    font-weight: 500;
}

/* Unordered list base styles */
.rightsCloudWrap ul {
    list-style-type: disc; /* Default bullet style */
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 25px; /* Indentation for bullet points */
}

/* List item base styles */
.rightsCloudWrap li {
    line-height: 1.6;
    margin-bottom: 0.5em; /* Spacing between list items */
}


.wr{
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    main{
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
        text-align: center;
    }
}

.accordion-button {
    border: 1px solid #0056b3;
    margin-bottom: 20px;
}

@media (max-width: 767px){
    .hotel-logo-wrapper{
        width: 100%;
        height: 250px;
        padding: 10px;
    }

    #disclaimer-block{
        .d-flex.align-items-start.mb-3{
            flex-direction: column;
        }
    }

    .carousel-control-prev{
        left: -10px;
    }
    .carousel-control-next{
        right: -10px;
    }
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgb(255, 255, 255) !important;
}