:root {
    --primary-color: #faba02; 
    --secondary-color: #212529;
    --text-muted: #6c757d;
    --dark-bg: #1a1a1a;
    --light-gray: #f8f9fa;
}

.color-primary {
    color: var(--primary-color);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Header & Nav */
.header-top {
    font-size: 0.9rem;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Slider */
#heroSlider {
    position: relative;
    height: 70vh;
}

#heroSlider .carousel-item {
    height: 70vh;
}

#heroSlider img {
    height: 100%;
    object-fit: cover;
}

.overlay-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.carousel-caption {
    z-index: 2;
    bottom: 40%;
}

/* Parallax Section */
.parallax-section {
    height: 350px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Cards */
.card {
    transition: transform 0.3s;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    height: 250px;
    object-fit: cover;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #000;
}

.lead-text {
    line-height: 1.8;
    font-size: 1.1rem;
}

.feature-box {
    background-color: var(--light-gray);
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background-color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-box i {
    display: block;
}

.custom-bims-img {
    max-width: 85%; 
    border: 8px solid #fff;
}

.img-wrapper {
    position: relative;
}


.product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.product-img-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}


.shantiye-banner {
    min-height: 600px; 
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.tracking-widest {
    letter-spacing: 2px;
}

.header-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

/* Mobil Sabit Bar Stilleri */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 9999;
}

.mobile-sticky-bar a {
    font-size: 14px;
    transition: background 0.3s;
}

.mobile-sticky-bar a:active {
    background-color: #f8f9fa;
}

@media (max-width: 767.98px) {
    body {
        padding-bottom: 60px; 
    }
}
