/* CSS Variables & Theme Setup */
:root {
    --bg-color: #0b0c0e;
    --card-bg: rgba(22, 26, 33, 0.5);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(212, 163, 89, 0.25);
    
    --text-primary: #f3f4f6;
    --text-secondary: #a1a8b3;
    --text-muted: #626a75;
    
    --gold-primary: #d4a359;
    --gold-secondary: #b3843b;
    --gold-gradient: linear-gradient(135deg, #f3c98b 0%, #d4a359 50%, #a7742d 100%);
    --glow-color: rgba(212, 163, 89, 0.12);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 1.8s cubic-bezier(0.25, 1, 0.5, 1);
    
    --font-body: 'Outfit', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html, body {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow: hidden;
    line-height: 1.6;
}

/* Background Glow Effects */
.glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
    mix-blend-mode: screen;
}

.glow-1 {
    top: -10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(212, 163, 89, 0.15) 0%, rgba(11, 12, 14, 0) 70%);
}

/* Split-screen Layout Container */
.split-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    position: relative;
    z-index: 1;
}

/* Left Side Content Panel */
.panel-content {
    width: 45%;
    height: 100%;
    background: var(--bg-color);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.panel-inner {
    height: 100%;
    padding: 3rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header Styling */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    cursor: default;
    transition: var(--transition-normal);
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-img {
    height: 60px;
    max-height: 60px;
    width: auto;
    object-fit: contain;
    /* CSS filter that fills any non-transparent logo with solid white */
    filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(255, 255, 255, 0.15));
}

.accent-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 163, 89, 0.08);
    border: 1px solid rgba(212, 163, 89, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    align-self: flex-start;
    margin-bottom: 0.5rem;
    box-shadow: 0 0 15px rgba(212, 163, 89, 0.05);
}

.tag-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(212, 163, 89, 0.7);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(212, 163, 89, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(212, 163, 89, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(212, 163, 89, 0);
    }
}

/* Hero Section */
.hero-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero-title {
    font-size: clamp(2rem, 3.5vw, 3.1rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.gold-text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Features list in content column */
.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    margin-top: 0.5rem;
}

.features-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.list-icon {
    font-size: 1.1rem;
    color: var(--gold-primary);
    background: rgba(212, 163, 89, 0.08);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(212, 163, 89, 0.1);
}

.list-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.list-text strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.list-text span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Left Column Footer / Contact */
.footer {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.contact-link, .contact-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--gold-primary);
}

.contact-link i, .contact-item i {
    font-size: 0.95rem;
    color: var(--gold-primary);
    width: 20px;
    display: flex;
    justify-content: center;
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* Right Side Visual Panel */
.panel-visual {
    width: 55%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.visual-img-container {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Beautiful slow panning Ken Burns effect */
.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    animation: kenBurnsPan 30s ease-in-out infinite alternate;
}

@keyframes kenBurnsPan {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.08) translate(-1.5%, -0.5%);
    }
    100% {
        transform: scale(1.04) translate(0.5%, -1%);
    }
}

/* Dark gradient overlay blending split side with left side */
.overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg-color) 0%, rgba(11, 12, 14, 0.4) 15%, rgba(11, 12, 14, 0) 100%),
                linear-gradient(to top, rgba(11, 12, 14, 0.7) 0%, rgba(11, 12, 14, 0) 40%);
    z-index: 2;
}

/* Typographic showcase badge safely positioned at the bottom right corner without card box */
.showcase-badge {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 3;
    text-align: right;
    pointer-events: none;
    transition: var(--transition-normal);
}

.badge-tag {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.showcase-badge h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.95);
}

/* Responsive Design (Mobile / Tablet) */
@media (max-width: 1024px) {
    html, body {
        height: auto;
        overflow-y: auto;
    }
    
    .split-container {
        flex-direction: column;
        height: auto;
    }
    
    .panel-content {
        width: 100%;
        height: auto;
        border-right: none;
    }
    
    .panel-inner {
        padding: 2.5rem 2rem;
        gap: 2.5rem;
    }
    
    .hero-body {
        margin: 0;
    }
    
    .panel-visual {
        width: 100%;
        height: 50vh;
        min-height: 350px;
    }
    
    .overlay-gradient {
        background: linear-gradient(to top, var(--bg-color) 0%, rgba(11, 12, 14, 0.4) 20%, rgba(11, 12, 14, 0) 100%);
    }
    
    .showcase-badge {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 1rem 1.5rem;
    }
    
    .showcase-badge h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .panel-inner {
        padding: 2rem 1.25rem;
    }
    
    .header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding-bottom: 1.25rem;
    }
    
    .logo {
        padding: 0;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .status-badge {
        align-self: flex-start;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .panel-visual {
        height: 45vh;
        min-height: 300px;
    }
}
