/* Google Fonts - Poppins ve Open Sans */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #222;
}
:root {
    --bs-primary: #004a99;
    --bs-primary-rgb: 0, 74, 153;
    --bs-secondary: #007bff;
    --bs-light-bg: #f8f9fa;
    --bs-dark-bg: #212529;
}
.navbar-brand {
    color: var(--bs-primary) !important;
    font-size: 1.7rem;
    font-weight: 700;
}

.navbar .nav-link {
    font-weight: 600;
    color: #555;
    padding: 0.7rem 1rem;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 0.3rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--bs-primary);
    background-color: rgba(var(--bs-primary-rgb), 0.05);
}
.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #003a7a;
    border-color: #003a7a;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--bs-primary);
    color: #fff;
    transform: translateY(-2px);
}

.custom-btn {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.custom-btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.custom-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.hero-section {
    height: 80vh;
    min-height: 550px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1594191370215-626a42767098?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.hero-section p.lead {
    font-weight: 300;
    font-size: 1.3rem;
}
.page-header {
    background-color: var(--bs-light-bg);
    border-bottom: 1px solid #eee;
}
.feature-box {
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0.5rem 1.5rem rgba(var(--bs-primary-rgb), 0.1) !important;
    border-color: var(--bs-primary);
}
.feature-box i {
    color: var(--bs-primary);
}
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

.product-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}
.info-box {
    border-left: 5px solid var(--bs-primary);
}
.info-box i {
    color: var(--bs-primary);
}

.map-container {
    height: 400px;
}
.map-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
footer {
    background-color: var(--bs-dark-bg);
}
footer h5 {
    color: #fff;
}
footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}
footer a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

.social-icons a {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: #fff;
}
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p.lead {
        font-size: 1rem;
    }
}