/* Genel Stiller */
:root {
    --red: #e20613;
    --white: #ffffff;
    --dark: #333333;
    --light-bg: #f5f7fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light-bg);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

/* Organik Şekiller ve Ürün Kartları Stilleri */
.organic-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.organic-products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 80px 0;
}

.organic-product-card {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.5s ease;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.organic-product-card::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-color: var(--white);
    border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
    z-index: -1;
    transition: all 0.8s ease;
}

.organic-product-card:hover::before {
    transform: rotate(10deg) scale(1.05);
}

.organic-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.organic-product-card img {
    width: 80%;
    height: auto;
    object-fit: contain;
    transition: all 0.5s ease;
}

.organic-product-card:hover img {
    transform: scale(1.1);
}

.organic-product-card h3 {
    margin-top: 20px;
    font-size: 1.2rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.organic-product-card:hover h3 {
    color: var(--red);
}

/* Hover efekti - daire çizgi */
.organic-product-card::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed var(--red);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.organic-product-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

#fluidCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;  /* Sadece bu satırı değiştirin */
}

/* Animasyonlar ve Kaydırma Efektleri */
@keyframes floatAnimation {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, 15px) rotate(2deg); }
    50% { transform: translate(-5px, 10px) rotate(-1deg); }
    75% { transform: translate(-15px, -5px) rotate(1deg); }
    100% { transform: translate(5px, -10px) rotate(-2deg); }
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ===== BODY BÖLÜMÜ STİLLERİ ===== */

/* Ana Bölüm Stilleri */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-header h2 span {
    color: var(--red);
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Ürünler Bölümü */
.products-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.product-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    color: var(--red);
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.product-link:hover {
    color: #e20613;
}

.product-link:hover i {
    transform: translateX(5px);
}

/* Özel ürünlerimiz */
.about-section .section-container {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 100px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.about-content h2 span {
    color: var(--red);
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Hizmetler Bölümü */
.services-section {
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 159, 227, 0.1);
    border-radius: 50%;
}

.service-icon i {
    font-size: 2rem;
    color: var(--red);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    font-size: 1rem;
    color: #666;
}



/* ===== FOOTER BÖLÜMÜ STİLLERİ ===== */

/* Footer Ana Stiller */
.site-footer {
    position: relative;
    background-color: var(--red);
    color: var(--white);
    padding: 0;
    margin-top: 80px;
}

/* Footer Dalga Efekti */
.footer-wave {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: var(--red);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* Baloncuklar için CSS */
.bubbles {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 1rem;
    background: var(--red);
    filter: url("#blob");
    z-index: 1;
}

.bubble {
    position: absolute;
    left: var(--position, 50%);
    background: var(--red);
    border-radius: 100%;
    animation: bubble-size var(--time, 4s) ease-in infinite var(--delay, 0s),
               bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
    transform: translate(-50%, 100%);
}

@keyframes bubble-size {
    0%, 75% {
        width: var(--size, 4rem);
        height: var(--size, 4rem);
    }
    100% {
        width: 0rem;
        height: 0rem;
    }
}

@keyframes bubble-move {
    0% {
        bottom: -4rem;
    }
    100% {
        bottom: var(--distance, 10rem);
    }
}

/* Footer İçerik */
.footer-content {
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Motto Metni */
.footer-motto {
    width: 100%;
    margin-bottom: 50px;
    text-align: center;
}

.footer-motto h2 {
    font-size: 2rem;
    font-weight: 500;
}


/* Footer Menü Linkleri */
.footer-links ul {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* Footer Sosyal Medya */
.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.footer-social a {
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}

/* Footer Alt Kısım */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Footer Telif Hakkı */
.footer-copyright p {
    font-size: 0.8rem;
    margin: 0;
}

/* Footer Kullanım Şartları */
.footer-terms a {
    color: var(--white);
    font-size: 0.8rem;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.footer-terms a:hover {
    opacity: 0.8;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .about-section .section-container {
        flex-direction: column;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links ul {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .footer-social {
        margin: 20px 0;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
    }
    
    .footer-links ul {
        gap: 15px;
    }
    
    .footer-motto h2 {
        font-size: 1.5rem;
    }
}

html, body {
    overflow-x: hidden;
}

.about-section .section-container {
    width: 100%;
    box-sizing: border-box;
}

/* Daha Fazla Butonu - Oval Şekil */
.about-content .btn,
.about-content .primary-btn {
    padding: 15px 35px;
    border-radius: 50px;
    background: var(--red);
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.about-content .btn:hover,
.about-content .primary-btn:hover {
    background: #c41e3a;
    transform: translateY(-2px);
}