html,body{
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #222;
}
.lead{
    text-align: justify;
    padding-top: 20px;
}
.top-bar {
    background-color: #0f3f5f;
    color: #ffffff;
    font-size: 0.9rem;
    padding: 0.4rem 0;
}

.navbar-brand {
    letter-spacing: 0.03em;
}

.navbar-logo {
    height: 68px;
    width: auto;
    border: none;
}

.navbar .nav-link {
    font-weight: 500;
    padding-right: 0.9rem;
    padding-left: 0.9rem;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: #0f3f5f;
    text-decoration: underline;
}

.btn-primary {
    background-color: #0f3f5f;
    border-color: #0f3f5f;
}

.btn-primary:hover {
    background-color: #0c324b;
    border-color: #0c324b;
}

.hero-section {
    padding: 4rem 0 4rem;
    background: linear-gradient(135deg, #f4f8fc 0%, #ffffff 60%);
}

.hero-text h1 {
    color: #0f3f5f;
}

.hero-image {
    min-height: 320px;
    border-radius: 1.5rem;
}

/* Generic dark placeholders for images */
.image-placeholder {
    background-color: #333333;
    border-radius: 1rem;
}

.about-image {
    min-height: 280px;
}

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.map-placeholder {
    min-height: 280px;
}

.highlight-box {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(15, 63, 95, 0.05);
}

.section-title {
    font-weight: 700;
    color: #0f3f5f;
}

.section-subtitle {
    max-width: 640px;
    margin: 0 auto;
    color: #555555;
}

.service-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(15, 63, 95, 0.04);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(15, 63, 95, 0.08);
}

.service-card p{
    text-align: justify;
}

.pricing-table tbody tr:nth-of-type(odd) {
    background-color: #f8fafc;
}

.booking-section {
    background: linear-gradient(135deg, #0f3f5f 0%, #145880 45%, #ffffff 45%);
    color: #ffffff;
}

.booking-section .card {
    border-radius: 1.25rem;
}

.booking-section .card-body {
    background-color: #ffffff;
    color: #222222;
}

.list-check {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-check li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.6rem;
}

.list-check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #0f3f5f;
    font-weight: 700;
}

.contact-box {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(15, 63, 95, 0.04);
}

.map-placeholder {
  width: 100%;
  height: 380px;              /* vari mainīt */
  border-radius: 16px;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.team-card {
  background: #ffffff;
  padding: 28px 20px;
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.team-card:hover .team-photo {
  transform: scale(1.06);
}

/* Footer */
.footer {
    background-color: #0f2334;
    color: #cfd8e3;
}

.footer-link {
    color: #cfd8e3;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Back to top */
.back-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 2.8rem;
    height: 2.8rem;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1030;
}

.hero-carousel {
  width: 100%;
  border-radius: 16px;      /* vari noņemt, ja nevajag */
  overflow: hidden;         /* lai radius strādā */
}

/* Variants: fiksēts hero augstums */
.hero-carousel .carousel-inner {
  height: 420px;            /* maini uz 360/480/520 pēc dizaina */
}

.hero-carousel .carousel-item,
.hero-carousel img {
  height: 100%;
}

.hero-carousel img {
  object-fit: cover;
}


/* Utilities */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 3rem;
    }

    .booking-section {
        background: linear-gradient(180deg, #0f3f5f 0%, #145880 40%, #ffffff 40%);
    }
}
@media (max-width: 768px) {
  .navbar-logo {
    height: 36px;
  }
}

