@import url('https://fonts.googleapis.com/css2?family=Acme&family=Caveat:wght@400..700&family=Playwrite+BE+VLG:wght@100..400&family=Seymour+One&display=swap');


@font-face {
    font-family: 'Kapakana';
    src: url('/fonts/Kapakana/static/Kapakana-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'K2D';
    src: url('/fonts/k2d/K2D-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'fjallone';
    src: url('/fonts/Fjalla_One/FjallaOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  .kapakana {
    font-family: 'Kapakana', sans-serif;
  }

  .K2D {
    font-family: 'K2D', sans-serif;
  }

  :root {
    --primary-color: #6c63ff;
    --secondary-color: #2d2b55;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --bigFont: "Kapakana", cursive;
    --mainFont: 'K2D', cursive;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--mainFont);
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

.left-bar {
   position: fixed;
   height: 100vh;
   width: 2px;
   border-left: 1px solid var(--light-bg);
   top: 0;
   left: 90px;
   z-index: 10009;
}

.right-bar {
    position: fixed;
    height: 100vh;
    width: 2px;
    border-left: 1px solid var(--light-bg);
    top: 0;
    right: 100px;
    z-index: 10009;
 }
/* Navigation */
/* Animații pentru navbar */
.navbar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid var(--light-bg);
    transform: translateY(0);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
}

/* Animații pentru nav links */
.nav-link {
    color: #fff !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 20px;
    margin-right: 20px;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: #ff6b9d !important;
    transform: translateY(-2px);
}

.brand-logo{
    margin: 10px 20px 10px 10px;
}

.img-logo{
    width: 80%;
}

.brand-bold {
    color: #fff;
    font-weight: 900;
    margin-left: 50px;
}

.navbar-nav {
    margin-right: 50px;
}

.brand-designs {
    color: #fff;
    font-weight: 300;
    font-style: italic;
}

.hero-bold {
    font-family: var(--mainFont);
    font-weight: 400;
    font-size: 120px;
    letter-spacing: -2px;
    color: #fff;    
}
.hero-script {
    font-family: var(--bigFont);    
    font-size: 200px;
    color: #fff;
    margin-top: 200px;
    margin-left: -110px;
    margin-right: 0.5rem;
    text-shadow: 0 2px 16px #000a;
}

/* Animații pentru hero section */
.hero-bold, .hero-script {
    opacity: 0;
    animation: slideInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.hero-script {
    animation-delay: 0.6s;
}

.skill-bold {
    font-family: var(--mainFont);
    font-weight: 400;
    font-size: 120px;
    letter-spacing: -2px;
    color: #fff;    
}
.skill-script {
    font-family: var(--bigFont);    
    font-size: 200px;
    color: #fff;
    margin-top: 200px;
    margin-left: -110px;
    margin-right: 0.5rem;
    text-shadow: 0 2px 16px #000a;
}

/* Animații pentru hero section */
.skill-bold, .skill-script {
    opacity: 0;
    animation: slideInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.hero-script {
    animation-delay: 0.6s;
}

.hero-logo {
    opacity: 0;
    animation: scaleIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
    width: 100%;
}

a {
    text-decoration: none;
    color: #fff;    
}

.p-100{
    padding-top: 100px;
}

.link{
    position: absolute;
    top: 0;
    width: 100%;
    height: 300px;    
    z-index: 2010;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Animații pentru skills section */
.skills-table {
    background: rgba(20,20,20,0.7);
    border: 1.5px solid #fff;
    border-radius: 0 0 0 25px;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 24px #0005;
    min-width: 220px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-50px);
}

.skills-table.animate {
    opacity: 1;
    transform: translateX(0);
}

.skills-table:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.2);
}

.skill-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 24px;
    border-bottom: 1px solid #333;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.skill-row.animate {
    opacity: 1;
    transform: translateX(0);
}

.skill-row:hover {
    background: rgba(255, 107, 157, 0.1);
    transform: translateX(1px);
    color: #ff6b9d;
}

.bg-skill, .bg-last-skill {
    background-color: #555;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-row:hover .bg-skill,
.skill-row:hover .bg-last-skill {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    
}

.bg-skill img, .bg-last-skill img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-row:hover img {    
    filter: brightness(1.2);
}

.my-bold {
    font-family: var(--mainFont);
    font-weight: 400;
    font-size: 120px;
    letter-spacing: -2px;
    color: #fff;    
    margin-top: -50px;
}
.my-script {
    font-family: var(--bigFont);    
    font-size: 200px;
    color: #fff;
    margin-top: 200px;
    margin-left: -20px;
    margin-right: 0.5rem;
    text-shadow: 0 2px 16px #000a;
}

.nav-link {
    color: #fff !important;
    transition: color 0.3s ease;
    font-size: 20px;
    margin-right: 20px;
}

.nav-link:hover {
    color: #ff6b9d !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 450px;
    background-image: url(/images/pattern.png);    
    z-index: -1;
}

.blob {
    position: absolute;    
    border-radius: 50%;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}
.blobs {
    position: absolute;    
    border-radius: 50%;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.blob-1 {
    width: 200px;
    height: 210px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    top: 360%;
    left: 5%;
    animation-delay: 0s;
}

.blob-2 {
    width: 200px;
    height: 250px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    top: 120%;
    right: 50%;    
    animation-delay: 2s;
}

.blob-3 {
    width: 250px;
    height: 350px;
    background: linear-gradient(45deg, #e7e7e7, #b4c6dd);
    top: 120%;
    left: 50%;
    animation-delay: 4s;
}
.blob-4 {
    width: 250px;
    height: 350px;
    background: linear-gradient(45deg, #e7e7e7, #b4c6dd);
    top: 380%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-content {
    margin-top: -520px;
    z-index: 2;
}

.skills-content {   
    margin-top: -100px; 
    z-index: 2;
}

.skills-table {
    background: rgba(20,20,20,0.7);
    border: 1.5px solid #fff;
    border-radius: 0 0 0 25px;    
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 24px #0005;
    min-width: 220px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
.skill-row {
    display: flex;
    align-items: center; 
    gap: 0.5rem;
    font-size: 24px;    
    border-bottom: 1px solid #333;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.skill-row:last-child { border-bottom: none; }
.skill-icon {
    font-size: 1.3rem;    
    text-align: left;
    color: #ff4fa3;
    padding: 0 0 0 20px;
}
.skill-icon-container {    
    padding: 10px 10px 10px 10px;
    border-right: 1px solid #333;
}
.bg-skill {
    background-color: #555;     
}

.bg-last-skill {
    background-color: #555;
    border-radius: 0 0 0 25px; 
}
.skill-last-icon{
    border-radius: 0 0 0 25px; 
}

/* Animații pentru services box */
.services-box {
    background: transparent;
    border-radius: 12px;
    font-size: 30px;
    font-weight: 700;
    text-align: right;
    color: #fff;
    margin-left: auto;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-box.animate {
    opacity: 1;
    transform: translateX(0);
}

.services-box:hover {
    color: #ff6b9d;
    transform: translateX(-10px);
    text-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
}

.hero-title {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out;
}

.hero-logo {    
    display: flex;
    justify-content: flex-start;
    animation: slideInLeft 1s ease-out 0.5s both;
}

.logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 107, 157, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
    }
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInRight 1s ease-out;
}

.portfolio-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.portfolio-item {
    height: 80px;
    background: linear-gradient(45deg, #333, #555);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

/* About Section */
.about-section {
    height: 900px;    
    background-image: url(/images/pattern.png);
    
}

/* Animații pentru about section */
.about-card {
    background: transparent;
    backdrop-filter: blur(10px);
    border-radius: 0 0 50px 0;
    padding: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
}

.about-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-card:hover {
    border-color: #ff6b9d;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2);
    transform: translateY(-10px);
}
.section-title {
    font-family: var(--mainFont);
    font-weight: 400;
    font-size: 120px;
    letter-spacing: -2px;
    color: #fff;   
    padding:80px;
}

.about-text {
    font-size: 32px;
    line-height: 1.8;
    color: #ccc;
}

/* Skills Section */
.skills-section {
    padding: 10px 0;
}

.script-text {
    font-style: italic;
    font-weight: 300;
}

.skill-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff6b9d;
}

.skill-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.skill-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    background: transparent;
}

.project-title {        
    background-image: url(/images/pattern.png);
    display: flex;
    justify-content: start;        
}

.see-title {        
    background-image: url(/images/pattern.png);
    padding: 100px 0;
    display: flex;
    justify-content: start;        
}



/* Animații pentru project cards */
.project-card {
    position: relative;
    border-radius: 0 0 50px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    height: 500px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px) scale(0.9);
}

.project-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.project-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: #ff6b9d;
    box-shadow: 0 25px 50px rgba(255, 107, 157, 0.3);
}

.project-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.myp-title {
    font-family: var(--mainFont);
    font-weight: 400;
    font-size: 120px;
    letter-spacing: -2px;
    color: #fff;
    padding: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .myp-title {
    color: #ff6b9d;
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(255, 107, 157, 0.5);
}

.cape-town {
    background: transparent;
}

.vul-tour {
    background: linear-gradient(45deg, #333, #555);
}

.lois-studio {
    background: linear-gradient(45deg, #4834d4, #686de0);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44, 44, 44, 0.8));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h3 {
    font-size: 1.5rem;
    margin: 0;
}

/* Animații pentru buttons */
.btn-custom {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 0 0 50px 50px;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-custom:hover::before {
    left: 100%;
}

.btn-custom:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 107, 157, 0.4);
    color: #fff;
}

.btn-see {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    border: none;
    color: #fff;
    font-size: 30px;
    width: 400px;
    padding: 12px 30px;
    border-radius: 0 0 25px 25px;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-see::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-see:hover::before {
    left: 100%;
}

.btn-see:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.4);
}

/* Footer */
.footer {
    padding: 50px 0;
    border-top: 1px solid var(--light-bg);
}

.footer p {
    margin: 0;
    color: #ccc;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .my-bold {        
        font-weight: 200;
        font-size: 80px;
       margin-left: 50px;
    }
    .my-script {
        font-family: var(--bigFont);    
        font-size: 100px;
        color: #fff;
        margin-top: 100px;
        margin-left: -20px;
        margin-right: 0.5rem;
        text-shadow: 0 2px 16px #000a;
    }

    .hero-bold {
        font-family: var(--mainFont);
        margin-top: 250px;
        font-weight: 200;
        font-size: 40px;
        letter-spacing: -2px;
        color: #fff;    
    }
    .hero-script {
        font-family: var(--bigFont);    
        font-size: 80px;
        color: #fff;
        margin-top: 350px;
        margin-left: -60px;
        margin-right: 0.5rem;
        text-shadow: 0 2px 16px #000a;
    }

    .myp-title {
        font-family: var(--mainFont);
        font-weight: 300;
        font-size: 100px;        
    }

    .about-text {
        font-size: 28px;
        line-height: 1.8;
        color: #ccc;
    }

    .left-bar {
       display: none;
     }
     
     .right-bar {
        display: none;
      }
    .portfolio-card {
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 4rem;
    }
    
    .blob {
        display: none;
    }
    .mobile-off {
        display: none;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    .skills-table:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .project-card:hover {
        transform: translateY(-10px) scale(1.02);
    }
    
    .btn-see {
        width: 300px;
        font-size: 24px;
    }
}

@media (max-width: 450px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-bold {
        font-family: var(--mainFont);
        margin-top: 100px;
        font-weight: 200;
        font-size: 40px;
        letter-spacing: -2px;
        color: #fff;    
    }
    .hero-script {
        font-family: var(--bigFont);    
        font-size: 80px;
        color: #fff;
        margin-top: 200px;
        margin-left: -60px;
        margin-right: 0.5rem;
        text-shadow: 0 2px 16px #000a;
    }

    .myp-title {
        font-family: var(--mainFont);
        font-weight: 200;
        font-size: 80px;        
    }
    
    .logo-circle {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .about-card,
    .skill-card {
        padding: 1.5rem;
    }
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }