/* Add these to the end of style.css */

/* Logo Accent */
.logo-accent {
    color: var(--secondary);
    font-weight: 700;
}

/* Hero Section Styles */
.hero-content {
    padding: 8rem 0 4rem;
    max-width: 800px;
    position: relative;
}

/* Layout: hero content left, visual (photo) on the right */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.5rem;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-photo {
    width: 420px; /* medium-large — change as needed */
    max-width: 42vw;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 80px rgba(2,6,23,0.7);
    transform: translateY(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-photo:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 120px rgba(2,6,23,0.75);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content>* {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.greeting {
    display: block;
    font-size: 1.2rem;
    color: #6366f1;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    animation-delay: 0.2s;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    animation-delay: 0.4s;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Typing Cursor Animation */
.typing-text::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: var(--secondary);
    margin-left: 5px;
    font-weight: 400;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.6;
    animation-delay: 0.6s;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    /* Start hidden for animation */
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.8s;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--text-color);
    background: rgba(255, 255, 255, 0.05);
}

/* Floating Circle */
.floating-circle {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(99, 102, 241, 0.5);
    border-radius: 50%;
    position: relative;
    margin-left: 10px;
    vertical-align: middle;
    animation: float 3s ease-in-out infinite;
}

.floating-circle .dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary);
}

@keyframes float {

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

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

/* Background Mesh Animation */
.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(236, 72, 153, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(236, 72, 153, 0.15) 0px, transparent 50%);
    filter: blur(80px);
    opacity: 0.6;
    animation: meshPulse 10s ease-in-out infinite alternate;
}

@keyframes meshPulse {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }

    100% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-content {
        padding-top: 6rem;
    }

    /* Stack hero content and visual on small screens */
    .hero-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .hero-visual { width: 100%; display:flex; justify-content:center; }

    .hero-photo { width: 260px; max-width: 70%; border-radius: 14px; }
}