.aroma-wrapper {
    --aroma-gold: #b8935a;
    --aroma-ink: #1a1814;
    --aroma-font-display: 'Cormorant Garamond', Georgia, serif;

    --aroma-shadow-strong:
        0 2px 8px rgba(0,0,0,0.6),
        0 1px 3px rgba(0,0,0,0.8),
        0 0 40px rgba(0,0,0,0.3);
    --aroma-shadow-soft:
        0 1px 4px rgba(0,0,0,0.5),
        0 2px 12px rgba(0,0,0,0.35);
}
.aroma-wrapper * { box-sizing: border-box; }

/* 50VH section */
.aroma-section {
    height: 110vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Readability overlay */
.aroma-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.4) 40%,
        rgba(0,0,0,0.15) 70%,
        rgba(0,0,0,0) 100%
    );
    pointer-events: none;
}
.aroma-section.aroma-right::before {
    background: linear-gradient(
        270deg,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.4) 40%,
        rgba(0,0,0,0.15) 70%,
        rgba(0,0,0,0) 100%
    );
}
.aroma-section.aroma-center::before {
    background: radial-gradient(
        ellipse at center,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.75) 100%
    );
}

/* Content */
.aroma-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 0 clamp(2rem, 6vw, 6rem);
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.aroma-section.aroma-right .aroma-content {
    margin-left: auto;
    text-align: right;
}
.aroma-section.aroma-center .aroma-content {
    margin: 0 auto;
    text-align: center;
}

.aroma-eyebrow {
    font-family: "Roboto", sans-serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--aroma-gold);
    letter-spacing: 0.08em;
    margin: 0 0 1rem;
    text-shadow: var(--aroma-shadow-soft);
}
.aroma-title {
    font-family: "Roboto", sans-serif;
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.005em;
    margin: 0 0 1.25rem;
    color: #fff;
    text-shadow: var(--aroma-shadow-strong);
}
.aroma-title em {
    font-style: italic;
    color: var(--aroma-gold);
}
.aroma-desc {
    font-size: 1.02rem;
    font-weight: 300;
    line-height: 1.7;
    margin: 0 0 2rem;
    max-width: 480px;
    color: #fff;
    text-shadow: var(--aroma-shadow-soft);
}
.aroma-section.aroma-right .aroma-desc { margin-left: auto; }
.aroma-section.aroma-center .aroma-desc { margin: 0 auto 2rem; }

/* Buttons */
.aroma-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.7);
    background: transparent;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.aroma-btn:hover {
    background: #fff;
    color: var(--aroma-ink);
    border-color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}
.aroma-btn-primary {
    background: var(--aroma-gold);
    border-color: var(--aroma-gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.aroma-btn-primary:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

/* Mobile */
@media (max-width: 768px) {
    .aroma-content { padding: 0 2rem; }
    .aroma-section.aroma-right .aroma-content {
        text-align: left;
        margin-left: 0;
    }
    .aroma-section.aroma-right .aroma-desc { margin-left: 0; }
    .aroma-section::before,
    .aroma-section.aroma-right::before {
        background: linear-gradient(
            180deg,
            rgba(0,0,0,0.55) 0%,
            rgba(0,0,0,0.3) 50%,
            rgba(0,0,0,0.7) 100%
        );
    }
}

.aroma-blog {
    --aroma-ink: #0a2540;
    --aroma-accent: #2b9aae;
    --aroma-muted: #6b7c8e;
    --aroma-font-display: 'Cormorant Garamond', Georgia, serif;

    padding: 4.5rem 0 5.5rem;
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.aroma-blog * { box-sizing: border-box; }

/* Üst taraftaki bölümlerle aynı container genişliği */
.aroma-blog-header,
.aroma-blog-list,
.aroma-blog-viewall {
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding-left: 18px;
    padding-right: 18px;
}

.aroma-blog-header {
    margin-bottom: 2rem;
}
.aroma-blog-header h2 {
    font-family: "Roboto", sans-serif;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 500;
    color: var(--aroma-ink);
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

/* Dikey liste — her yazı tek satır */
.aroma-blog-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Her yazı = yatay satır (görsel sol, metin sağ) */
.aroma-blog-item {
    display: grid;
    grid-template-columns: minmax(0, 300px) 1fr;
    gap: 1.5rem;
    align-items: center;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 1px 2px rgba(10, 37, 64, .04), 0 6px 18px rgba(10, 37, 64, .05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.aroma-blog-item:hover {
    transform: translateY(-3px);
    border-color: #d6e1ee;
    box-shadow: 0 14px 34px rgba(10, 37, 64, .12);
}
.aroma-blog-item:hover .aroma-blog-image img {
    transform: scale(1.05);
}
.aroma-blog-item:hover .aroma-blog-title {
    color: var(--aroma-accent);
}

.aroma-blog-image {
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 16 / 10;
    background: #f5f5f5;
}
.aroma-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.aroma-blog-text {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0 8px;
    min-width: 0;
}

.aroma-blog-category {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--aroma-accent);
    margin: 0;
}

.aroma-blog-title {
    font-family: "Roboto", sans-serif;
    font-size: clamp(1.15rem, 1.9vw, 1.45rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--aroma-ink);
    margin: 0;
    letter-spacing: -0.005em;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aroma-blog-excerpt {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--aroma-muted);
    margin: 0;
}

.aroma-blog-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    color: var(--aroma-muted);
    margin-top: 0.15rem;
}
.aroma-blog-meta span { display: inline-block; }
.aroma-blog-meta .dot {
    width: 3px; height: 3px;
    background: var(--aroma-muted);
    border-radius: 50%;
    opacity: 0.5;
}

.aroma-blog-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--aroma-ink);
}
.aroma-blog-arrow i,
.aroma-blog-arrow svg {
    width: 14px;
    height: 14px;
    font-size: 0.72rem;
    transition: transform 0.3s ease;
}
.aroma-blog-item:hover .aroma-blog-arrow i,
.aroma-blog-item:hover .aroma-blog-arrow svg {
    transform: translateX(5px);
}

/* "Tüm haberleri gör" linki */
.aroma-blog-viewall {
    margin-top: 2.5rem;
    text-align: center;
}
.aroma-blog-viewall a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 2rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--aroma-ink);
    text-decoration: none;
    border: 1px solid var(--aroma-ink);
    border-radius: 8px;
    transition: all 0.3s ease;
}
.aroma-blog-viewall a:hover {
    background: var(--aroma-ink);
    color: #fff;
}

/* Responsive */
@media (max-width: 640px) {
    .aroma-blog { padding: 3rem 0 4rem; }
    .aroma-blog-item {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        overflow: hidden;
    }
    .aroma-blog-image { border-radius: 0; }
    .aroma-blog-text { padding: 16px 16px 18px; }
}


/* ============================================================
   ANA SAYFA — KATEGORİ BÖLÜMLERİ
   Arka plan görseli + alttan yumuşak gradyan + sol-alt hizalı
   beyaz başlık / etiket / buton. Her bölüm 100vh.
   Yazı her arka planda okunur kalsın diye gradyan kullanıldı.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,400;1,300&display=swap');

.cx-sec {
    position: relative;
    height: 90vh;
    width: 100%;
    display: flex;
    overflow: hidden;
}

/* Arka plan görseli */
.cx-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

/* Alttan yukarı yumuşak gradyan — metin altta okunur, üst görsel nefes alır */
.cx-veil {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top,
    rgba(8, 10, 14, .85) 0%,
    rgba(8, 10, 14, .45) 35%,
    rgba(8, 10, 14, .05) 70%,
    transparent 100%);
}

/* İçerik — alta yasla + sitenin genel container'ı ile aynı hizada (ortalı) */
.cx-in {
    position: relative;
    z-index: 3;
    margin: auto auto 0;          /* üst: alta yasla · yatay: ortala · alt: 0 */
    width: 100%;
    max-width: var(--container);
    padding: 0 18px 9vh;          /* .container ile aynı: 18px yatay padding */
    color: #fff;
}

/* Üst etiket (ince çizgili) */
.cx-eye {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .28em;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 20px;
}
.cx-eye::before {
    content: '';
    width: 38px;
    height: 1px;
    background: rgba(255, 255, 255, .7);
}

.cx-title {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 300;
    font-size: clamp(40px, 5.5vw, 82px);
    line-height: 1.0;
    letter-spacing: -.015em;
    margin: 0;
    text-shadow: 0 2px 40px rgba(0, 0, 0, .4);
}

.cx-cta {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 34px;
    padding: 15px 34px;
    border: 1.5px solid rgba(255, 255, 255, .6);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: .14em;
    transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.cx-cta:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
}

@media (max-width: 768px) {
    .cx-in { padding: 0 18px 12vh; }
    .cx-title { font-size: clamp(34px, 9vw, 54px); }
    .cx-cta { padding: 13px 28px; }
}
