/* ========================= */
/* SOYLU HOME CUSTOM CSS */
/* ========================= */

:root {
    /* Ana Renkler */
    --primary-color: #4F6F52;  /* Koyu yeşil */
    --secondary-color: #D8AC6C; /* Altın/Toprak tonları */
    --accent-color: #739072;    /* Hafif yeşil */
    --text-color: #333333;      /* Koyu gri */
    --light-bg: #F7F9FB;        /* Açık gri-beyaz */
    --dark-bg: #2B2B2B;         /* Koyu gri-siyah */
    
    /* Fontlar */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Roboto', sans-serif;
}

/* Genel Stil */
body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-light-custom {
    background-color: var(--light-bg) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: #c19b60;
    border-color: #c19b60;
}

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

.section-title {
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
    color: var(--primary-color);
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

/* Top Bar */
.top-bar {
    font-size: 14px;
}

.social-icons a {
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color) !important;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover, 
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.logo-text {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
}

/* Mobil Navbar Düzenlemeleri */
@media (max-width: 991.98px) {
    /* Top bar sabit pozisyonda */
    .top-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1031; /* Navbar'dan daha yüksek z-index */
        background-color: var(--dark-bg);
    }
    
    /* E-posta adresini gizle */
    .contact-info span:nth-child(2) {
        display: none;
    }
    
    /* Mobil görünümde contact-info ve social-icons düzenlemesi */
    .top-bar .row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .top-bar .col-lg-6,
    .top-bar .col-md-6 {
        width: auto;
        flex: 0 0 auto;
    }
    
    .top-bar .text-end {
        text-align: right !important;
    }
    
    .contact-info {
        font-size: 12px;
    }
    
    .social-icons a {
        font-size: 14px;
        margin-left: 8px !important;
        margin-right: 0 !important;
    }
    
    /* Navbar konumlandırma - top-bar'ın altında */
    .navbar {
        position: fixed;
        top: 42px; /* Top bar yüksekliği (değiştirebilirsiniz) */
        left: 0;
        right: 0;
        z-index: 1030;
        background-color: white;
    }
    
    .navbar-collapse {
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-top: 15px;
    }
    
    .navbar-nav {
        padding-bottom: 10px;
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 5px;
    }
    
    .navbar-light .navbar-toggler {
        border: none;
        padding: 0.5rem 0.75rem;
        outline: none !important;
        box-shadow: none !important;
    }
    
    .navbar-light .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .nav-item.ms-lg-3 {
        margin-top: 10px;
    }
    
    .btn.rounded-pill {
        display: block;
        text-align: center;
    }
    
    /* Ana içerik boşluğu, sabit navbar ve top-bar için */
    body {
        padding-top: 122px; /* Navbar + top-bar yüksekliği */
    }
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    margin-bottom: 0;
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    height: 100%;
    position: relative;
    filter: brightness(1.1) contrast(1.1);
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 70px;
}

.hero-subtitle {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #fff;
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    margin: 0 5px;
    border: none;
}

.carousel-indicators button.active {
    opacity: 1;
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Ürünler Bölümü */
.product-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background-color: #fff;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-img-container {
    overflow: hidden;
    position: relative;
    height: 280px;
}

.product-img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.product-card:hover .product-img-container::before {
    opacity: 1;
}

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

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

.product-card .card-body {
    padding: 25px;
    position: relative;
}

.product-card .card-title {
    font-family: var(--heading-font);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.product-card .card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.product-card .card-text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 16px;
}

.product-card .btn {
    padding: 10px 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.product-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Popular Ürünler */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -50px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -50px;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: var(--secondary-color);
}

.owl-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 5px;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dots .owl-dot.active span, 
.owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
}

/* Hakkımızda Bölümü */
.about-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-img-container img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-img-container:hover img {
    transform: scale(1.05);
}

.about-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.about-feature-item {
    margin-bottom: 15px;
}

.about-feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* İletişim Bölümü */
.contact-form .form-control {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.contact-info-item {
    margin-bottom: 25px;
}

.contact-info-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    float: left;
}

.contact-info-item .contact-info-content {
    overflow: hidden;
}

.contact-info-item .contact-info-content h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-item .contact-info-content p {
    margin-bottom: 0;
}

/* Footer */
.footer-section {
    position: relative;
    background: linear-gradient(135deg, #1e2a35 0%, #2c3e50 100%);
    color: #e0e0e0;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,.03)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.2;
}

.footer-top {
    position: relative;
    z-index: 1;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 14px;
    color: #bbb;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo h3 {
    font-weight: 700;
    font-size: 28px;
    color: #fff;
}

.widget-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 12px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-links a:hover i {
    color: var(--secondary-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact .icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.footer-contact .text {
    line-height: 1.4;
}

.footer-schedule {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-schedule li {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}

.footer-schedule li span {
    font-weight: 500;
    color: #fff;
}

.back-to-top {
    display: none;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 767.98px) {
    .footer-widget {
        text-align: center;
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .widget-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .widget-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 1px;
    }
    
    .footer-section {
        padding-bottom: 20px;
    }
    
    .footer-logo h3 {
        font-size: 24px;
    }
    
    .footer-top {
        padding-top: 40px !important;
        padding-bottom: 20px !important;
    }
    
    .footer-social {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .footer-contact li, 
    .footer-links a {
        justify-content: center;
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .footer-links a i {
        margin-right: 5px;
        font-size: 10px;
    }
    
    .footer-contact .icon {
        width: 25px;
        height: 25px;
        margin-right: 10px;
    }
    
    .footer-schedule li {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .footer-schedule li span {
        margin-bottom: 2px;
        display: block;
    }
    
    .footer-bottom {
        padding: 15px 0 !important;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    .social-btn {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 575.98px) {
    .footer-widget {
        margin-bottom: 20px;
    }
    
    .footer-widget p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .footer-logo {
        margin-bottom: 15px !important;
    }
    
    .footer-top {
        padding-top: 30px !important;
        padding-bottom: 10px !important;
    }
    
    .footer-social {
        gap: 8px;
    }
    
    .social-btn {
        width: 28px;
        height: 28px;
    }
    
    .footer-bottom p {
        margin-bottom: 5px;
    }
    
    .footer-contact li, 
    .footer-links a,
    .footer-schedule li {
        font-size: 13px;
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .carousel-item {
        height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .owl-carousel .owl-nav button.owl-prev {
        left: -20px;
    }
    
    .owl-carousel .owl-nav button.owl-next {
        right: -20px;
    }
    
    .about-content {
        margin-top: 30px;
    }
    
    .product-img-container {
        height: 250px;
    }
    
    .product-card .card-title {
        font-size: 20px;
    }
    
    .product-card .card-text {
        font-size: 15px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .carousel-item {
        height: 60vh;
    }
    
    .hero-content {
        padding-top: 50px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-content .d-flex {
        justify-content: center;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        display: none;
    }
    
    .product-img-container {
        height: 220px;
    }
}

@media (max-width: 575.98px) {
    .carousel-item {
        height: 100vh;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-content .btn {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .product-img-container {
        height: 200px;
    }
    
    .product-card .card-body {
        padding: 20px 15px;
    }
    
    .product-card .card-title {
        font-size: 18px;
    }
    
    .product-card .card-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
} 