/* Global CSS Variables and Styles for Luken Services LLC */
/* Place this file in wwwroot/css/app.css or wwwroot/css/site.css */
:root {
    --gold: #d4af37;
    --gold-dark: #b8941f;
    --gold-light: #f4e4a6;
    --dark: #0a0a0a;
    --dark-2: #1a1a1a;
    --dark-3: #2a2a2a;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.logo-img {
    height: 40px;
    width: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

    .logo:hover {
        transform: translateY(-2px);
    }

.logo-text {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.logo {
    justify-self: start;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-self: center;
}

.nav-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark-3);
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gold);
        transition: width 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--gold);
    }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

/* Form Status Messages */
.status-message {
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    margin: 10px 0;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.status-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.status-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .logo {
        justify-self: center;
    }

    .nav-links {
        justify-self: center;
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 580px) {
    .logo-text {
        font-size: 16px;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-link {
        font-size: 13px;
    }
}
