/* ===========================
   HOME STYLES - brockdev
   Specific for index.html
   =========================== */

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    background: radial-gradient(circle at 50% 50%, rgba(101, 86, 183, 0.15) 0%, transparent 60%);
}

.hero-container {
    max-width: 800px;
    text-align: center;
}

.profile-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 40px;
    position: relative;
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 30px var(--primary-glow);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.profile-image img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 50px var(--primary-glow);
}

.hero-title {
    font-size: 6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
}

.typing-container {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 3.5rem;
    font-weight: 500;
    color: #aaa;
    display: inline-block;
}

.typing-text {
    color: var(--primary-color);
    display: inline-block;
}

.hero-description {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 45px;
    background: rgba(101, 86, 183, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(101, 86, 183, 0.3), inset 0 0 15px rgba(101, 86, 183, 0.2);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.hero-btn i {
    transition: transform 0.4s ease;
}

.hero-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(101, 86, 183, 0.6), inset 0 0 25px rgba(255, 255, 255, 0.2);
    border-color: #a48de9;
}

.hero-btn:hover i {
    transform: translateX(5px) scale(1.1);
}

/* Section Titles */
.section-title {
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #ffffff, #a48de9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: drop-shadow(0 4px 15px rgba(101, 86, 183, 0.3));
}

/* Skills Section */
.skills-section {
    padding: 80px 20px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.skills-container {
    max-width: 1200px;
    margin: 0 auto;
}

.skills-slider {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 80px;
    overflow: hidden;
    mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 1) 20%,
            rgba(0, 0, 0, 1) 80%,
            rgba(0, 0, 0, 0));
}

.skills-track {
    display: flex;
    gap: 40px;
    animation: scroll 20s linear infinite;
    padding: 20px 0;
}

.skill-item {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 17, 25, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(101, 86, 183, 0.2);
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02), 0 10px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.skill-item::before,
.tool-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.skill-item:hover::before,
.tool-item:hover::before {
    left: 100%;
}

.skill-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.skill-item:hover {
    border-color: #a48de9;
    background: rgba(101, 86, 183, 0.15);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(101, 86, 183, 0.4), inset 0 0 20px rgba(101, 86, 183, 0.2);
}

.skill-item:hover img {
    transform: scale(1.15);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-140px * 5 - 40px * 5)); }
}

/* Tools Section */
.tools-section {
    text-align: center;
}

.tools-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #ffffff, #a48de9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: drop-shadow(0 4px 15px rgba(101, 86, 183, 0.3));
}

.tools-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px;
}

.tool-item {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 17, 25, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(101, 86, 183, 0.2);
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02), 0 10px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tool-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tool-item:hover {
    border-color: #a48de9;
    background: rgba(101, 86, 183, 0.15);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(101, 86, 183, 0.4), inset 0 0 20px rgba(101, 86, 183, 0.2);
}

.tool-item:hover img {
    transform: scale(1.15);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

/* Responsive */
@media(max-width: 768px) {
    .profile-image {
        width: 150px;
        height: 150px;
        margin-bottom: 30px;
    }
    .hero-title { font-size: 4rem; }
    .hero-subtitle { font-size: 2.5rem; }
    .hero-description { font-size: 1.6rem; }
    .section-title { font-size: 3rem; }
    .tools-title { font-size: 2.5rem; }
}
