﻿:root {
    --ink: #1d1a18;
    --sand: #f7f1e7;
    --clay: #d3a57a;
    --sea: #2f6f7e;
    --leaf: #3f6b4f;
    --sun: #f3b23b;
    --mist: #eef3f4;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: #ffffff;
    margin: 0;
    padding: 0;
}

html {
    margin: 0;
    padding: 0;
    background: #1f2a2f;
}

.topbar {
    margin-top: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.3px;
}

.topbar {
    background: #1f2a2f;
    color: #dfe7ea;
    font-size: 0.85rem;
    padding: 0.4rem 0;
    position: relative;
}

.topbar::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: #1f2a2f;
}

.topbar__meta {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
}

.topbar__meta i {
    color: var(--sun);
    margin-right: 0.35rem;
}

.navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(31, 42, 47, 0.08);
}

.breadcrumb-bar {
    background: #fff;
    border-bottom: 1px solid rgba(31, 42, 47, 0.08);
    padding: 0.75rem 0;
}

.breadcrumb a {
    color: #2f6f7e;
    text-decoration: none;
    font-weight: 500;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #1f2a2f;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.navbar-brand img {
    height: 64px;
    width: auto;
    display: block;
}

.nav-link {
    font-weight: 500;
    color: #1f2a2f;
}

.nav-link.active,
.nav-link:hover {
    color: var(--sea);
}

.btn-brand {
    background: var(--sea);
    color: #fff;
    border-radius: 999px;
    padding: 0.55rem 1.5rem;
    border: none;
}

.btn-brand:hover {
    background: #285c69;
    color: #fff;
}

.hero {
    padding: 5rem 0 3.5rem;
    position: relative;
}

.hero--full {
    padding: 0 0 3.5rem;
    margin-top: 0;
    background: transparent;
}

.hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(47, 111, 126, 0.12);
    top: 40px;
    right: -60px;
    z-index: 0;
}

.hero .row {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    background: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(31, 42, 47, 0.12);
    font-weight: 600;
    color: #1f2a2f;
}

.hero-title {
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    line-height: 1.05;
}

.hero-card {
    background: #fff;
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(31, 42, 47, 0.15);
}

.hero-slider {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(31, 42, 47, 0.18);
}

.hero--full .hero-slider {
    margin-top: 0;
}

.hero-slider img {
    height: 70vh;
    min-height: 420px;
    object-fit: cover;
}

.hero-slider--full {
    border-radius: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(25, 22, 19, 0.65) 0%, rgba(25, 22, 19, 0.1) 60%, rgba(25, 22, 19, 0) 100%);
    z-index: 2;
}

.hero-overlay__content {
    max-width: 520px;
    color: #fff;
}

.hero-overlay__content .hero-badge {
    background: rgba(255, 255, 255, 0.9);
}

.hero-overlay__content .lead {
    color: rgba(255, 255, 255, 0.85);
}

.hero-content {
    margin-top: -60px;
    position: relative;
    z-index: 3;
}

.hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-card li {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.hero-card li i {
    color: var(--leaf);
}

.section-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--sea);
    font-weight: 600;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.7rem);
}

.service-card {
    background: #fff;
    border-radius: 22px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 16px 40px rgba(31, 42, 47, 0.1);
    border: 1px solid rgba(31, 42, 47, 0.08);
}

.service-card i {
    font-size: 1.8rem;
    color: var(--sun);
}

.destination-strip {
    background: linear-gradient(120deg, #1f2a2f 0%, #2f6f7e 55%, #3f6b4f 100%);
    color: #fff;
    padding: 3rem 0;
    border-radius: 32px;
}

.destination-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.destination-item span {
    font-weight: 600;
}

.review-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(31, 42, 47, 0.08);
    box-shadow: 0 14px 36px rgba(31, 42, 47, 0.1);
}

.review-stars {
    color: var(--sun);
}

.review-feature {
    padding: 2rem;
}

.review-header {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-header--compact {
    gap: 1rem;
    align-items: center;
}

.review-compact-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.review-compact-body .review-stars {
    margin-bottom: 0.1rem;
}

.review-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #f1e7dc;
    color: #5b4a3f;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    flex-shrink: 0;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-avatar--large {
    width: 90px;
    height: 90px;
}

.review-meta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.9rem;
    color: #5a5f63;
    margin-bottom: 0.35rem;
}

.review-date {
    color: #7a8288;
}

.review-source {
    font-size: 0.9rem;
    color: #7a8288;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.review-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
}

.review-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.review-card-link:hover {
    color: inherit;
}

.review-source-link {
    display: inline-flex;
    align-items: center;
}

.review-source-logo {
    height: 26px;
    width: auto;
    display: block;
}

.news-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(31, 42, 47, 0.08);
}

.news-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.6s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-hero-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.news-hero-image:hover {
    transform: scale(1.02);
}

.news-content {
    max-width: 820px;
}

.news-detail-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(31, 42, 47, 0.12);
    border: 1px solid rgba(31, 42, 47, 0.08);
}

.gallery-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-photo {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(31, 42, 47, 0.12);
}

.gallery-photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.gallery-photo:hover img {
    transform: scale(1.06);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 18, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.contact-card {
    background: #fff;
    border-radius: 26px;
    padding: 2rem;
    box-shadow: 0 16px 40px rgba(31, 42, 47, 0.1);
}

.destination-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(31, 42, 47, 0.12);
    border: 1px solid rgba(31, 42, 47, 0.08);
    height: 100%;
}

.destination-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover .destination-image {
    transform: scale(1.06);
}

.destination-body {
    padding: 1.5rem;
}

.site-footer {
    background: #1f2a2f;
    color: #dfe7ea;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.site-footer h5,
.site-footer h6 {
    color: #fff;
}

.footer-logo img {
    height: 46px;
    width: auto;
    margin-bottom: 0.75rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #dfe7ea;
    text-decoration: none;
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
}

.social-links a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    margin-right: 0.5rem;
    text-decoration: none;
}

.why-ruisha {
    background: #fff;
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 18px 40px rgba(31, 42, 47, 0.12);
    border: 1px solid rgba(31, 42, 47, 0.08);
}

.why-ruisha__photo {
    width: 100%;
    max-width: 320px;
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(31, 42, 47, 0.16);
    object-fit: cover;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
    z-index: 1000;
}

.page-hero {
    padding: 3.5rem 0 2.5rem;
}

.page-hero p {
    max-width: 720px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .topbar {
        display: none;
    }
}
