
@font-face {
    font-family: 'Bronova Bold';
    src: url('fonts/Bronova-Bold.ttf') format('truetype');
    font-weight: bold;
}


body {
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: url('images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
}


body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.689);
    z-index: -1;
    pointer-events: none;
}


nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #111;
    padding: 15px 0;
    text-align: center;
}


nav .logo, nav ul li a {
    font-family: 'Bronova Bold', sans-serif;
}

nav .logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #00ffcc;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

nav ul li a:hover::after {
    transform: scaleX(1);
}


.about {
    padding: 50px;
}

.about p {
    max-width: 700px;
    margin: 0 auto;
}


.projects {
    padding: 50px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}

.project-card {
    background: rgba(34, 34, 34, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border: 1.5px solid rgba(255,255,255,0.12);
    width: 100%;
    min-width: 0;
    max-width: 300px;
    min-height: 220px;
    padding: 24px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.8s;
    position: relative;
    transition: transform 0.18s;
}

.project-card:hover {
    transform: translateY(-6px) scale(1.025);
    box-shadow: 0 12px 36px rgba(0,255,204,0.10);
}

.project-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
}

.project-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
    border: 2px solid #00ffcc;
    display: block;
}

.project-card h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.project-card p {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    margin-bottom: 12px;
    color: #e0e0e0;
}

.tech-used {
    background: rgba(20, 20, 20, 0.5);
    border-radius: 14px;
    padding: 4px 12px;
    font-size: 0.95rem;
    color: #00ffcc;
    margin-bottom: 12px;
    display: inline-block;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
}

.project-card a {
    margin-top: auto;
    background: #00ffcc;
    color: #222;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.2s, color 0.2s;
}

.project-card a:hover {
    background: #00bfa6;
    color: #fff;
}


footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    text-align: center;
    padding: 10px;
}

footer a {
    color: white;
    font-size: 30px;
    margin: 10px;
    text-decoration: none;
}

footer a:hover {
    color: #00ffcc;
}


.welcome {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}


.welcome h1 {
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 60px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(90deg, #ff00ff, #00ffff, #ff00ff);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 3s infinite linear;
    margin-bottom: 16px;
}

.welcome p {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.2rem;
    color: #e0e0e0;
    text-align: center;
    margin: 0 auto;
    max-width: 500px;
}


@keyframes gradientMove {
    0% { background-position: 0%; }
    100% { background-position: 200%; }
}

nav, footer {
    background: rgba(20, 20, 20, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
}


.about-me-card h1,
.project-overview-card h2,
.tech-stack h2,
.tech-stack-list li {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.about-me-content p,
.project-overview-card p,
.tech-stack-list li span {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    text-transform: none;
}


.about-me-card,
.project-overview-card,
.tech-stack {
    background: rgba(34, 34, 34, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    max-width: 600px;
    margin: 40px auto 32px auto;
    padding: 32px 24px;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.15);
    animation: fadeInUp 0.8s;
}


@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
}


.tech-stack-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-stack-list li {
    background: rgba(20, 20, 20, 0.5);
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00ffcc;
    box-shadow: 0 2px 8px rgba(0,255,204,0.07);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s;
}

.tech-stack-list li i {
    color: #00ffcc;
    font-size: 1.3em;
}

.about-me-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-me-skills li {
    background: rgba(20, 20, 20, 0.5);
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00ffcc;
    box-shadow: 0 2px 8px rgba(0,255,204,0.07);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s;
}

.about-me-skills li i {
    color: #00ffcc;
    font-size: 1.3em;
}

.about-me-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.about-me-avatar img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #00ffcc;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    background: #222;
}


.projects-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    text-align: center;
    font-size: 2.2rem;
    margin: 40px 0 32px 0;
    letter-spacing: 2px;
    color: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 16px;
    justify-items: center;
    margin: 0 auto 48px auto;
    padding: 0 0;
    max-width: 1400px;
}


.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: rgba(34, 34, 34, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 60px 60px;
    max-width: 900px;
    margin: auto;
    color: #fff;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    border: 1.5px solid rgba(255,255,255,0.15);
    font-family: 'Roboto', Arial, sans-serif;
    text-align: center;
    animation: fadeInUp 0.5s;
}
.close-modal {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 2rem;
    cursor: pointer;
    color: #00ffcc;
    transition: color 0.2s;
}
.close-modal:hover {
    color: #fff;
}
.modal-content a {
    color: #00ffcc;
    font-weight: bold;
    text-decoration: underline;
}


.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin-top: 0px;
}

.contact-card {
    background: rgba(34, 34, 34, 0.45);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    max-width: 520px;
    width: 100%;
    min-height: 420px;
    padding: 40px 32px;
    font-size: 1.1rem;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.18);
    margin: 40px auto 32px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    animation: fadeInUp 0.8s;
}

.contact-card h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.contact-form label {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #00ffcc;
    text-align: center;
    width: 100%;
    display: block;
    font-family: 'Roboto', Arial, sans-serif;
}

.contact-form input,
.contact-form textarea {
    background: rgba(34,34,34,0.7);
    color: #fff;
    border: 1.5px solid #00ffcc;
    font-size: 1.1rem;
    padding: 14px 14px;
    border-radius: 14px;
    margin-bottom: 16px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    transition: border 0.2s;
    font-family: 'Roboto', Arial, sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid #fff;
}

.contact-form textarea {
    min-height: 90px;
    resize: vertical;
}

.contact-form button {
    font-size: 1.2rem;
    padding: 14px 0;
    min-width: 140px;
    border-radius: 14px;
    background: linear-gradient(90deg, #00ffcc, #00bfa6);
    color: #222;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: background 0.3s, color 0.2s, transform 0.2s;
    margin-top: 8px;
}

.contact-form button:hover {
    background: linear-gradient(90deg, #00bfa6, #00ffcc);
    color: #fff;
    transform: translateY(-2px) scale(1.03);
}


.custom-dropdown {
    position: relative;
    width: 320px;
    margin: 0 auto 32px auto;
    font-family: 'Roboto', Arial, sans-serif;
    user-select: none;
    cursor: pointer;
}

.custom-dropdown-selected {
    background: rgba(34,34,34,0.35);
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    padding: 16px 24px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 400;
    box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.custom-dropdown-options {
    display: none;
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    background: rgba(34,34,34,0.95);
    border-radius: 0 0 14px 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    z-index: 100;
    max-height: 260px;
    overflow-y: auto;
}

.custom-option {
    padding: 14px 24px;
    font-size: 1.1rem;
    transition: background 0.15s;
    cursor: pointer;
    font-family: 'Roboto', Arial, sans-serif;
}

.custom-option:hover, .custom-option.active {
    background: rgba(0,255,204,0.10);
}

.custom-dropdown.open .custom-dropdown-options {
    display: block;
}


@media (max-width: 900px) {
    .contact-card {
        max-width: 98vw;
        padding: 24px 4vw;
        font-size: 1rem;
    }
    .banner-img-glass img {
        max-width: 100vw;
        height: auto;
    }
    .banner-img-glass {
        min-width: 120px;
        min-height: 74px;
        max-width: 100vw;
        max-height: 100px;
        padding: 0;

    }
}

@media (max-width: 600px) {
    .contact-card {
        max-width: 98vw;
        padding: 18px 4vw;
        font-size: 1rem;
    }
    .contact-card h2 {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }
    .contact-form label {
        font-size: 1rem;
    }
    .contact-form input,
    .contact-form textarea {
        font-size: 1rem;
        padding: 10px 8px;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    .contact-form button {
        font-size: 1rem;
        padding: 10px 0;
        min-width: 100px;
        border-radius: 10px;
    }
}

.welcome-avatar {
    display: block;
    margin: 0 auto 18px auto;
    border-radius: 50%;
    border: 3px solid #00ffcc;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    background: #222;
    width: 120px;
    height: 120px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.welcome-avatar::after {
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(rgba(0,255,204,0.18), transparent 70%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s, transform 0.35s;
    z-index: -1;
}
.welcome-avatar:hover::after,
.welcome-avatar:focus::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
}
.welcome-avatar:hover,
.welcome-avatar:focus {
    border-color: #00ffff;
    box-shadow: 0 4px 24px rgba(0,255,204,0.18);
}

.contact-card:hover,
.about-me-card:hover,
.tech-stack:hover,
.project-overview-card:hover,
.project-card:hover {
    box-shadow: 0 12px 36px rgba(0,255,204,0.13);
    transform: translateY(-4px) scale(1.01);
    transition: box-shadow 0.2s, transform 0.2s;
}


.banner-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 32px auto 24px auto;
    max-width: 1436px;
    width: 100%;
}
.banner-img-glass {
    background: rgba(34, 34, 34, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    border: 1.5px solid rgba(255,255,255,0.12);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 320px;
    min-height: 110px;
    max-width: 1436px;
    max-height: 180px;
}
.banner-img-glass img {
    width: 100%;
    max-width: 1436px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    background: #222;
    display: block;
}
.character-dropdown-container {
    margin: 140px auto 0 auto;
    max-width: 600px;
    text-align: center;
}
.character-dropdown {
    padding: 16px 24px;
    border-radius: 14px;
    border: 1.5px solid rgba(255,255,255,0.18);
    background: rgba(34,34,34,0.35);
    color: #fff;
    font-size: 1.25rem;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    margin-bottom: 32px;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    appearance: none;
    cursor: pointer;
    width: 320px;
    max-width: 90vw;
}
.character-dropdown-label {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: none;
    color: #fff;
    margin-bottom: 8px;
    display: inline-block;
}
.character-card {
    background: rgba(34, 34, 34, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    max-width: 1436px;
    margin: 0 auto 40px auto;
    padding: 40px 28px;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.15);
    animation: fadeInUp 0.8s;
    display: none;
}
.character-card.active {
    display: block;
}

.character-header {
    display: flex;
    flex-direction: column;    
    align-items: center;
    gap: 4px;                 
    margin-bottom: 18px;
}

.character-name {
    font-size: 2.2rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    margin-bottom: 0;
}

.warrior { color: #C79C6E; }
.mage { color: #69CCF0; }
.rogue { color: #FFF569; }
.priest { color: #FFFFFF; }
.druid { color: #FF7D0A; }
.paladin { color: #F58CBA; }
.hunter { color: #ABD473; }
.shaman { color: #0070DE; }
.warlock { color: #9482C9; }
.deathknight { color: #C41F3B; }
.monk { color: #00FF96; }
.demonhunter { color: #A330C9; }

.character-images {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 18px;
}
.character-img-glass {
    background: rgba(34, 34, 34, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    border: 1.5px solid rgba(255,255,255,0.12);
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
    min-height: 140px;
}
.character-img-glass img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    border-radius: 10px;
    margin-bottom: 12px;
    background: #222;
}
.gear-score {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.15rem;
    color: #00ffcc;
    background: rgba(0,255,204,0.08);
    border-radius: 8px;
    padding: 2px 12px;
    margin-top: 2px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: none;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
    .banner-row,
    .banner-img-glass {
        max-width: 100vw;
    }
    .banner-img-glass img {
        max-width: 100vw;
        height: auto;
    }
}

.zoom-hint {
    font-size: 0.95rem;
    color: #00ffcc;
    margin-top: 6px;
    opacity: 0.8;
    font-family: 'Roboto', Arial, sans-serif;
}
