/* Lamora Digital 2025 - Modern Redesign */
/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand Colors */
    --primary: #E2A149;
    --primary-glow: rgba(226, 161, 73, 0.4);
    --primary-dim: rgba(226, 161, 73, 0.1);

    /* Backgrounds */
    --bg-dark: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(18, 18, 18, 0.7);

    /* Text */
    --text-main: #ffffff;
    --text-muted: #a0a0a0;

    /* Effects */
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-backdrop: blur(12px);
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 50%, var(--text-main) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 10px;
    /* Fix for cut-off 'g' */
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Glassmorphism Card */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-backdrop);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px -10px var(--primary-dim);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary);
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-bottom: var(--glass-border);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-main);
    text-decoration: none;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-close-container {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.3;
    /* Increased from 1.1 to prevent cut-off */
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

/* Background Animation Placeholder */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
}

.bg-glow-1 {
    top: -100px;
    right: -100px;
}

.bg-glow-2 {
    bottom: -100px;
    left: -100px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.avatar-svg {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px var(--primary-dim));
}

.avatar-path {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.5s ease;
}

.glass-card:hover .avatar-path {
    stroke: var(--text-main);
    filter: drop-shadow(0 0 5px var(--primary));
}

/* Responsive */
/* Responsive Sidebar */
@media (max-width: 768px) {
    .nav-links {
        display: flex;
        /* Ensure it's flex but hidden off-screen */
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        /* Align right but translate it off-screen */
        width: 280px;
        height: 100vh;
        background: #000000;
        /* Solid black for premium feel, no transparency issues */
        padding: 80px 30px 40px;
        transform: translateX(100%);
        /* Start off-screen */
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        /* Faster transition */
        z-index: 1100;
        /* Higher than mobile-menu-btn (1002) */
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        transform: translateX(0);
        /* Slide in */
    }

    /* Overlay */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        /* Darker overlay */
        backdrop-filter: blur(5px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Links Animation */
    .nav-links li {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered Delay for links */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-links a {
        font-size: 1.5rem;
        display: block;
        margin-bottom: 25px;
        color: #ffffff;
    }

    .nav-links a.active {
        color: var(--primary);
    }

    .nav-links a::after {
        display: none;
        /* Remove underline animation on mobile */
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1002;
        /* Ensure it stays above if we want it, but we have close button now */
    }

    .mobile-close-container {
        display: block;
        position: absolute;
        top: 25px;
        right: 25px;
        margin-bottom: 0 !important;
        /* Override standard li margin */
        opacity: 1 !important;
        /* Always show close button immediately or animate differently */
        transform: none !important;
    }

    .sidebar-close-btn {
        font-size: 2rem;
        color: #ffffff;
        cursor: pointer;
        transition: var(--transition);
        display: block;
    }

    .sidebar-close-btn:hover {
        color: var(--primary);
        transform: rotate(90deg);
    }

    .desktop-cta {
        display: none !important;
        /* Force hide desktop CTA in sidebar if present */
    }

    .hero h1 {
        font-size: 3rem;
    }
}

#contact,
#services,
#about,
#team,
#testimonials {
    overflow: hidden;
}

/* Elevate Text Highlight */
.elevate-highlight {
    color: var(--primary);
    position: relative;
    /* Subtle stroke effect */
    -webkit-text-stroke: 1px var(--primary);
    text-shadow: 0 0 10px rgba(226, 161, 73, 0.3);
    animation: glowPulse 3s infinite alternate;
}

@keyframes glowPulse {
    0% {
        text-shadow: 0 0 10px rgba(226, 161, 73, 0.3);
    }

    100% {
        text-shadow: 0 0 25px rgba(226, 161, 73, 0.6), 0 0 50px rgba(226, 161, 73, 0.2);
    }
}