/* Font Ayarları */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    /* Tam ekran yüksekliği */
    height: 100vh;
    width: 100vw;
    text-align: center;
    /* Sayfada kaydırmayı engeller */
    overflow: hidden; 
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 2. TAM EKRAN GÖRSEL (Arka Plan) */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Metin okunurluğunu artırmak için karartma */
    filter: brightness(0.7);
    z-index: 1;
}

.header-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 193, 7, 0.9); /* Sarımtırak renk */
    padding: 15px 10px;
    box-sizing: border-box;
    z-index: 10;
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.profile h1, .profile .slogan {
    margin: 0;
    text-shadow: none;
}

.profile h1 {
    font-size: 1.8rem;
    color: #1a1a1a;
}
.profile .slogan {
    font-size: 1rem;
    color: #555;
    font-weight: 600;
}


.content-overlay {
    position: absolute; 
    top: 90px; 
    left: 0;
    right: 0;
    height: 100vh; 
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px; 
    padding-bottom: 20px;
}

.actions {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 400px;
}

.action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4); 
    border: 2px solid transparent;
}

.action-button i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.call-button {
    background-color: #28a745;
    border-color: #28a745;
    /* Yanıp Sönme Animasyonu Eklendi */
    animation: pulse 1.5s infinite; 
}

.whatsapp-button {
    background-color: #128C7E;
    border-color: #128C7E;
}

.action-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

/* Yanıp Sönme Animasyonu Tanımlaması */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4); 
    }
    70% {
        box-shadow: 0 0 0 15px rgba(40, 167, 69, 0); 
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

footer {
    position: fixed; 
    bottom: 0;
    left: 0;
    padding: 1rem;
    background-color: rgba(0,0,0,0.8); 
    width: 100%;
    box-sizing: border-box;
    z-index: 10; 
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    line-height: 1.4;
}

footer p {
    margin: 5px 0;
    font-size: 0.85rem;
}

footer a {
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 600px) {
    .header-box {
        padding: 10px 5px;
    }
    .profile h1 {
        font-size: 1.4rem;
    }
    .profile .slogan {
        font-size: 0.9rem;
    }
    
    .content-overlay {
        top: 70px;
        padding-top: 15px; 
    }
    
    .action-button {
        font-size: 1rem;
        padding: 0.8rem;
    }
    footer p {
        font-size: 0.75rem; 
    }
}