<<<<<<< HEAD
/* ===========================
   CVIO LAYOUT BASE
=========================== */

body {
    background: #101010;
    color: #fff;
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
}

/* Vertical Lines Background */
.lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.lines .content {
    display: grid;
    height: 100%;
    grid-template-columns: repeat(5, 1fr);
}

.lines .line-col {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
}

.logo span {
    font-weight: 600;
    font-size: 18px;
}

.menu-btn {
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    background: #fff;
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
}

.menu-btn span {
    top: 50%;
}

.menu-btn span:before {
    top: -8px;
}

.menu-btn span:after {
    top: 8px;
}

/* HERO SECTION */
.section.started {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.started-content .h-title {
    font-size: 38px;
    font-weight: 600;
}

.started-content .h-title strong {
    color: #4bffa5;
}

.typed-subtitle {
    margin-top: 10px;
    display: inline-block;
    font-size: 22px;
    color: #bbb;
}

/* Avatar image */
.logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: auto;
    background-size: cover;
    background-position: center;
    margin-bottom: 25px;
}

.btn-main {
    margin-top: 30px;
    padding: 12px 30px;
    border: 2px solid #4bffa5;
    color: #4bffa5;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}

.btn-main:hover {
    background: #4bffa5;
    color: #101010;
}

.contact-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255,255,255,0.04);
    padding: 25px 30px;
    border-radius: 12px;
    transition: 0.3s;
}

.contact-card:hover {
    border-color: #4bffa5;
    transform: translateY(-5px);
}

/* Avatar */
.avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 25px auto;
    background-size: cover;
    background-position: center;
    border: 4px solid #4bffa5;
    box-shadow: 0 0 20px rgba(75,255,165,0.35);
}

/* Hero Description */
.hero-description {
    color: #ccc;
    max-width: 600px;
    margin: 20px auto;
    font-size: 17px;
    line-height: 1.7;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}


.btn-alt {
    border-color: #fff;
    color: #fff;
}

.btn-alt:hover {
    background: #fff;
    color: #101010;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    background: rgba(0,0,0,0.85);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 20;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.menu-content nav a {
    display: block;
    text-align: center;
    color: #4bffa5;
    font-size: 28px;
    margin: 15px 0;
    text-decoration: none;
    transition: 0.3s;
}

.menu-content nav a:hover {
    color: #fff;
}


/* FIXED CENTER NAVIGATION */
.top-menu {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 35px;
    z-index: 50;
}

.top-menu a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.top-menu a:hover {
    color: #4bffa5;
}


.section.started {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

.started-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar {
    margin: 0 auto 20px auto;
}


/* =============================
   FIX INNER PAGE SPACING
============================= */
.inner-page {
    padding-top: 140px; /* increased from 140 */
}

.inner-page h1 {
    margin-bottom: 25px;
    font-size: 32px;
    font-weight: 600;
}

/* ABOUT PAGE CENTER TEXT */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
}

/* CONTACT PAGE SPACING */
.contact-row {
    margin-top: 30px;
}

.page-title {
    text-align: center;
    margin-top: 80px;   /* ίδιο ύψος με τα Projects */
    margin-bottom: 40px;
    font-size: 2.3rem;
    font-weight: 700;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7;
}
=======
/* ===========================
   CVIO LAYOUT BASE
=========================== */

body {
    background: #101010;
    color: #fff;
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
}

/* Vertical Lines Background */
.lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.lines .content {
    display: grid;
    height: 100%;
    grid-template-columns: repeat(5, 1fr);
}

.lines .line-col {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
}

.logo span {
    font-weight: 600;
    font-size: 18px;
}

.menu-btn {
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    background: #fff;
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
}

.menu-btn span {
    top: 50%;
}

.menu-btn span:before {
    top: -8px;
}

.menu-btn span:after {
    top: 8px;
}

/* HERO SECTION */
.section.started {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.started-content .h-title {
    font-size: 38px;
    font-weight: 600;
}

.started-content .h-title strong {
    color: #4bffa5;
}

.typed-subtitle {
    margin-top: 10px;
    display: inline-block;
    font-size: 22px;
    color: #bbb;
}

/* Avatar image */
.logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: auto;
    background-size: cover;
    background-position: center;
    margin-bottom: 25px;
}

.btn-main {
    margin-top: 30px;
    padding: 12px 30px;
    border: 2px solid #4bffa5;
    color: #4bffa5;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}

.btn-main:hover {
    background: #4bffa5;
    color: #101010;
}

.contact-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255,255,255,0.04);
    padding: 25px 30px;
    border-radius: 12px;
    transition: 0.3s;
}

.contact-card:hover {
    border-color: #4bffa5;
    transform: translateY(-5px);
}

/* Avatar */
.avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 25px auto;
    background-size: cover;
    background-position: center;
    border: 4px solid #4bffa5;
    box-shadow: 0 0 20px rgba(75,255,165,0.35);
}

/* Hero Description */
.hero-description {
    color: #ccc;
    max-width: 600px;
    margin: 20px auto;
    font-size: 17px;
    line-height: 1.7;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}


.btn-alt {
    border-color: #fff;
    color: #fff;
}

.btn-alt:hover {
    background: #fff;
    color: #101010;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    background: rgba(0,0,0,0.85);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 20;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.menu-content nav a {
    display: block;
    text-align: center;
    color: #4bffa5;
    font-size: 28px;
    margin: 15px 0;
    text-decoration: none;
    transition: 0.3s;
}

.menu-content nav a:hover {
    color: #fff;
}


/* FIXED CENTER NAVIGATION */
.top-menu {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 35px;
    z-index: 50;
}

.top-menu a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.top-menu a:hover {
    color: #4bffa5;
}


.section.started {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

.started-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar {
    margin: 0 auto 20px auto;
}


/* =============================
   FIX INNER PAGE SPACING
============================= */
.inner-page {
    padding-top: 140px; /* increased from 140 */
}

.inner-page h1 {
    margin-bottom: 25px;
    font-size: 32px;
    font-weight: 600;
}

/* ABOUT PAGE CENTER TEXT */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
}

/* CONTACT PAGE SPACING */
.contact-row {
    margin-top: 30px;
}

.page-title {
    text-align: center;
    margin-top: 80px;   /* ίδιο ύψος με τα Projects */
    margin-bottom: 40px;
    font-size: 2.3rem;
    font-weight: 700;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7;
}
>>>>>>> 3899147f991a7f4b6bfa0243ce9b22cf12c10df7
