/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero .hero-content h1 .highlight {
    color: var(--accent-color);
    position: relative;
}

.hero .hero-content h1 .highlight::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hero .hero-content h1 {
        font-size: 2.5rem;
    }
}

.hero .hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .hero-content h2 .typed {
    color: var(--accent-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero .hero-content h2 {
        font-size: 1.25rem;
    }
}

.hero .hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero .hero-actions .btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
}

.hero .hero-actions .btn.btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.hero .hero-actions .btn.btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 15%);
    border-color: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
}

.hero .hero-actions .btn.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.hero .hero-actions .btn.btn-outline:hover {
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .hero .hero-actions {
        flex-direction: column;
    }

    .hero .hero-actions .btn {
        text-align: center;
    }
}

.hero .social-links {
    display: flex;
    gap: 1rem;
}

.hero .social-links a {
    width: 45px;
    height: 45px;
    background: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.hero .social-links a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

@media (max-width: 576px) {
    .social-links {
        justify-content: center;
    }
}

.hero .hero-image {
    position: relative;
}

.hero .hero-image .image-wrapper {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.hero .hero-image .image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 95%);
    transition: transform 0.3s ease;
}

.hero .hero-image .image-wrapper img:hover {
    transform: scale(1.02);
}

.hero .hero-image .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero .hero-image .floating-elements .floating-card {
    position: absolute;
    background: var(--surface-color);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.hero .hero-image .floating-elements .floating-card i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.hero .hero-image .floating-elements .floating-card.design {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.hero .hero-image .floating-elements .floating-card.code {
    bottom: 30%;
    left: -15%;
    animation-delay: 1s;
}

.hero .hero-image .floating-elements .floating-card.creativity {
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

@media (max-width: 992px) {
    .hero .hero-image .floating-elements .floating-card {
        display: none;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {
    .hero .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
}

