/* Chicken Renda - Modern Premium Theme */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;900&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
    --bg-primary: #0F0F0F;
    --bg-overlay: rgba(15, 15, 15, 0.85);
    /* Amber Gold */
    --accent-primary: #FFB347;
    /* Deep Spiced Red */
    --accent-secondary: #FF4500;
    --text-primary: #FFFFFF;
    --text-secondary: #E0E0E0;
    --border-light: rgba(255, 179, 71, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
    --glow: 0 0 25px rgba(255, 179, 71, 0.25);
    --gradient-hero: linear-gradient(135deg, #FFB347 0%, #FF4500 100%);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    margin: 0;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Backgrounds */
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Abstract Modern Dark Background */
    background: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=2564&auto=format&fit=crop') no-repeat center center/cover;
    z-index: -2;
    filter: brightness(0.4) contrast(1.1);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(15, 15, 15, 0.7) 0%, var(--bg-primary) 100%);
    z-index: -1;
}

/* Subtle pattern overlay */
.overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#FFB347 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
    pointer-events: none;
}

/* Typography & Branding */
.brand-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: italic;
    font-size: 2.5rem;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    text-shadow: var(--glow);
}

.brand-container {
    padding: 2.5rem 0;
    /* Updated padding for alignment */
    text-align: left;
    /* Align left for split layout */
    position: relative;
    z-index: 10;
}

/* Component: Glass Panel - Legacy/Fallback */
.glass-panel {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    padding: 3.5rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 179, 71, 0.4);
}

/* Hero Section (Legacy/Contact) */
.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

.status-pill {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    border: 1px solid rgba(255, 179, 71, 0.3);
    background: rgba(255, 179, 71, 0.05);
    border-radius: 50px;
    color: var(--accent-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

h1.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: #fff;
    background: linear-gradient(to bottom, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Info Area */
.contact-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-email {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.contact-email::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-primary);
    transition: width 0.3s ease;
}

.contact-email:hover {
    color: var(--accent-primary);
}

.contact-email:hover::after {
    width: 100%;
}

/* Form Styling - Contact Page */
.form-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    /* Sharper corners for modern look */
    color: #fff;
    padding: 1.2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-primary);
    box-shadow: none;
    /* Removed glow, kept clean border */
    border-left: 4px solid var(--accent-primary);
    /* Left accent on focus */
    color: #fff;
    outline: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.submit-btn {
    background: #fff;
    /* High contrast white button */
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    border: none;
    padding: 1.2rem 3rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    background: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Animations & Effects */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

/* Success Message */
.success-message .success-icon {
    color: var(--accent-primary);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.reset-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 2rem;
    font-family: 'Outfit', sans-serif;
    border-radius: 50px;
    transition: all 0.3s;
    margin-top: 2rem;
}

.reset-btn:hover {
    background: white;
    color: black;
    border-color: white;
}

/* =========================================
   NEW LAYOUT: Modern Split Editorial (Index)
   ========================================= */

.split-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* height: 100vh; */
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Left Side: Content */
.content-side {
    padding: 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 5;
    background: var(--bg-primary);
    /* Scrollability for forms */
    overflow-y: auto;
    /* max-height: 100vh; */
}

/* Custom scrollbar for content side */
.content-side::-webkit-scrollbar {
    width: 6px;
}

.content-side::-webkit-scrollbar-track {
    background: transparent;
}

.content-side::-webkit-scrollbar-thumb {
    background: rgba(255, 179, 71, 0.3);
    border-radius: 10px;
}


/* Decorative vertical line */
.content-side::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border-light), transparent);
}

/* Right Side: Visual */
.visual-side {
    position: relative;
    background: var(--bg-primary);
    overflow: hidden;
}

/* Default Visual */
.visual-side .bg-image-split {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /* High quality food/texture image */
    background: url('https://images.unsplash.com/photo-1543353071-087f9bc51ca6?q=80&w=1974&auto=format&fit=crop') no-repeat center center/cover;
    filter: grayscale(100%) contrast(1.2) brightness(0.6);
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Contact Specific Visual Class */
.visual-side .bg-contact {
    background-image: url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?q=80&w=2070&auto=format&fit=crop');
    /* Moodier cocktail/interior shot */
}

.visual-side:hover .bg-image-split {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1.1) brightness(0.8);
}

/* Overlay gradient on image */
.visual-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg-primary) 0%, rgba(15, 15, 15, 0.4) 50%, rgba(255, 179, 71, 0.1) 100%);
    z-index: 2;
}

/* Large Editorial Typography */
.display-super {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 8vw, 9rem);
    line-height: 0.9;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: -3px;
    position: relative;
}

.display-medium {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.display-super span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
}

.split-layout:hover .display-super span {
    color: var(--accent-primary);
    -webkit-text-stroke: 0px;
    opacity: 0.1;
}

.accent-text {
    color: var(--accent-primary);
    font-style: italic;
    padding-left: 0.5rem;
}

/* Metadata / Badge */
.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    color: var(--accent-secondary);
    margin-bottom: 2rem;
    font-weight: 700;
}

.meta-tag::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--accent-secondary);
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 4rem;
    border-left: 1px solid var(--accent-primary);
    padding-left: 1.5rem;
}

/* Email container redesign */
.email-minimal-wrapper {
    margin-top: auto;
}

.email-label-sm {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.email-link-lg {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: #fff;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    background: linear-gradient(to right, #fff, #fff 50%, var(--accent-primary) 50%);
    background-size: 200% 100%;
    background-position: 0%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.email-link-lg:hover {
    background-position: 100%;
}

/* Tablet / Mobile Response */
@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 100vh;
    }

    .visual-side {
        height: 40vh;
        /* Reduced height for header visual on mobile */
        order: -1;
    }

    .content-side {
        padding: 3rem 2rem;
        height: auto;
        overflow-y: visible;
        /* Let page scroll naturally on mobile */
        max-height: none;
    }

    .content-side::after {
        display: none;
    }
}