@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #000;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Bauhaus 93', sans-serif;
    font-size: 40px;
    color: #fff;
}

.logo a {
    color: #fff;                 
    text-decoration: none;         
    transition: text-shadow 0.3s, transform 0.2s;
    display: inline-block;
}

.logo a:hover {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.9); 
    transform: scale(1.05);                      
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.2s;
}

nav ul li a:hover {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

html {
    scroll-behavior: smooth;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    align-items: stretch; 
    gap: 10px;

    position: absolute;
    top: 100%;
    left: 0;
    min-width: max-content; 

    background: #000;
    padding: 10px;
    border-radius: 12px;
    border: 2px solid #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    opacity: 1;                 
    transform: translateY(0);   
    pointer-events: auto;
}

.dropdown-content a {
    display: block;
    padding: 8px;
    border: 2px solid #fff; 
    border-radius: 12px;
    background: #111;
    text-align: center;    
    transition: box-shadow 0.3s, transform 0.2s;
}

.dropdown-content a img {
    width: 40px;
    height: 40px;
}

.dropdown-content a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
    border-color: #fff;
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
}

section {
    margin-bottom: 50px;
}

h2 {
    font-size: 38px;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

p {
    font-size: 26px;
    line-height: 1.6;
}

.developer-list {
    list-style-type: none;
    padding: 0;
}

.developer-list li {
    font-size: 26px;
    margin-bottom: 10px;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.project-card {
    display: block;
    background: #111;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none; 
}

.project-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
    border: 1px solid #fff;
}

.project-card h3,
.project-card p {
    margin: 0 0 10px;
}

.project-card p {
    font-size: 14px;
    margin: 10px 0 15px;
}


footer {
    text-align: center;             
    padding: 30px 20px;
    border-top: 2px solid #fff;     
    font-size: 16px;
    margin-top: 40px;              
}

footer a {
    color: #fff;
}

footer a:hover {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}


