/* =====================================================
   MULTICOLOR TEXT STYLES
   ===================================================== */

/* Gradient Text - Primary */
.multicolor-text {
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-move 3s ease-in-out infinite;
}

/* Stronger gradient effect for better visibility */
.gradient-text-purple,
.gradient-text-blue,
.gradient-text-pink,
.gradient-text-orange,
.gradient-text-green,
.gradient-text-cyan {
    font-weight: 700 !important;
    background-size: 200% 200%;
    transition: all 0.3s ease;
}

.gradient-text-purple:hover,
.gradient-text-blue:hover,
.gradient-text-pink:hover,
.gradient-text-orange:hover,
.gradient-text-green:hover,
.gradient-text-cyan:hover {
    background-position: right center;
    transform: scale(1.02);
}

/* Gradient Text - Secondary */
.gradient-text-purple {
    background: linear-gradient(90deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-blue {
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-pink {
    background: linear-gradient(90deg, #f093fb, #f5576c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-orange {
    background: linear-gradient(90deg, #f12711, #f5af19);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-green {
    background: linear-gradient(90deg, #11998e, #38ef7d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-cyan {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold Gradient for Achievements */
.gradient-text-gold {
    background: linear-gradient(90deg, #ffd700, #ffb347, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: gold-shine 2s ease-in-out infinite;
}

@keyframes gold-shine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animated Gradient Text */
.animated-gradient-text {
    background: linear-gradient(120deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff, #a855f7, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 400% 100%;
    animation: gradient-flow 3s ease-in-out infinite;
    font-weight: 800 !important;
    letter-spacing: -1px;
}

.animated-gradient-text:hover {
    animation: gradient-flow 2s ease-in-out infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Rainbow Text */
.rainbow-text {
    background: linear-gradient(to right, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100% 100%;
}

/* Split Color Text */
.split-color-text {
    color: #333;
}
.split-color-text span:first-child {
    color: #ff6b6b;
}
.split-color-text span:nth-child(2) {
    color: #48dbfb;
}
.split-color-text span:nth-child(3) {
    color: #feca57;
}
.split-color-text span:nth-child(4) {
    color: #ff9ff3;
}
.split-color-text span:nth-child(5) {
    color: #54a0ff;
}

/* Primary Brand Gradient */
.brand-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sunset Gradient */
.sunset-gradient {
    background: linear-gradient(135deg, #f12711 0%, #f5af19 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ocean Gradient */
.ocean-gradient {
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Neon Gradient */
.neon-gradient {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Forest Gradient */
.forest-gradient {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Dark mode gradient text */
.dark .multicolor-text,
.gradient-text-dark {
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-move 3s ease-in-out infinite;
}

/* =====================================================
   SECTION TITLE STYLES
   ===================================================== */

.section-title .title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title .subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
}

/* =====================================================
   HERO TITLE STYLES
   ===================================================== */

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
        letter-spacing: -1px;
    }
}

/* =====================================================
   CARD TITLE STYLES
   ===================================================== */

.card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card .title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.project-card .title {
    font-size: 20px;
    font-weight: 600;
}

/* =====================================================
   BUTTON TEXT STYLES
   ===================================================== */

.theme-btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================================
   FOOTER TEXT STYLES
   ===================================================== */

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* =====================================================
   NAVIGATION TEXT STYLES
   ===================================================== */

.navbar-nav > li > a {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =====================================================
   COLOR PALETTE
   ===================================================== */

:root {
    --color-primary: #667eea;
    --color-secondary: #764ba2;
    --color-accent: #f5576c;
    --color-success: #38ef7d;
    --color-info: #48dbfb;
    --color-warning: #feca57;
    --color-danger: #ff6b6b;
    --color-purple: #a855f7;
    --color-pink: #ec4899;
    --color-cyan: #06b6d4;
    --color-orange: #f97316;
}

/* =====================================================
   EXPERIENCE SECTION STYLES
   ===================================================== */

.experience-item {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.experience-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.experience-year {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.experience-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.experience-item h4 {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.experience-item p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Dark mode styles for experience */
.dark .experience-item {
    background: #1e1e1e;
    border-color: #333;
}

.dark .experience-item h4 {
    color: #aaa;
}

.dark .experience-item p {
    color: #ccc;
}

/* =====================================================
   ACHIEVEMENTS SECTION STYLES
   ===================================================== */

.achievement-item {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffb347);
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
}

.achievement-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.achievement-item p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.achievement-year {
    display: inline-block;
    background: #f5f5f5;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
}

/* Dark mode styles for achievements */
.dark .achievement-item {
    background: #1e1e1e;
    border-color: #333;
}

.dark .achievement-item p {
    color: #ccc;
}

.dark .achievement-year {
    background: #333;
    color: #4facfe;
}
