﻿/* ==========================================
   ROOT VARIABLES - DARK THEME COLORS
   ========================================== */
:root {
    /* Primary Colors - Night/Dark Theme */
    --primary-color: #205733; /* NEW THEME = GREEN/BLUE****OLD THEME = Lavender - Main theme #9C88CC */
    --primary-dark: #184227; /* Darker Lavender for interactions #7A6B91 */
    --secondary-color: #1F2431; /* Midnight Blue - Background */
    --accent-color: #318C6C; /* Hot Pink Accent #FF6B9D*/
    --accent-glow: rgba(255, 107, 157, 0.6);
    /* Neutral Colors */
    --text-dark: #F8F9FA; /* Almost White for primary text */
    --text-light: #BCC0C4; /* Gray for secondary text */
    --text-muted: #7D8293; /* Lighter gray for subtle text */
    --bg-primary: #151921; /* Very dark blue - main background */
    --bg-secondary: #1A1F2B; /* Slightly lighter - cards/sections */
    --bg-tertiary: #2D3545; /* Medium gray - hover states */
    --border-color: #2D3545; /* Subtle borders */
    --overlay-color: rgba(10, 12, 18, 0.95); /* Overlay for content */
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    /* Layout */
    --max-width: 1200px;
    --border-radius: 12px;
    --transition-speed: 0.3s;
    --glow-effect: 0 0 30px rgba(156, 136, 204, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ==========================================
   PARALLAX BACKGROUND - Dark Night Sky
   ========================================== */
.parallax {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0F1624 0%, /* Deep midnight */
    #1A202D 50%, /* Cloudy gray-blue */
    #2D3545 100%); /* Soft purple night */
    transform: translate(-50%, -50%);
    z-index: -1;
    background-size: cover;
    background-position: center;
}

/* ==========================================
   NAVIGATION - Glass Morphism Dark Mode
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    z-index: 1000;
    transition: all var(--transition-speed);
    background: rgba(21, 25, 34, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

    .navbar.scrolled {
        background: rgba(21, 25, 34, 0.98);
        padding: var(--spacing-xs) var(--spacing-md);
        box-shadow: 0 2px 20px rgba(156, 136, 204, 0.3);
    }

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(156, 136, 204, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-sm);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color var(--transition-speed);
}

    .nav-link:hover {
        color: var(--primary-color);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        transition: width var(--transition-speed);
    }

    .nav-link:hover::after {
        width: 80%;
    }

.dropdown .nav-link::after {
    content: none;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .dropdown-toggle::after {
        content: '▼';
        font-size: 0.6em;
        transition: transform var(--transition-speed);
    }

.dropdown.open .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 30px rgba(156, 136, 204, 0.2);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed);
    list-style: none;
    padding: var(--spacing-sm);
    border: 1px solid var(--border-color);
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin-bottom: 0.5rem;
}

.dropdown-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-speed), background var(--transition-speed);
    display: block;
    padding: 0.5rem;
    border-radius: 6px;
}

    .dropdown-menu a:hover {
        color: var(--primary-color);
        background: rgba(156, 136, 204, 0.15);
    }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 3px;
        transition: all var(--transition-speed);
    }

/* ==========================================
   HERO SECTION - Night Sky Glow
   ========================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--spacing-lg) 0;
}

.hero-content {
    text-align: center;
    color: var(--text-dark);
    z-index: 1;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #26663C 0%, /* Blue green */
    #2C7846 50%, /* Green accent */
    #369457 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(59, 201, 145, 0.6));
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(67, 230, 165, 0.4));
    }

    to {
        filter: drop-shadow(0 0 30px rgba(73, 247, 178, 0.6));
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
    line-height: 1.8;
}

/* ==========================================
   BUTTONS - Neon Glow Effects
   ========================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 4px 20px var(--glow-effect);
    border: 1px solid rgba(156, 136, 204, 0.5);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 40px var(--glow-effect);
    }

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all var(--transition-speed);
}

    .btn-outline:hover {
        background: rgba(156, 136, 204, 0.2);
        box-shadow: 0 0 20px var(--glow-effect);
        color: var(--primary-color);
    }

/* ==========================================
   SECTIONS GENERAL - Dark Cards
   ========================================== */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(156, 136, 204, 0.3);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0;
    margin-bottom: var(--spacing-lg);
}

/* ==========================================
   ABOUT SECTION - Glass Cards
   ========================================== */
.about-section {
    padding: var(--spacing-lg) 0;
    background: rgba(26, 31, 43, 0.6);
    backdrop-filter: blur(10px);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--spacing-md);
    align-items: center;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.skills-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xs);
    margin: 1.5rem 0;
}

    .skills-list li::before {
        content: '✓';
        color: var(--primary-color);
        font-weight: bold;
        margin-right: 0.5rem;
    }

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 2px solid var(--primary-color);
}

.profile-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-speed);
}

.about-image:hover .profile-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(156, 136, 204, 0.4), rgba(255, 107, 157, 0.4));
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.about-image:hover .image-overlay {
    opacity: 1;
}

/* ==========================================
   PORTFOLIO SECTIONS - Dark Theme Cards
   ========================================== */
.portfolio-section {
    padding: var(--spacing-lg) 0;
    background: rgba(26, 31, 43, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.art-item {
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    border: 1px solid var(--border-color);
}

    .art-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(156, 136, 204, 0.3);
        border-color: var(--primary-color);
    }

.art-image-wrapper {
    position: relative;
    overflow: hidden;
}

.art-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-speed);
}

.art-item:hover img {
    transform: scale(1.1);
}

.art-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(156, 136, 204, 0.9);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    opacity: 0;
    transition: all var(--transition-speed);
    z-index: 10;
    box-shadow: 0 4px 20px rgba(156, 136, 204, 0.5);
}

.art-image-wrapper:hover .art-link {
    opacity: 1;
    transform: translate(-50%, -60%);
}

.art-info {
    padding: 1.5rem;
}

    .art-info h3 {
        font-family: var(--font-heading);
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
    }

    .art-info p {
        font-size: 0.9rem;
        color: var(--text-light);
    }

/* ==========================================
   PAINTING SLIDER - Night Theme
   ========================================== */
.slider {
    position: relative;
    width: 100%;
}

.painting-slide {
    display: flex;
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
}

    .painting-slide img {
        width: 60%;
        object-fit: cover;
        flex-shrink: 0;
    }

.painting-info {
    padding: 1.5rem;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.year {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(156, 136, 204, 0.5);
}

.painting-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.painting-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ==========================================
   FASHION & CINEMATICS COMING SOON - Neon Glow
   ========================================== */
.coming-soon {
    text-align: center;
    padding: var(--spacing-lg) 2rem;
    background: linear-gradient(135deg, rgba(156, 136, 204, 0.1), rgba(255, 107, 157, 0.1));
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.soon-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
    animation: float 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 107, 157, 0.5);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.coming-soon h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(156, 136, 204, 0.5);
}

/* ==========================================
   CONTACT SECTION - Neon Contact Cards
   ========================================== */
.contact-section {
    padding: var(--spacing-lg) 0;
    background: rgba(156, 136, 204, 0.1);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.contact-item, .contact-placeholder {
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border-color);
}

    .contact-item:hover, .contact-placeholder:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(156, 136, 204, 0.4);
        border-color: var(--primary-color);
    }

.icon {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item span:first-child {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.contact-item span:last-child {
    font-weight: 600;
    color: var(--primary-color);
}

/* ==========================================
   FOOTER & BACK TO TOP - Night Theme
   ========================================== */
.site-footer {
    background: #0A0C12; /* Deep black-purple */
    color: white;
    padding: var(--spacing-md) 0;
    text-align: center;
    border-top: 1px solid var(--primary-color);
}

.footer-container p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed);
    z-index: 999;
    box-shadow: 0 4px 20px var(--glow-effect);
}

    .scroll-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .scroll-top:hover {
        background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
        transform: scale(1.1) rotate(10deg);
        box-shadow: 0 8px 30px var(--glow-effect);
    }

/* ==========================================
   ANIMATIONS & UTILITIES - Smooth Transitions
   ========================================== */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   RESPONSIVE DESIGN - Mobile Optimizations
   ========================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .painting-slide {
        flex-direction: column;
    }

        .painting-slide img,
        .painting-info {
            width: 100%;
        }

    .year {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-primary);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        border-bottom: 1px solid var(--primary-color);
    }

        .nav-menu.active {
            display: flex;
        }

    .menu-toggle {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        padding-left: var(--spacing-sm);
        background: var(--bg-secondary);
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
