/*Renk değişkenleri*/
:root {
    --primary: #00b8c0;
    --secondary: #00334e;
    --accent: #fc9817;
    --bg-soft: #f0f8f9;
    --ink: #2d2f31;
    --muted: #6c757d;
    --surface: #ffffff;
    --stroke: rgba(0, 184, 192, 0.1);
    --shadow: 0 15px 35px rgba(0, 51, 78, 0.08);
    --shadow-soft: 0 10px 25px rgba(0, 184, 192, 0.05);
    --primary-light: rgba(0, 184, 192, 0.1);
    --accent-light: rgba(252, 152, 23, 0.1);
    --gradient-bg: linear-gradient(135deg,
            #f0f8f9 0%,
            #e6f7f8 50%,
            #ffffff 100%);
}

/* Ana sayfa genel düzen */
.page-wrap {
    max-width: 1250px;
}

/*İçerik kartı*/
.content-card {
    background: var(--surface);
    border: 2px solid var(--stroke);
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

/* Kart üstünde ince renkli çizgi */
.content-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* Başlık ayarları */
.content-card h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
}

/* Başlık altı çizgi */
.content-card h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 230px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Bilgi satırları*/
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 184, 192, 0.08);
    transition: all 0.3s ease;
    border-radius: 12px;
    margin: 0 -8px;
    padding-left: 16px;
    padding-right: 16px;
}

/* Son bilgi satırında alt border olmasın */
.info-item:last-of-type {
    border-bottom: none;
}

/* Hover efekti */
.info-item:hover {
    background: var(--primary-light);
    transform: translateX(5px);
}

/* İkon kutusu */
.info-item i {
    font-size: 1.1rem;
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(135deg,
            var(--primary-light),
            rgba(0, 184, 192, 0.15));
    color: var(--primary);
    border: 1px solid rgba(0, 184, 192, 0.2);
    min-width: 44px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 184, 192, 0.1);
    transition: all 0.3s ease;
}

/* Bilgi içeriği */
.info-item .info-content {
    flex: 1;
    padding-top: 2px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    font-weight: 600;
}

.info-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.info-item a:hover {
    color: var(--secondary);
}

/*Ayırıcı çizgi*/
hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 35px 0;
    border-radius: 1px;
    opacity: 0.3;
}

/* Alt not kutusu*/
.note {
    background: var(--accent-light);
    border: 1px solid rgba(252, 152, 23, 0.2);
    border-radius: 15px;
    padding: 20px;
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    font-family: "Segoe UI", "Roboto", sans-serif;
}

.note::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    border-radius: 0 0 0 15px;
}

.note h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
    /* başlık ile metin arası boşluk */
}

.note h6 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--ink);
    margin-top: 0px;
    /* fazladan boşluğu kaldırır */
    line-height: 1.6;
    /* satır aralığı */
}

/*Animasyonlar*/
.content-card {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-item {
    animation: fadeInLeft 0.6s ease-out forwards;
    opacity: 0;
    align-items: center;
}

/* Her satır için farklı gecikme */
.info-item:nth-child(1) {
    animation-delay: 0.1s;
}

.info-item:nth-child(2) {
    animation-delay: 0.2s;
}

.info-item:nth-child(3) {
    animation-delay: 0.3s;
}

.info-item:nth-child(4) {
    animation-delay: 0.4s;
}

.info-item:nth-child(5) {
    animation-delay: 0.5s;
}

.info-item:nth-child(6) {
    animation-delay: 0.6s;
}

.info-item:nth-child(7) {
    animation-delay: 0.7s;
}

.info-item:nth-child(8) {
    animation-delay: 0.8s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*Alt çizgi efekti */
.info-item .info-content div {
    display: inline-block;
    position: relative;
    font-weight: 600;
}

.info-item .info-content div::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.info-item:hover .info-content div::after {
    opacity: 0;
}

/*Responsive ayarı*/
@media (max-width: 768px) {
    .content-card h1 {
        font-size: 28px;
    }

    .info-item {
        gap: 15px;
        padding: 15px 12px;
    }

    .info-item i {
        padding: 10px;
        min-width: 40px;
    }
}