
:root {
    --primary-color: #009652; /* Tema Rengi (Ana Renk) */
    --secondary-color: #0088b9; /* İkincil Renk */
    --text-color: #333; /* Genel Yazı Rengi */
    --hover-color: #0056b3; /* Hover Durumundaki Renk */
}

header{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Sabit ve küçülen header */
#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Logo başlangıç boyutu */
#logo {
    height: 80px;
    transition: height 0.3s ease;
}

/* Scroll ile küçülen logo */
.header-small #logo {
    height: 50px;
}

/* Scroll ile küçülen header */
.header-small {
    padding: 5px 0;
    transition: all 0.3s ease;
}

.owl-carousel-container {
    margin-top: 0; /* Menü ile biraz boşluk bırakmak için */
}

.owl-carousel .item img {
    width: 100%;
    height: auto; /* Görsellerin orijinal oranlarını korur */
    display: block;
}

.owl-carousel .item {
    position: relative;
    text-align: center;
}

.owl-carousel-container {
    max-width: 100%;
    overflow: hidden;
}

.text-carousel-container {
    margin: 50px auto;
    max-width: 800px; /* Slider genişliği */
    text-align: center;
}

.text-carousel .item {
    padding: 20px;
    background: #f8f9fa; /* Hafif gri arka plan */
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.text-carousel h3 {
    font-size: 24px;
    color: var(--primary-color); /* Başlık rengi */
    margin-bottom: 10px;
}

.text-carousel p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.product-carousel-container {
    margin: 50px auto;
    max-width: 1200px;
}

.product-slider {
    width: 100%;
    margin: 0 auto;
}

.product-card {
    padding: 10px;
    text-align: center;
    min-height: 26rem;
}

.product-card img {
    width: 100%;
    height: auto;
    max-width: 150px;
    /* Gerekirse boyutlandırabilirsiniz */
}

.product-card-image-area {
    border: 1px solid #ebebeb !important;
    border-radius: 6px !important;
    background-color: #FFF !important;
    height: 250px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 5vh !important;
}

.product-card-image-area img {
    max-width: 72% !important;
    max-height: 80% !important;
}

.product-card h3 {
    font-size: 1rem !important;
    min-height: 2rem;
}

.product-card p {
    min-height: 3.5rem;
}


footer h5 {
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
}
footer ul {
    padding: 0;
    list-style: none;
}
footer ul li {
    margin-bottom: 10px;
}
footer ul li a {
    text-decoration: none;
}
footer ul li a:hover {
    text-decoration: underline;
}


.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-right: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase; /* Büyük harflerle modern bir görünüm */
    letter-spacing: 1px; /* Harfler arası boşluk */
}

/* Menü Hover Efekti */
.navbar-nav .nav-link:hover {
    color: var(--primary-color); /* Mavi bir vurgu */
    transform: scale(1.1); /* Hafif büyüme efekti */
    text-decoration: none; /* Alt çizgi kaldırıldı */
}

/* Dropdown Menü Stil */
.navbar-nav .dropdown-menu {
    background: #f8f9fa;
    border: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-item {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    transition: color 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
    color: var(--primary-color);
    background: #f1f1f1;
}

/* Aktif Menü Elemanı */
.navbar-nav .nav-item.active .nav-link {
    color: var(--primary-color);
    font-weight: 600;
}