@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;500;600;700;800&display=swap');

/* Proje genel stil iyilestirmeleri */
:root {
    --site-font: 'Roboto Condensed', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-family: var(--site-font);
}

/* Temel Arapça RTL: layout bozmadan metin yönü */
html[dir='rtl'] body {
    direction: rtl;
    text-align: right;
}

html[dir='rtl'] .prose {
    text-align: right;
}

body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
label,
button,
input,
select,
textarea,
table {
    font-family: var(--site-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-weight: 400;
    line-height: 1.7;
}

button {
    font-weight: 700;
}

#site-header.header-scrolled {
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.16);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #eab308; /* Tailwind yellow-500 */
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

section {
    position: relative;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-section {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* İletişim Sayfası Özel Stilleri */
.contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.text-yellow-vurgu {
    color: #eab308;
}
.bg-yellow-vurgu {
    background-color: #eab308;
}
.bg-yellow-vurgu-10 {
    background-color: rgba(234, 179, 8, 0.1);
}

/* WhatsApp Premium Butonu Stilleri */
.whatsapp-premium-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    font-family: var(--site-font);
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.whatsapp-premium-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

.whatsapp-premium-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@media (max-width: 640px) {
    .whatsapp-premium-btn {
        bottom: 16px;
        right: 16px;
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .whatsapp-premium-btn svg {
        width: 22px;
        height: 22px;
    }
}
