/* ==================== HOME PAGE HERO SECTION ==================== */

/* Ana başlık - "Merhaba, Ben" */
.display-3 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    color: #ffffff;
}

/* İsim vurgusu - "Alperen Samurlu" */
.display-3 .text-primary {
    font-weight: 900;
    color: #ffffff !important;
    text-shadow: 
        0 0 20px rgba(13, 110, 253, 0.6),
        2px 2px 4px rgba(13, 110, 253, 0.4);
    letter-spacing: 1px;
}

/* Profesyonel unvan - "Backend Developer" */
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.6;
    color: #0d6efd;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Açıklama metni */
.hero-description {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* Hero section genel */
.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* ==================== FEATURED PROJECTS ==================== */
.projects-page-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

/* ==================== CURRENT JOB ==================== */
.page-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

/* ==================== HERO BUTTONS ==================== */
.hero-buttons .btn {
    min-width: 160px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-width: 2px;
}

/* Hakkımda butonu - Primary (Koyu mavi dolgu) */
.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border-color: #0d6efd;
    color: #ffffff;
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #0a58ca 0%, #084298 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.5);
}

/* Projeler butonu - Info (Açık mavi/Turkuaz dolgu) */
.hero-buttons .btn-info {
    background-color: #0dcaf0;
    border-color: #0dcaf0;
    color: #000000;
}

.hero-buttons .btn-info:hover {
    background-color: #31d2f2;
    border-color: #25cff2;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(13, 202, 240, 0.5);
}

/* İş Deneyimi butonu - Outline (Şeffaf, mavi çerçeve) */
.hero-buttons .btn-outline-light {
    color: #6ea8fe !important;
    border: 2px solid #6ea8fe !important;
    background-color: transparent !important;
}

.hero-buttons .btn-outline-light:hover {
    color: #ffffff !important;
    background-color: #6ea8fe !important;
    border: 2px solid #6ea8fe !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 12px rgba(110, 168, 254, 0.5) !important;
}

/* ==================== RESPONSIVE - HERO BUTTONS ==================== */
@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column !important;
    }
    
    .hero-buttons .btn {
        width: 100%;
        min-width: unset;
    }
}

/* ==================== RESPONSIVE - HOME PAGE ==================== */

/* Tablet */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-section {
        min-height: 50vh;
    }
}

/* Mobil */
@media (max-width: 576px) {
    .display-3 {
        font-size: 2rem;
    }
    
    .display-3 .text-primary {
        display: block;
        margin-top: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
}

/* Küçük mobil */
@media (max-width: 480px) {
    .display-3 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
}