/* ================================================
   CATERING PAGE STYLES - Index Teması ile Uyumlu
   ================================================ */

/* Hero Section */
.catering-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: url('../assets/catering-bg.jpg') center/cover no-repeat, linear-gradient(180deg, #0A0A0A 0%, #000000 100%);
    overflow: hidden;
}

.catering-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.80);
    pointer-events: none;
    z-index: 0;
}

/* Cook&More Logo Watermark */
.catering-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1200px;
    height: 80%;
    background: url('../assets/cookandmore-logo.png') center/contain no-repeat;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.catering-hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 8rem 0 6rem;
}

.catering-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Brand Logo */
.catering-brand-logo {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.catering-brand-logo img,
.catering-brand-logo svg {
    max-width: 450px;
    width: 100%;
    height: auto;
    transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
}

.catering-brand-logo img:hover,
.catering-brand-logo svg:hover {
    transform: scale(1.05);
}

/* Page Title */
.page-title {
    font-family: 'Titillium Web', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 1.5rem 0;
    color: #FFFFFF;
    letter-spacing: 0.02em;
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #D9D9D9;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Badge - Index ile aynı stil */
.catering-page .section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(217, 217, 217, 0.08);
    border: 1px solid rgba(217, 217, 217, 0.15);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #D9D9D9;
    margin-bottom: 16px;
    font-family: 'Titillium Web', sans-serif;
}

/* Features Section */
.catering-features {
    padding: 6rem 0;
    background: linear-gradient(180deg, #000000 0%, #0A0A0A 100%);
    position: relative;
}

.catering-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 217, 217, 0.1), transparent);
}

/* 3D Atmospheric Canvas */
.catering-bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.4;
    z-index: 0;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 4rem;
}

.catering-features .section-title {
    font-family: 'Titillium Web', sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    margin: 0 0 1rem 0;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.section-description {
    color: #D9D9D9;
    opacity: 0.7;
    font-size: 1.125rem;
    margin-top: 1rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    perspective: 1500px;
    perspective-origin: center;
}

/* Feature Card - Index temasına uygun + Numbers + 3D Effects */
.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(35, 35, 35, 0.4));
    border: 1px solid rgba(217, 217, 217, 0.08);
    border-radius: 0;
    padding: 2.5rem 2rem;
    transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
    transform-style: preserve-3d;
    transform: translateZ(0) rotateX(0deg) rotateY(0deg);
    backface-visibility: hidden;
}

/* Feature Number */
.feature-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: 'Titillium Web', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: rgba(217, 217, 217, 0.03);
    line-height: 1;
    transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.feature-card:hover .feature-number {
    color: rgba(217, 217, 217, 0.06);
    transform: scale(1.1);
}

/* Geometric Line */
.card-geometric-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #D9D9D9, rgba(217, 217, 217, 0.2));
    transition: width 800ms cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 2;
}

.feature-card:hover .card-geometric-line {
    width: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #D9D9D9, rgba(217, 217, 217, 0.3));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 600ms cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(35, 35, 35, 0.7), rgba(26, 26, 26, 0.5));
    border-color: rgba(217, 217, 217, 0.15);
    transform: translateZ(50px) translateY(-12px) rotateX(5deg) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8),
        0 20px 40px rgba(217, 217, 217, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000, #1A1A1A);
    transition: all 600ms cubic-bezier(0.25, 1, 0.5, 1);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #232323, #3A3A3A);
    transform: rotate(45deg) scale(1.1);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    stroke: #FFFFFF;
    transition: transform 600ms cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-card:hover .feature-icon svg {
    transform: rotate(-45deg);
}

.feature-title {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.feature-description {
    color: #D9D9D9;
    opacity: 0.75;
    line-height: 1.7;
    font-size: 0.9375rem;
    position: relative;
    z-index: 1;
}

/* CTA Section - Index temasına uygun */
.catering-cta {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0A0A0A 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.catering-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(1200px 800px at 50% 50%, rgba(255, 255, 255, 0.03), transparent);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.cta-content p {
    font-size: 1.125rem;
    color: #D9D9D9;
    opacity: 0.8;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: transparent;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Titillium Web', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border: 1.5px solid rgba(217, 217, 217, 0.2);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 217, 217, 0.1), transparent);
    transition: left 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    border-color: rgba(217, 217, 217, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cta-button span,
.cta-button svg {
    position: relative;
    z-index: 1;
}

.cta-button svg {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Back Link - all-projects ile aynı */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(217, 217, 217, 0.7);
    text-decoration: none;
    font-family: 'Titillium Web', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 32px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.back-link:hover {
    color: #FFFFFF;
    transform: translateX(-4px);
}

.back-link svg {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.back-link:hover svg {
    transform: translateX(-4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .catering-hero-overlay {
        padding: 6rem 0 4rem;
    }

    .page-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }

    .page-subtitle {
        font-size: 1.125rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .catering-features,
    .catering-cta {
        padding: 4rem 0;
    }

    .cta-content h2 {
        font-size: clamp(1.8rem, 4vw, 2rem);
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: clamp(1.8rem, 5vw, 2rem);
    }

    .catering-brand-logo img,
    .catering-brand-logo svg {
        max-width: 280px;
    }

    .feature-number {
        font-size: 48px;
        top: 16px;
        right: 16px;
    }
}