/* Vnexora PHP Clone - Design System */
:root {
    --color-background: #E6DFD3;
    --color-foreground: #1c221d;
    --color-forest: #14231E;
    --color-forest-dark: #0B1411;
    --color-cream: #E6DFD3;
    --color-mustard: #E3B448;
    --color-accent: #CFA052;
    --color-border: #D4CDBC;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050505; /* Homepage background is dark as per page.tsx */
    color: #F9FAFB;
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Glassmorphism */
.lux-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.liquid-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 80px -20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.liquid-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(207, 160, 82, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 30px 100px -20px rgba(207, 160, 82, 0.2);
}

.text-gold-gradient {
    background: linear-gradient(to bottom, #EBC584, #BA893D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header & Footer */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #F9FAFB;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--color-mustard);
}

.btn-gold {
    background: var(--color-mustard);
    color: var(--color-forest);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
}

.btn-gold:hover {
    background: #f2c14e;
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 100px 0;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--color-teal-gray);
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Forms */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--color-forest-dark);
    border: 1px solid var(--color-border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-mustard);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-mustard);
}
