.portfolio-title {
    font-family: 'Caoli', serif;
    color: #4fd1ff;
}

.cv-title,
.contact-title {
    font-family: 'Basalte', sans-serif;
    color: #4fd1ff;
}

.promo-text h2 {
    font-family: 'Basalte', sans-serif;
    color: #4fd1ff;
}

.promo-text h3 {
    font-family: 'Basalte', sans-serif;
    color: #4fd1ff;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Basic', sans-serif;
    background: #000017;
    color: #e6e6ff;
}



.section {
    min-height: 100vh;
    padding: 80px;
    position: relative;
}

.section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
}



.main-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    z-index: 1000;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #4fd1ff;
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}



.hero {
    display: flex;
    justify-content: center;
    align-items: center;
}


.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,23,0.65);
    z-index: -1;
}

.hero-content {
    text-align: center;
}

.portfolio-title {
    font-size: 150px;
    color: #4fd1ff;
}

.name-pill {
    margin-top: 25px;
    font-size: 25px;
}



.cv-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
}

.cv-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.cv-image {
    width: 80%;
    max-width: 320px;
    height: 350px;
    margin-left: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

.cv-image img {
    max-width: 150%;
    max-height: 100%;
    object-fit: contain;
}



.promotion {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.promo-block {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.promo-block.reverse {
    direction: rtl;
}

.promo-block.reverse > * {
    direction: ltr;
}

.promo-video iframe {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
}



.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

input, textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #4fd1ff;
    color: white;
    padding: 10px;
}

button {
    padding: 12px;
    background: transparent;
    border: 1px solid #4fd1ff;
    color: #4fd1ff;
    border-radius: 40px;
    cursor: pointer;
}

button:hover {
    background: #4fd1ff;
    color: #000017;
}



.contact {
    justify-content: flex-start; 
    padding-top: 140px;
}

.contact-title {
    margin-bottom: 100px; 
}

.contact-form {
    gap: 50px; 
}

.form-group {
    gap: 14px;
}

label {
    font-size: 15px;
    opacity: 0.9;
}

input,
textarea {
    padding-top: 14px;
    padding-bottom: 10px;
}

button {
    margin-top: 40px;
}