@charset "UTF-8";
/* =============================================================
   HAKKIMIZDA.CSS — Yıldız Otel | Hakkımızda Sayfası
   ============================================================= */

/* ─────────────────────────────────────────────
   Giriş Bölümü
───────────────────────────────────────────── */
.about-intro {
    padding: 90px 0;
    background: var(--white);
}

.about-intro-text h2 {
    font-size: clamp(1.7rem, 2.5vw, 2.2rem);
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.3;
}

.about-intro-text p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 14px;
}

.about-intro-text .gold-accent {
    color: var(--gold);
    font-weight: 700;
}

.about-intro-img {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-intro-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-md);
}

.about-intro-img::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 3px solid var(--gold);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.4;
}

/* ─────────────────────────────────────────────
   Misyon / Vizyon
───────────────────────────────────────────── */
.mv-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.mv-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.mv-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.mv-card.mission {
    border-top-color: var(--navy);
}

.mv-card.vision {
    border-top-color: var(--gold);
}

.mv-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.mv-card.mission .mv-card-icon {
    background: rgba(26,43,74,0.08);
    color: var(--navy);
}

.mv-card.vision .mv-card-icon {
    background: rgba(201,168,76,0.12);
    color: var(--gold);
}

.mv-card h4 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.mv-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
    margin: 0;
}

/* ─────────────────────────────────────────────
   Neden Yıldız Otel?
───────────────────────────────────────────── */
.neden-section {
    padding: 90px 0;
    background: var(--white);
}

.neden-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    height: 100%;
}

.neden-card:hover {
    background: var(--gray-light);
    transform: translateY(-5px);
}

.neden-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(201,168,76,0.10);
    border: 2px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.neden-card:hover .neden-icon {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.neden-card h5 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.neden-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ─────────────────────────────────────────────
   İstatistik Alanı
───────────────────────────────────────────── */
.about-stats {
    background: var(--navy-dark);
    padding: 70px 0;
}

.about-stat-item {
    text-align: center;
    padding: 20px 16px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.about-stat-item:last-child {
    border-right: none;
}

.about-stat-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 767.98px) {
    .about-intro { padding: 60px 0; }
    .about-intro-img img { height: 280px; }
    .mv-section { padding: 60px 0; }
    .neden-section { padding: 60px 0; }
    .about-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
    .about-stat-item:last-child { border-bottom: none; }
}
