/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2d3436;
    background-color: #f8f5f1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Logo Styles - Bu kodları style.css dosyanızdaki .logo kısmını değiştirin */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFE4B5;
}

.logo-image {
    width: 90px;
    height: 79px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFE4B5;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Responsive için mobil düzenlemesi */
@media (max-width: 768px) {
    .logo {
        gap: 10px;
        font-size: 1.4rem;
    }
    
    .logo-image {
        width: 60px;
        height: 53px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .logo {
        gap: 8px;
        font-size: 1.2rem;
    }
    
    .logo-image {
        width: 45px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
}

.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-phone {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.btn-phone:hover {
    background: linear-gradient(135deg, #219a52, #27ae60);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #d35400, #e67e22);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c0392b, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 84, 0, 0.3);
}

.btn-large {
    padding: 16px 30px;
    font-size: 16px;
}

.icon {
    font-size: 1.2em;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2d3436, #636e72);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,228,181,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,228,181,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,228,181,0.1)"/><circle cx="90" cy="80" r="2.5" fill="rgba(255,228,181,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #FFE4B5;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
}

.hero-cta {
    margin-top: 30px;
}

/* Product Info Section */
.product-info {
    padding: 80px 0;
    background: white;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-placeholder {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 20px;
    padding: 60px 20px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 35px rgba(243, 156, 18, 0.2);
}

.peanut-image {
    font-size: 6rem;
    margin-bottom: 20px;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: bold;
}

.product-details h3 {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}

.cta-section {
    background: linear-gradient(135deg, #f8f5f1, #e8e5e1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.cta-text {
    font-size: 1.2rem;
    color: #8B4513;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Quality Section */
.quality {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f5f1, #fff);
}

.quality h3 {
    text-align: center;
    font-size: 2.2rem;
    color: #8B4513;
    margin-bottom: 50px;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.quality-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.quality-item:hover {
    transform: translateY(-10px);
}

.quality-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.quality-item h4 {
    font-size: 1.3rem;
    color: #8B4513;
    margin-bottom: 15px;
}

.quality-item p {
    color: #666;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3436, #636e72);
    color: white;
}

.contact h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #FFE4B5;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
}

.contact-icon {
    font-size: 2rem;
    color: #FFE4B5;
}

.contact-item strong {
    color: #FFE4B5;
    font-size: 1.2rem;
}

.final-cta {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 50px;
    border-radius: 20px;
}

.final-cta h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #FFE4B5;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.final-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #2d3436;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .header-content {
        text-align: center;
    }
    
    .contact-buttons {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .product-info, .quality, .contact {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .peanut-image {
        font-size: 4rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.product-details,
.quality-item {
    animation: fadeInUp 1s ease-out;
}

/* Location Section */
.location {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f5f1, #ffffff);
}

.location h3 {
    text-align: center;
    font-size: 2.2rem;
    color: #8B4513;
    margin-bottom: 50px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.location-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.location-details {
    margin-bottom: 40px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f5f1, #fff);
    border-radius: 15px;
    border-left: 4px solid #8B4513;
}

.location-icon {
    font-size: 1.5rem;
    color: #8B4513;
    min-width: 30px;
}

.location-item strong {
    color: #8B4513;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.location-item p {
    color: #666;
    line-height: 1.5;
}

.location-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-directions {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.btn-directions:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f99);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.map-container {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(139, 69, 19, 0.9);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Design for Location */
@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-info {
        padding: 30px 20px;
    }
    
    .location-buttons {
        justify-content: center;
    }
    
    .location-buttons .btn {
        flex: 1;
        min-width: 150px;
        justify-content: center;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .map-overlay {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .location {
        padding: 60px 0;
    }
    
    .location-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .location-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .location-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}