/* Base Resets & Theme Variables */
:root {
    --bg-color: #0f0f11;
    --surface-color: #1a1a1d;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a5;
    --accent-color: #ffffff;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.container { 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 0 24px; 
}

/* Navbar - Ab scroll karne pe upar chala jayega (Relative) */
.navbar {
    padding: 20px 0;
    position: relative; 
    background: var(--bg-color);
    z-index: 1000;
}

.nav-container { 
    display: flex; 
    justify-content: center; 
    position: relative; 
}

/* Portrait Logo with Glow */
.nav-logo {
    height: 140px; 
    width: auto;
    display: block;
    filter: invert(1) drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.6));
}

/* Hamburger Menu Icon */
.menu-icon {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

/* Hidden Menu links */
.nav-links {
    display: none;
    position: absolute;
    top: 80px;
    right: 24px;
    background: var(--surface-color);
    padding: 20px;
    border-radius: 8px;
    list-style: none;
    flex-direction: column;
    gap: 15px;
    border: 1px solid #333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.nav-links.active { display: flex; }
.nav-links a { color: white; text-decoration: none; font-size: 0.95rem; font-weight: 600;}

/* Hero & About */
.hero { padding-top: 10px; } 

.title { font-size: 2.8rem; font-weight: 800; margin-bottom: 12px; }
.subtitle { color: var(--text-secondary); margin-bottom: 30px; font-size: 1rem; }

.about-brief { margin-bottom: 25px; }
.about-brief h3 { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 8px; }
.about-brief p { font-size: 0.95rem; line-height: 1.6; color: #d1d1d1; }

/* Social Links */
.social-links { display: flex; flex-direction: column; gap: 12px; margin-bottom: 35px; }
.social-item { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    text-decoration: none; 
    color: var(--text-secondary); 
    font-size: 0.9rem;
}
.social-icon { width: 18px; height: 18px; filter: invert(1); opacity: 0.7; }

/* Button */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: white;
    color: black;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

/* Feedback Section */
.feedback { padding: 50px 0; border-top: 1px solid #222; margin-top: 40px; }
.section-title { font-size: 1.8rem; margin-bottom: 20px;}
.contact-form { display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea {
    padding: 14px; 
    background: #1a1a1d; 
    border: 1px solid #333; 
    color: white; 
    border-radius: 4px;
    font-family: inherit;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #555;
}

/* Footer & Artwork */
.footer {
    border-top: 1px solid #222;
}

.creative-works {
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
    padding: 40px 0 10px;
    gap: 8px; 
}

.work-title { font-size: 1.5rem; margin-bottom: 0; }
.work-info p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 0; }

.footer-art-container {
    margin-top: 4px; 
}

/* Updated Art Size */
.footer-art { 
    width: 100%; 
    max-width: 350px; 
    height: auto; 
    border-radius: 8px; 
}

.copyright { 
    text-align: left; 
    font-size: 0.8rem; 
    color: #555; 
    padding-bottom: 30px; 
    padding-top: 20px;
}
