/* ========== Genel Ayarlar ========== */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #fdfcf8;
    color: #223;
    line-height: 1.6;
    padding-top: 80px;
    transition: background-color 1s ease-in-out, color 1s ease-in-out, opacity 0.4s ease-in-out;
}

    body.theme-transition {
        opacity: 0.6;
    }


a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

    a:hover {
        opacity: 0.7;
    }

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}


/* ========== Header ========== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 999;
    transform: translateY(0);
    transition: transform 0.4s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

    .main-header.hide {
        transform: translateY(-100%);
    }

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: bold;
}

/* Navigasyon link boşlukları */
.nav-left a {
    margin: 0 1.5rem;
}

/* Inline SVG ikonlar */
.nav-right svg {
    width: 20px;
    height: 20px;
    margin: 0 1rem;
    cursor: pointer;
    stroke: currentColor;
    fill: none;
}

/* Tema butonu */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 1rem;
    width: 28px;
    height: 28px;
    padding: 0;
}

    .theme-toggle img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }


body.dark-mode .theme-toggle {
    filter: brightness(0.8);
}


/* ========== HERO Bölümü ========== */
.hero {
    background-color: #fdfcf8;
    padding: 4rem 2rem;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: center; /* Tüm içerik ortada gruplanır */
    gap: 1rem; /* Metin ile görsel arasındaki mesafe */
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-content {
    flex: 1 1 auto; /* Esnek genişlik */
    max-width: 600px; /* En çok 600px olacak */
    animation: fadeIn 1.5s ease;
    color: #c99353f7; /* Yazı rengi */
    text-align: left; /* Metni sola hizala */
}

    .hero-content h1 {
        font-size: 4rem;
        margin: 0;
        line-height: 1.1;
    }

    .hero-content .tagline {
        margin-top: 0.5rem;
        font-size: 1.2rem;
    }

.hero-image {
    flex: 1 1 auto; /* Esnek genişlik */
    max-width: 200px; /* En çok 400px olacak */
    text-align: right; /* Görseli sağda tut */
}

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

/* Eğer mobilde tek sütun istersen bu kısmı açabilirsin */
/*
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-content,
  .hero-image {
    max-width: 100%;
    width: 100%;
  }
  .hero-image {
    margin-bottom: 2rem;
  }
}
*/


/* ========== Animasyon Tanımı ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Scroll-Reveal ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }


/* ========== Ortak Bölümler ========== */
.why-mofa,
.product-highlights,
.eco-section,
.contact-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

    .why-mofa ul {
        list-style: none;
        padding: 0;
    }

        .why-mofa ul li::before {
            content: "✓ ";
            color: green;
            margin-right: 5px;
        }


/* ========== Ürün Vurgusu ========== */
.product-highlights {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

    .product-highlights .left img {
        width: 100%;
        max-width: 400px;
        border-radius: 10px;
    }

    .product-highlights .right {
        flex: 1;
    }


/* ========== Plastiksiz Bölümü ========== */
.eco-section {
    display: flex;
    gap: 2rem;
    background-color: #f5f5f5;
    border-radius: 10px;
    margin: 2rem auto;
    flex-wrap: wrap;
}

    .eco-section .text {
        flex: 1;
    }

    .eco-section .image img {
        max-width: 300px;
        border-radius: 10px;
    }


/* ========== İletişim Bölümü ========== */
.contact-section {
    background-color: #111;
    color: white;
    text-align: center;
}

    .contact-section input[type="email"] {
        padding: 0.75rem 1rem;
        width: 250px;
        border: none;
        border-radius: 5px;
        margin-right: 1rem;
    }

    .contact-section button {
        padding: 0.75rem 1.5rem;
        background-color: #fff;
        color: #111;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }


/* ========== Footer ========== */
footer {
    background-color: #2d2927;
    color: #ccc;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 3rem 2rem;
}

    .footer-inner .footer-left,
    .footer-inner .footer-mid,
    .footer-inner .footer-right {
        flex: 1;
        min-width: 250px;
        margin-bottom: 2rem;
    }

.footer-mid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-mid ul li a {
        color: #ccc;
        display: block;
        margin-bottom: 0.5rem;
    }

.footer-right input[type="email"] {
    padding: 0.5rem;
    width: 80%;
    border: none;
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.footer-right button {
    padding: 0.5rem 1rem;
    background-color: #5c534f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


/* ========== Dark Mode ========== */
body.dark-mode {
    background-color: #2e2a28;
    color: #f0eae4;
}

    body.dark-mode .main-header {
        background-color: #3a3532;
        box-shadow: 0 1px 5px rgba(255,255,255,0.1);
    }

    body.dark-mode .eco-section {
        background-color: #3f3b38;
    }

    body.dark-mode .contact-section {
        background-color: #3a3735;
        color: #eee;
    }

    body.dark-mode footer {
        background-color: #2d2927;
        color: #ccc;
    }
.fade-in-on-load {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInOnLoad 1.5s ease forwards;
}

@keyframes fadeInOnLoad {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* === KART STİLİ & HOVER EFEKTLERİ === */
.product-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    color: #c99353; /* Bohem altın tonu */

}

    .product-card h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        color: #c99353;
    }

    .product-card .desc {
        font-size: 1rem;
        color: #111;
        margin-bottom: 0.5rem;
 
    }

    .product-card .sub-desc {
        font-size: 0.85rem;
        color: #5c534f;
    }

    /* Hover efekti */
    .product-card:hover {
        background-color: #f7eee0; /* Bohem sarı tonu */
        transform: translateY(-5px) rotateZ(-0.3deg);
        box-shadow: 0 0 0 2px #f0dab2, 0 4px 20px rgba(240, 218, 178, 0.6);
    }

        /* Hover'da yazı rengi değişimi */
        .product-card:hover h3,
        .product-card:hover .desc,
        .product-card:hover .sub-desc {
            color: #a97b36;
        }

    /* Görsel zoom efekti */
    .product-card img {
        transition: transform 0.4s ease;
        border-radius: 8px;
    }

    .product-card:hover img {
        transform: scale(1.05);
    }

/* === BUTON ANİMASYONLARI === */

/* Genel geçiş stili */
button {
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

    /* Hover efekti */
    button:hover {
        background-color: #f5d7a1;
        color: #5a3d1a;
        transform: scale(1.05);
    }

/* Pulsing animasyon */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* === LEVEL 2: BOHEM DELUXE BUTONLAR === */
.button-gradient {
    background: linear-gradient(135deg, #f6d6a8, #e8b96c);
    color: #4a2e16;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

    .button-gradient:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
    }

.button-glow {
    background-color: #f7d9a2;
    color: #5c3a1c;
    border: 2px solid #f1c77a;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: box-shadow 0.4s ease, transform 0.3s ease;
}

    .button-glow:hover {
        box-shadow: 0 0 12px #f1c77a, 0 0 24px #f1c77a7a;
        transform: translateY(-2px);
    }

.button-outline {
    background: transparent;
    color: #c99353;
    border: 2px solid #c99353;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .button-outline:hover {
        background-color: #fdf3df;
        color: #4b301a;
        transform: scale(1.03);
    }

.button-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease, transform 0.3s ease;
}

    .button-icon:hover {
        gap: 0.7rem;
        transform: translateX(2px);
    }

button.pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* === KART DÜZENİ === */
.product-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
