@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body {
    background: linear-gradient(135deg, #181a1b 0%, #232526 100%);
    color: #e0e0e0;
    font-family: "Zilla Slab", serif;
    letter-spacing: 1.5px;
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

header {
    background: linear-gradient(90deg, #232526 60%, #232546 100%);
    padding: 2.5rem 0 1.5rem 0;
    text-align: center;
    border-bottom: 1px solid #333;
    box-shadow: 0 4px 24px #0004;
}

h1 {
    margin: 0 0 1.5rem 0;
    font-size: 3.2rem;
    letter-spacing: 3px;
    color: #aeefff;
    border-bottom: 2.5px solid #42a5f5;
    font-weight: 900;
    text-shadow: 0 4px 18px #0006, 0 1px 0 #42a5f5;
    background: linear-gradient(90deg, #90caf9 60%, #42a5f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px #42a5f555);
}

h3 {
    color: #e1f5fe;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.98;
    text-shadow: 0 1px 6px #0002;
    border-left: 4px solid #42a5f5;
    padding-left: 0.7rem;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}
nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    transition: background 2.5s, color 0.2s, box-shadow 0.2s;
}

nav a:hover {
    color: #232526;
    background: linear-gradient(90deg, #90caf9 60%, #42a5f5 100%);
    box-shadow: 0 2px 12px #42a5f555;
}

main {
    max-width: 900px;
    margin: 1rem auto;
    padding: 2rem 1.5rem;
    flex: 1;
}

section {
    margin-bottom: 1.2rem;
    background: linear-gradient(120deg, #232526 80%, #232546 100%);
    border-radius: 14px;
    padding: 1rem 2rem;
    box-shadow: 0 2px 16px #0002;
    border: 1px solid #232546;
    transition: box-shadow 0.2s;
}
h2 {
    color: #b3e5fc;
    margin-top: 0.5rem;
    margin-bottom: 1.2rem;
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    border-bottom: 2px solid #333a;
    padding-bottom: 0.4rem;
    text-shadow: 0 2px 8px #0003;
    background: linear-gradient(90deg, #b3e5fc 70%, #90caf9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section:hover {
    box-shadow: 0 4px 32px #42a5f533;
}

label {
    display: block;
    margin: 1.2rem 0 0.3rem 0;
    color: #b0b0b0;
    font-weight: 600;
    letter-spacing: 1px;
}

input,
textarea {
    width: 100%;
    background: #181a1b;
    border: 1.5px solid #333;
    color: #e0e0e0;
    border-radius: 6px;
    padding: 0.8rem;
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #90caf9;
    box-shadow: 0 0 0 2px #90caf955;
}

button[type="submit"] {
    background: linear-gradient(90deg, #90caf9 60%, #42a5f5 100%);
    color: #181a1b;
    border: none;
    border-radius: 6px;
    padding: 0.8rem 2rem;
    font-size: 1.08rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px #42a5f522;
}

button[type="submit"]:hover {
    background: linear-gradient(90deg, #42a5f5 60%, #90caf9 100%);
    box-shadow: 0 4px 16px #42a5f555;
}

footer {
    text-align: center;
    padding: 1.5rem 0;
    background: #181a1b;
    color: #888;
    font-size: 1rem;
    border-top: 1px solid #232526;
    margin-top: 2rem;
    letter-spacing: 1px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 24px;
    border: 4px solid #42a5f555;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 12px #42a5f522;
}

.intro {
    max-width: 520px;
    margin: 0 auto 2rem auto;
    text-align: center;
}

.intro h1 {
    margin: 0 0 0.5rem 0;
    font-size: 2.4rem;
    color: #42a5f5;
    background: none;
    -webkit-text-fill-color: initial;
    border-bottom: none;
    text-shadow: 0 2px 8px #42a5f533;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.portfolio-item {
    background: linear-gradient(120deg, #fff 80%, #e3f2fd 100%);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(66, 165, 245, 0.08);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1.5px solid #90caf955;
}

.portfolio-item:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 8px 32px #42a5f555;
}

.portfolio-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #eee;
    border-bottom: 1px solid #90caf955;
}

.portfolio-content {
    padding: 1.2rem;
}

.portfolio-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    color: #1976d2;
    text-shadow: 0 1px 4px #90caf922;
}

.portfolio-content p {
    margin: 0;
    color: #555;
    font-size: 1rem;
}

footer a {
    text-decoration: underline;
    color: #42a5f5;
    font-size: 1rem;
    margin: 0.5rem 0;
    transition: color 0.2s;
}

footer a:visited {
    color: #1976d2;
}

section ul li a {
    color: #90caf9;
    transition: color 0.2s;
}

section ul li a:hover {
    color: #42a5f5;
}

section ul li b {
    font-size: 1.3rem;
    color: #b3e5fc;
}

section ul {
    list-style: none;
    padding-left: 0;
}

.divider {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, #42a5f5 0%, #90caf9 100%);
    margin-top: 18px;
    border-radius: 2px;
    opacity: 0.7;
}

section a {
    color: #90caf9;
    text-decoration: underline;
    transition: color 0.2s;
}

section a:hover {
    color: #42a5f5;
}
section ul li {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #444;
}