:root {
    --bg-color: #000000;
    --text-color: #FFFFFF;
    --accent-color: #FF4D00; /* Ember/Flame color for subtle accents */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

#emberCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Header & Logo Animation */
header {
    width: 100%;
    margin-bottom: 3rem;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: 1rem;
}

.logo-paths path {
    fill: transparent;
    stroke: #FFFFFF;
    stroke-width: 1;
}

.subtitle-container {
    opacity: 0;
    animation: fadeIn 1s ease-in-out 3s forwards;
}

.main-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.sub-tagline {
    font-size: 1.5rem;
    font-style: italic;
    color: #888;
}

/* Hero Image */
.hero-image {
    width: 100%;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out 1s forwards;
}

#mainChefImage {
    width: 100%;
    max-width: 600px;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(255, 77, 0, 0.2);
    filter: brightness(0.9);
}

/* Services */
.services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
    width: 100%;
}

.service-item h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.service-item p {
    color: #ccc;
    font-size: 1.1rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #555;
    margin-top: 1rem;
}

/* Contact & Email Interaction */
.contact {
    margin-bottom: 4rem;
    width: 100%;
}

.contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #888;
}

.email-box {
    display: inline-flex;
    align-items: center;
    background: #111;
    padding: 1rem 2rem;
    border: 1px solid #333;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.email-box:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(255, 77, 0, 0.3);
    transform: translateY(-2px);
}

.email-text {
    font-weight: 700;
    margin-right: 1rem;
}

.copy-hint {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent-color);
    opacity: 0.7;
}

.notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

.notification.show {
    opacity: 1;
}

/* Footer & Social Icons */
.social-links {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.social-icon img {
    height: 32px;
    width: auto;
    filter: grayscale(1) brightness(0.8);
    transition: all 0.3s ease;
}

.social-icon:hover img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Glitch Animation */
.glitch {
    position: relative;
    animation: glitch-filter 10s linear infinite;
}

.glitch:hover {
    animation: glitch-intense 1s linear infinite;
}

@keyframes glitch-filter {
    0% {
        filter: hue-rotate(0deg) saturate(1) brightness(1);
    }
    25% {
        filter: hue-rotate(90deg) saturate(1.3) brightness(1.1);
    }
    50% {
        filter: hue-rotate(180deg) saturate(1.5) brightness(0.9);
    }
    75% {
        filter: hue-rotate(270deg) saturate(1.2) brightness(1.05);
    }
    100% {
        filter: hue-rotate(360deg) saturate(1) brightness(1);
    }
}

@keyframes glitch-intense {
    0% {
        filter: hue-rotate(0deg) saturate(1) contrast(1) brightness(1);
    }
    10% {
        filter: hue-rotate(45deg) saturate(2) contrast(1.5) brightness(1.2);
    }
    20% {
        filter: hue-rotate(90deg) saturate(1.8) contrast(1.3) brightness(0.9);
    }
    30% {
        filter: hue-rotate(135deg) saturate(2.2) contrast(1.7) brightness(1.1);
    }
    40% {
        filter: hue-rotate(180deg) saturate(2) contrast(1.4) brightness(0.8);
    }
    50% {
        filter: hue-rotate(225deg) saturate(2.3) contrast(1.6) brightness(1.15);
    }
    60% {
        filter: hue-rotate(270deg) saturate(1.9) contrast(1.35) brightness(0.95);
    }
    70% {
        filter: hue-rotate(315deg) saturate(2.1) contrast(1.5) brightness(1.1);
    }
    80% {
        filter: hue-rotate(350deg) saturate(1.7) contrast(1.25) brightness(1.05);
    }
    100% {
        filter: hue-rotate(360deg) saturate(1) contrast(1) brightness(1);
    }
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .main-title {
        font-size: 2rem;
    }
    
    .service-item h2 {
        font-size: 1.25rem;
    }
    
    .email-box {
        padding: 0.75rem 1.5rem;
    }
    
    .email-text {
        font-size: 0.9rem;
    }
}
