/* static/css/frontend_style.css */
body {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .nav-link.active, .btn-primary {
    font-family: 'Montserrat', sans-serif;
}

.navbar-brand {
    font-size: 1.7rem;
}

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
.nav-link.active {
    color: var(--bs-primary) !important;
}

.btn-primary {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px; /* Yuvarlak butonlar SaaS sitelerinde popülerdir */
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
.btn-outline-primary {
     font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-outline-primary:hover {
    transform: translateY(-2px);
}


.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 60px;
    text-align: center;
}
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}
.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--bs-primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.section-title p {
    font-size: 1.1rem;
    color: #666;
}


/* Kart Stilleri */
.feature-card, .blog-card {
    transition: all 0.3s ease-in-out;
    border: none;
    border-radius: 10px;
    overflow: hidden; /* Resimlerin karttan taşmaması için */
}
.feature-card:hover, .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.feature-card .card-body {
    padding: 2rem;
}
.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--bs-primary);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
}
.blog-card .card-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}
.blog-card .card-title a:hover {
    color: var(--bs-primary);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 123, 255, 0.05), rgba(0, 123, 255, 0.05)), url('{% static "img/hero-bg-placeholder.jpg" %}'); /* Arka plan resmi ekleyin */
    background-size: cover;
    background-position: center center;
    padding: 120px 0;
    color: #333; /* Açık renk arka plan için koyu metin */
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
}
.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

/* İletişim Formu */
.contact-form-section {
    background-color: #f8f9fa;
}

.btn-mulky{
    background:#beccea;
    color:#012413;

}
.btn-mulky:hover{
    background:#244b23;
    color:white;
}

.btn-outline-mulky{
    background:white;
    color:#012413;
    border:1px solid #beccea;
}

.ozelliklink{
    text-decoration:none;
}

.text-mulky{
    color:#244b23;
}
.text-dark{
color:#2d3035!important;}

.bg-mulky{
background-color:#224c20!important;
}


/* Diğer stil tanımlamaları buraya eklenebilir */