

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background-color: #FFFFFF;  
    color: #363636;
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
}

 
h1, h2, h3, h4 {
    font-family: 'Merriweather', serif;
    color: #4a4a4a;
}

 
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.container-dar {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

 
main {
    padding-top: 140px;
}

 
.logo-link {
    display: flex;  
    align-items: center;  
    text-decoration: none;  
}

 
.logo img {
    height: 40px; 
    margin-right: 10px; 
}

 
.logo h1 {
    margin: 0;
    color: #C68B59;
    font-size: 24px; 
}

header#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.4s ease-in-out;
}

.header-top {
    background-color: #f5f5f5;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.4s ease-in-out;
}

.contact-info span {
    font-size: 13px;
    color: #555;
    margin-right: 20px;
}

.social-icons a img {
    height: 24px;
    width: 24px;
    vertical-align: middle;
    transition: opacity 0.3s;
    border-radius: 50%;  
    object-fit: cover;     
}

.social-icons a:hover img {
    opacity: 0.7;  
}

 
.social-icons a {
    margin-left: 18px;
    text-decoration: none;
}

.header-main {
    padding: 15px 0;
}

.logo h1 {
    margin: 0;
    color: #C68B59;
    font-size: 28px;
}



nav ul {
    list-style: none;
    padding: 0;
    display: flex;
}

nav li {
    margin-left: 25px;
}

nav a {
    text-decoration: none;
    color: #363636;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s;
}

nav a:hover {
    color: #C68B59;
}

 
header#site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

header#site-header.scrolled .header-top {
    margin-top: -50px; 
    opacity: 0;
}

 

 
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px 40px;
    border-radius: 8px;
}

.slider-text h2 {
    color: white;
    font-size: 3em;
    margin-bottom: 10px;
    margin-top: 0;
}

.slider-text p {
    font-size: 1.5em;
    margin-top: 0;
}

 
.scroll-up-bar {
    background-color: rgba(255, 255, 255, 0.95);
    border-top: 1px solid #ddd;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    position: fixed;
    bottom: -150px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 2000;
    transition: bottom 0.5s ease-in-out;
}

.scroll-up-bar.visible {
    bottom: 0;
}

.bar-icerik {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    padding: 10px 0;
}

.bar-icerik a {
    text-decoration: none;
    color: #363636;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

.bar-icerik img {
    height: 70px;
    width: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ddd;
    display: block;
    margin: 0 auto 5px;
}

.bar-icerik a:hover span {
    color: #C68B59;
}

 
#iletisim-bolumu {
    background-color: #2b2b2b;
    color: #f0f0f0;
    padding: 60px 40px;
}

.iletisim-icerik {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.harita-container, .form-container {
    flex: 1;
}

.form-container label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-container input,
.form-container textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background-color: #3a3a3a;
    border: 1px solid #555;
    border-radius: 4px;
    color: #f0f0f0;
    font-size: 16px;
}

.form-container button {
    background-color: #C68B59;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.form-container button:hover {
    background-color: #a56f43;
}

 

.urun-listesi {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px 0 20px 0;
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

.urun-listesi::-webkit-scrollbar {
    display: none;  
}

.urun-karti {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 15px;
    display: flex; 
    flex-direction: column; 
    text-align: center; 
    width: 240px;
    flex: 0 0 240px;
}

.urun-karti img {
    max-width: 100%;
    border-radius: 4px;
    margin-bottom: 15px;
    height: 160px;
    object-fit: cover;
}

.urun-karti-link {
    text-decoration: none;
    color: inherit; 
    display: flex;
}

 

 
.sayfa-basligi {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #f9f9f9;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.sayfa-basligi h1 {
    font-size: 2.5em;
}

 
.urun-detay-container {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    max-width: 960px;
    margin: 30px auto 0;
    padding: 0 20px;
}

.urun-gorselleri, .urun-bilgileri {
    flex: 1;
}

#ana-gorsel {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.kucuk-gorseller {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.kucuk-gorseller img {
    width: 23%;
    border-radius: 4px;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: border-color 0.3s;
}

.kucuk-gorseller img:hover {
    border-color: #C68B59;
}

.urun-bilgileri h1 {
    margin-top: 0;
}

.fiyat {
    font-size: 1.5em;
    color: #C68B59;
    font-weight: bold;
    margin-bottom: 20px;
}

.siparis-butonu {
    display: inline-block;
    background-color: #C68B59;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.siparis-butonu:hover {
    background-color: #a56f43;
}

 
.hakkimizda-icerik {
    padding: 60px 0;
}

.hakkimizda-gorsel {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hakkimizda-icerik h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.hakkimizda-icerik h3 {
    font-size: 1.5em;
    margin-top: 40px;
    margin-bottom: 15px;
    border-left: 4px solid #C68B59;
    padding-left: 15px;
}

.hakkimizda-icerik p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

 
.iletisim-sayfasi-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    gap: 40px;
}

.iletisim-detaylari, .iletisim-formu {
    flex: 1;
}

.iletisim-detaylari h2, .iletisim-formu h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.iletisim-detaylari p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.detay-item {
    margin-bottom: 25px;
}

.detay-item h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: #333;
}

.detay-item p {
    font-size: 1em;
    margin-bottom: 0;
}

.iletisim-formu label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.iletisim-formu input,
.iletisim-formu textarea,
.iletisim-formu button {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.iletisim-formu button {
    background-color: #C68B59;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

 

.hakkimizda-container {
    max-width: 960px;  
    margin: 0 auto;
    padding: 0 20px;
    display: flex;  
    align-items: center;  
    gap: 50px;  
}

.hakkimizda-resim {
    flex: 0 0 40%;  
}

.hakkimizda-metin {
    flex: 1;  
}

 
.hakkimizda-gorsel {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 0;  
}


 
@media only screen and (max-width: 768px) {
    .header-top {
        padding: 5px 0;
    }
    .header-top .container {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    .contact-info span {
        display: inline-block;
        margin: 2px 5px;
        font-size: 12px;
    }
    .social-icons {
        margin-top: 0;
    }
    .social-icons a {
        margin: 0 10px;
    }
    .social-icons a img {
        height: 20px;
        width: 20px;
    }
    .header-main {
        padding: 8px 0;
    }
    .header-main .container {
        flex-direction: column;
        text-align: center;
    }
    .logo {
        margin-bottom: 5px;
    }
    .logo img {
        height: 30px;
    }
    .logo h1 {
        font-size: 22px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    nav li {
        margin: 2px 8px;
    }
    nav a {
        font-size: 14px;
    }
    .slider-text {
        width: 90%;
        padding: 15px;
    }
    .slider-text h2 {
        font-size: 1.8em;
    }
    .slider-text p {
        font-size: 1.1em;
    }
    .hakkimizda-container,
    .iletisim-sayfasi-container,
    .iletisim-icerik,
    .urun-detay-container {
        flex-direction: column !important;
        gap: 30px;
    }
    .hakkimizda-resim, 
    .hakkimizda-metin, 
    .iletisim-detaylari, 
    .iletisim-formu, 
    .urun-gorselleri, 
    .urun-bilgileri,
    .harita-container, 
    .form-container {
        width: 100%;
        flex: none;
    }
    .harita-container iframe {
        width: 100% !important;
        height: 250px;
    }
    .urun-karti {
        width: 200px;
        flex: 0 0 200px;
    }
    .scroll-up-bar {
        height: auto;
        padding: 10px 0;
    }
    .bar-icerik {
        flex-wrap: wrap;
        gap: 10px;
    }
    .bar-icerik a span {
        display: none;
    }
    .bar-icerik img {
        height: 50px;
        width: 50px;
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 480px) {
    .sayfa-basligi h1 {
        font-size: 2em;
    }
    .fiyat {
        font-size: 1.2em;
    }
}