:root {
    --primary-color: #7B2CBF;
    --secondary-color: #9D4EDD;
    --accent-color: #C77DFF;
    --dark-color: #0A0A0A;
    --darker-color: #000000;
    --light-color: #FFFFFF;
    --gray-color: #1A1A1A;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-secondary);
    color: var(--light-color);
    background-color: var(--dark-color);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ===== NAVBAR ===== */
.navbar {
    background: transparent;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(123, 44, 191, 0.3);
}

.navbar-brand {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--light-color) !important;
    position: relative;
    transition: all 0.3s ease;
}

.brand-name {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--light-color) !important;
    margin: 0 15px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(123, 44, 191, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(123, 44, 191, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--light-color);
    margin-bottom: 40px;
}

.hero-scroll {
    margin-top: 60px;
}

.scroll-btn {
    color: var(--light-color);
    font-size: 2rem;
    animation: bounce 2s infinite;
    display: inline-block;
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    color: var(--accent-color);
    transform: translateY(5px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* ===== SECTIONS ===== */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--light-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.title-decoration {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 20px 0;
    border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-color) 100%);
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    filter: grayscale(20%);
}

.about-image:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.about-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    z-index: -1;
}

.about-content {
    padding: 0 30px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
    background: var(--darker-color);
    padding: 100px 0;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(50%);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.9) 0%, rgba(157, 78, 221, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.portfolio-wrapper:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-wrapper:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.portfolio-info {
    text-align: center;
    padding: 20px;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.portfolio-wrapper:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--light-color);
}

.portfolio-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.portfolio-link {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: var(--light-color);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: rotate(360deg);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(135deg, var(--gray-color) 0%, var(--dark-color) 100%);
}

.contact-info {
    background: rgba(26, 26, 26, 0.5);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(123, 44, 191, 0.3);
    backdrop-filter: blur(10px);
}

.contact-item {
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease;
}

.contact-item i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.contact-item h4 {
    font-size: 1.2rem;
    color: var(--light-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-links a {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-color: transparent;
    color: var(--light-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.5);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--darker-color);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(123, 44, 191, 0.3);
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding: 30px 0;
        margin-top: 30px;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .portfolio-wrapper img {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .portfolio-wrapper img {
        height: 300px;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
}

/* ===== LIGHTBOX CUSTOMIZATION ===== */
.lb-data .lb-caption {
    font-family: var(--font-secondary);
    font-size: 1rem;
}

.lb-data .lb-number {
    font-family: var(--font-secondary);
}
