﻿/* === GLOBAL STYLES === */
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    background-color: transparent !important;
    font-family: 'Segoe UI', sans-serif;
    color: #f5f5f5;
}

a {
    color: #d4af37;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

.container 

{
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: transparent;
}



section {
    padding: 80px 20px;
}
.hero,
.minimal-hero,
.container,
section {
    background-color: transparent !important;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.site-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container {
    flex-grow: 1;
}



/* === HEADER NAVIGATION === */
header {
    background-color: #000000;
    padding: 20px 0;
    text-align: center;
}

    header nav a {
        margin: 0 15px;
        font-weight: bold;
    }

/* === HERO SECTION === */

.hero-overlay-box {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 30px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.08);
}

    .minimal-hero::before {
        content: "";
        display: none !important;
    }

.intro-name {
    font-size: 3.5rem;
    font-weight: 800;
    color: #d4af37;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out forwards;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.tagline {
    margin-top: 1rem;
    font-size: 1.1rem;
   color: #f5f5f5; /* was #aaa */
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}


.hero-link {
    margin-top: 2rem;
    font-size: 1rem;
    color: #d4af37;
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s;
}

    .hero-link:hover {
        border-bottom: 1px solid #d4af37;
    }
/* === Animation === */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === PROJECTS SECTION === */
.projects {
    background-color: #121212;
    text-align: center;
}

    .projects h2 {
        color: #d4af37;
        margin-bottom: 30px;
    }

.project-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.project-card {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: left;
    transition: transform 0.2s ease;
}

    .project-card:hover {
        transform: translateY(-5px);
    }

    .project-card h3 {
        color: #f5f5f5;
    }

    .project-card p {
        color: #bbbbbb;
    }

/* === ABOUT SECTION === */
.about-section {
    max-width: 900px;
    margin: 100px auto;
    padding: 40px;
    color: #f5f5f5;
    background-color: rgba(1, 5, 5, 10);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.about-heading {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-highlights ul {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
    text-align: left;
    margin-top: 30px;
}

.about-highlights li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

    .about-highlights li::before {
        content: "✨";
        position: absolute;
        left: 0;
        color: #d4af37;
    }


/* === CONTACT SECTION === */
.contact-section {
    max-width: 700px;
    margin: 120px auto 80px;
    padding: 40px 30px;
    border-radius: 15px;
    color: #f5f5f5;
    text-align: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.contact-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    margin-bottom: 20px;
}


    .contact h2 {
        color: #d4af37;
        margin-bottom: 20px;
    }

.contact form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}




.contact-form input {
    width: 80%;
    max-width: 500px;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #d4af37;
    border-radius: 8px;
    background-color: #1a1a1a;
    color: #f5f5f5;
    font-size: 1rem;
    font-family: inherit;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus {
    border-color: #ffd700;
    outline: none;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}



.contact-form-wrapper {
    max-width: 500px;
    margin: 50px auto;
    background: rgba(0, 0, 0, 0.4);
    padding: 25px;
    border-radius: 12px;
}

.contact-btn {
    display: inline-block;
    margin: 10px 12px;
    padding: 10px 25px;
    font-size: 1.5rem;
    background-color: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

    .contact-btn:hover {
        background-color: #d4af37;
        color: #000;
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
    }
.contact-form label {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 6px;
    text-align: left;
    display: block;
    width: 100%;
    max-width: 400px;
    font-size: 1rem;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.4);
}
.contact-form textarea {
    resize: vertical;
    min-height: 200px; /* Increase height */
    width: 80%; /* Full width */
    max-width: 100%; /* Prevent shrinking */
    padding: 15px;
    border: 2px solid #d4af37;
    border-radius: 8px;
    background-color: #1a1a1a;
    color: #f5f5f5;
    font-size: 1rem;
    font-family: inherit;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}



.contact-form button {
    background: transparent;
    width: 100%;
    padding: 12px 25px;
    font-size: 1.5rem;
    border: none;
    border-radius: 8px;
    color: #d4af37;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-shadow: 0 0 8px #d4af37;
}
    .gold-btn {
    background-color: #FFD700; /* Gold */
    color: #000; /* Black text for contrast */
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.2s ease;
    animation: shimmerGlow 3s ease-in-out infinite alternate;
}

    .gold-btn:hover {
        transform: scale(1.05);
    }

@keyframes shimmerGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }

    100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
}
.contact-form button:hover {
    background: linear-gradient(90deg, #9A4DFF, #6A00F4);
    transform: translateY(-2px);
}
    /* === FOOTER === */


 .portfolio-footer {
    text-align: center;
    padding: 40px 20px;
    color: #d4af37;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1rem;
    text-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: transparent;
}

.portfolio-footer .signature {
    display: inline-block;
    margin-top: 8px;
    font-style: italic;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}


/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p,
    .about p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .project-card {
        width: 100%;
    }
}
/* === LUXE SHIMMER BACKGROUND === */
#gold-shimmer-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
    opacity: 1; /* make it fully visible */
    mix-blend-mode: normal; /* no blending, just full color */
    pointer-events: none;
    user-select: none;
    transition: opacity 1s ease;
}
@media (max-width: 768px) {
    #gold-shimmer-bg {
        display: none;
    }

    body > * {
        position: relative;
        z-index: 1;
        background-image: url('/images/gold-shimmer-fallback.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}




