/* ========== PAGE HERO ========== */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background: radial-gradient(circle at top, rgba(24,36,25,0.8), rgba(5,7,5,1));
}

/* ARKA PLAN GÖRSELİ */
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://lezzet10da.com/images/uploads/banner1_Ya%C4%9F-Banner-Vitrini-15240552270111.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 0;
    filter: grayscale(0.3) blur(2px);
}

/* OVERLAY - Görselin üzerine karanlık katman */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5,7,6,0.85) 0%,
        rgba(18,26,17,0.75) 50%,
        rgba(5,7,6,0.9) 100%
    );
    z-index: 1;
}

/* Animasyonlu glow efekti */
.page-hero-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUpPage 1s ease-out 0.3s forwards;
}

@keyframes fadeInUpPage {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-breadcrumb {
    font-size: 13px;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.page-breadcrumb a {
    color: var(--accent-green);
    transition: color 300ms ease-out;
    text-decoration: none;
}

.page-breadcrumb a:hover {
    color: var(--accent-gold);
}

.page-breadcrumb .separator {
    color: rgba(134,183,106,0.4);
}

.page-breadcrumb .current {
    color: var(--text-light);
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.page-title span {
    background: linear-gradient(120deg, var(--accent-gold), var(--accent-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.page-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Hero Decoration */
.decoration-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(134,183,106,0.15);
}

.decoration-ring:nth-child(1) {
    animation: ringRotate1 25s linear infinite;
}

.decoration-ring:nth-child(2) {
    inset: 40px;
    border-style: dashed;
    animation: ringRotate2 30s linear infinite reverse;
    opacity: 0.6;
}

.decoration-ring:nth-child(3) {
    inset: 80px;
    animation: ringRotate1 35s linear infinite;
    opacity: 0.3;
}

@keyframes ringRotate1 {
    to { transform: rotate(360deg); }
}

@keyframes ringRotate2 {
    to { transform: rotate(-360deg); }
}

/* ========== PAGE CONTENT ========== */
.page-content {
    padding: 100px 0;
    position: relative;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Content Card */
.content-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translate3d(0, 60px, -100px) rotateX(20deg);
    transition: all 1200ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.content-card.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0);
}

.content-card.reverse {
    direction: rtl;
}

.content-card.reverse > * {
    direction: ltr;
}

.card-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.9);
    transition: all 800ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
}

.card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(134,183,106,0.2), transparent);
    opacity: 0;
    transition: opacity 600ms ease-out;
    z-index: 1;
}

.content-card:hover .card-image {
    transform: translateY(-12px) rotateY(5deg) scale(1.02);
    box-shadow: 0 40px 100px rgba(0,0,0,0.95), 0 0 60px rgba(134,183,106,0.3);
}

.content-card:hover .card-image::before {
    opacity: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 1000ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.content-card:hover .card-image img {
    transform: scale(1.08);
}

.card-content {
    padding: 20px 0;
}

.card-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-green);
    margin-bottom: 16px;
    font-weight: 600;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
    transition: color 400ms ease-out;
}

.content-card:hover .card-title {
    color: var(--accent-green);
}

.card-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.card-text:last-child {
    margin-bottom: 0;
}

/* Card List */
.card-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
    transition: all 400ms ease-out;
}

.list-item:hover {
    color: var(--text-light);
    transform: translateX(8px);
}

.list-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(134,183,106,0.3), rgba(134,183,106,0.1));
    border: 1px solid rgba(134,183,106,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--accent-green);
    flex-shrink: 0;
    transition: all 400ms ease-out;
}

.list-item:hover .list-icon {
    background: radial-gradient(circle, rgba(134,183,106,0.5), rgba(134,183,106,0.2));
    border-color: rgba(134,183,106,0.8);
    box-shadow: 0 0 20px rgba(134,183,106,0.4);
}

/* Full Width Content */
.content-full {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    border-radius: 32px;
    background: radial-gradient(circle at top, rgba(134,183,106,0.05), transparent);
    border: 1px solid rgba(134,183,106,0.1);
    opacity: 0;
    transform: translateY(40px);
    transition: all 1000ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.content-full.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-full .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 24px;
}

.content-full .section-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.content-full .section-text:last-child {
    margin-bottom: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .content-card {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }
    
    .content-card.reverse {
        direction: ltr;
    }
    
    .card-image {
        height: 400px;
    }
}

@media (max-width: 720px) {
    .page-hero {
        min-height: 50vh;
        padding: 120px 0 60px;
    }
    
    .page-content {
        padding: 60px 0;
    }
    
    .content-wrapper {
        gap: 60px;
    }
    
    .content-full {
        padding: 40px 24px;
    }
    
    .card-title {
        font-size: 26px;
    }
    
    .card-image {
        height: 300px;
    }
}