﻿<!-- =========================
FILE: css/info.css
========================= -->
:root {
  --panel: rgba(255, 255, 255, 0.96);
  --turquoise: #31d5ce;
  --deep: #18484d;
  --text: #3f6367;
  --muted: #7a989b;
  --line: rgba(24, 72, 77, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #f9fdfd 0%, #edf7f6 100%);
  color: var(--text);
  line-height: 1.75;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.sub-header {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  color: var(--deep);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.nav a.active,
.nav a:hover {
  color: var(--turquoise);
}

.info-hero {
  padding: 120px 0 80px;
  background: url('../images/infobanner.jpg') center/cover no-repeat;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--turquoise);
  font-size: 0.78rem;
  margin-bottom: 18px;
}

.info-hero h1,
.large-panel h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--deep);
}

.info-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1.08;
  max-width: 840px;
  margin-bottom: 20px;
}

.info-hero p {
  max-width: 720px;
}

.details-section,
.services-section {
  padding: 90px 0;
}

.details-section {
  background: #cfeeed;
}

.services-section {
  background: #bfe7e5;
}

.details-grid,
.service-grid {
  display: grid;
  gap: 26px;
}

.details-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-panel,
.service-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(24, 72, 77, 0.08);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 18px 40px rgba(24, 72, 77, 0.07);
}

.large-panel h2 {
  font-size: 2.45rem;
  margin-bottom: 18px;
}

.info-panel h3,
.service-card h3 {
  color: var(--deep);
  margin-bottom: 14px;
}

.info-list {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.info-list div {
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #f2fbfa);
  border: 1px solid rgba(24, 72, 77, 0.06);
}

.info-panel p,
.service-card p,
.info-list {
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav-wrap,
  .details-grid,
  .service-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }
}
