/* ===================================================
   ABOUT PAGE — about.css
   =================================================== */

/* ── Hero Banner ───────────────────────────────── */
.about-hero {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    padding-bottom: 0;
    overflow: hidden;
}

/* iStock couple-on-beach photo */
.about-hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/iStock-501640642WEB.jpg') center 30% / cover no-repeat;
    z-index: 0;
}

/* Left-to-right gradient overlay — dark navy on left where title sits, transparent on right */
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 32, 54, 0.72) 0%, rgba(15, 32, 54, 0.45) 45%, rgba(15, 32, 54, 0.10) 100%);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
    max-width: 520px;
}

/* ── About Text Section ────────────────────────── */
.about-content {
    padding: 60px 0 56px;
    background: #ffffff;
}

.about-content-inner {
    max-width: 720px;
}

.about-para {
    font-size: 15px;
    color: #5a6a7e;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-para:last-child {
    margin-bottom: 0;
}

/* First paragraph is slightly darker/bolder per the screenshot */
.about-para--bold {
    font-size: 15.5px;
    color: #2d3e52;
    font-weight: 500;
    margin-bottom: 24px;
}

/* ── Advantages Section ────────────────────────── */
.advantages-section {
    padding: 72px 0 80px;
    background: #e8f4fb;
}

.advantages-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px;
    font-weight: 700;
    color: #1e3451;
    text-align: center;
    margin-bottom: 40px;
}

/* 2-column grid — last odd item stays in column 1 */
.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 780px;
    margin: 0 auto;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #d6eaf5;
    border-radius: 10px;
    padding: 18px 22px;
    transition: box-shadow 0.2s, transform 0.15s;
}

.advantage-item:hover {
    box-shadow: 0 6px 18px rgba(30, 52, 81, 0.09);
    transform: translateY(-2px);
}

/* Last item alone in its row stays left */
.advantage-item:last-child:nth-child(odd) {
    grid-column: 1 / 2;
}

.adv-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: #4a80a4;
}

.advantage-item span {
    font-size: 14.5px;
    color: #2d4a6e;
    font-weight: 400;
    line-height: 1.4;
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 768px) {
    .about-hero          { height: 220px; }
    .about-hero-title    { font-size: 26px; }
    .about-content-inner { max-width: 100%; }
    .advantages-grid     { grid-template-columns: 1fr; max-width: 100%; }
    .advantage-item:last-child:nth-child(odd) { grid-column: auto; }
}

@media (max-width: 480px) {
    .about-hero          { height: 160px; }
    .about-hero-title    { font-size: 22px; }
    .about-content       { padding: 40px 0 36px; }
    .advantages-section  { padding: 48px 0 56px; }
}
