/* Font Awesome için gerekli CSS */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

/* Genel Ayarlar */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #8B4513;
    padding: 20px;
    text-align: center;
    color: #fff;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

header nav ul li a:hover {
    color: #d2b48c;
}

/* Hero Bölümü */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #fffaf0 0%, #ffffff 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 700px;
}

.hero h2 {
    color: #8b4513;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero h1 {
    color: #3b3b3b;
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero p {
    color: #6d6d6d;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Hero İkonları */
.hero-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.hero-icons div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a0522d;
    font-size: 1.1rem;
}

.hero-icons i {
    font-size: 1.8rem;
    color: #8B4513;
    line-height: 1;
    border-radius: 50%;
    padding: 10px;
    background-color: rgba(139, 69, 19, 0.1);
}

/* Hero Butonları */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-buttons .btn-main {
    background-color: #a0522d;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-buttons .btn-main:hover {
    background-color: #8B4513;
    transform: scale(1.05);
}

.hero-buttons .btn-secondary {
    background-color: white;
    color: #a0522d;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    border: 2px solid #a0522d;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.hero-buttons .btn-secondary:hover {
    background-color: #a0522d;
    color: white;
    transform: scale(1.05);
}

/* Slider Ayarları */
.slider-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    min-width: 100%;
}

.slider-item img {
    width: 100%;
    display: block;
    object-fit: cover;
}

button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

.slider-dots {
    text-align: center;
    padding-top: 10px;
}

.dot {
    height: 15px;
    width: 15px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #717171;
}

/* Öne Çıkan Ürünler */
.featured-products {
    padding: 60px 0;
    background-color: #f7f7f7;
    text-align: center;
}

.featured-products h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.products-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

#more-products {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

/* Ürün Animasyonu */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-item {
    width: 30%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    text-align: left;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.product-item img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

.product-item h3 {
    font-size: 1.8rem;
    color: #333;
    margin: 15px;
}

.product-item p {
    font-size: 1rem;
    color: #777;
    margin: 10px 0;
    padding: 0 20px;
}

.product-item button {
    background-color: #8B4513;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    margin: 15px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.product-item button:hover {
    background-color: #5a2c09;
}

.product-item:hover {
    transform: translateY(-10px);
}

/* Instagram Bölümü */
.instagram-promo {
    padding: 60px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

.instagram-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.instagram-image {
    max-width: 300px;
    height: auto;
    display: block;
}

.instagram-info {
    max-width: 300px;
    text-align: left;
}

.instagram-info p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.btn-follow {
    display: inline-block;
    padding: 12px 24px;
    background-color: #8B4513;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.btn-follow:hover {
    background-color: #5a2c09;
}

/* WhatsApp Butonu */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #20b358;
}

.whatsapp-button i {
    font-size: 24px;
    margin-right: 10px;
}

.whatsapp-text {
    display: inline-block;
}

@media only screen and (max-width: 768px) {
    .whatsapp-text {
        display: none;
    }
    .whatsapp-button {
        padding: 10px;
    }
}

/* Footer */
footer {
    background: linear-gradient(to bottom, #ae7d59, #8b4513);
    color: #fff;
    text-align: center;
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

footer h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
}

footer p {
    margin: 5px 0;
    font-size: 14px;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

footer a:hover {
    color: #ffcc00;
    transition: color 0.3s ease;
}

.social-links {
    margin: 20px 0;
}

.social-links a {
    display: inline-block;
    margin: 0 15px;
    font-size: 16px;
}

.social-links i {
    margin-right: 8px;
}

.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid #fff;
    padding-top: 20px;
}

.footer-bottom ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.footer-bottom ul li {
    display: inline-block;
    margin: 0 10px;
}

.footer-bottom p {
    margin: 10px 0;
    font-size: 12px;
}

/* Mobil Uyumlu Tasarım */
@media (max-width: 768px) {
    .product-item {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .product-item {
        width: 100%;
    }
}
