*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body { 
  font-family: "GabrieleBlackRibbonFG", sans serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f9e4e8 0%, #e8f4f8 50%, #f0f4e8 100%);
  min-height: 100vh; 
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero{
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, rgba(184, 0, 119, 0.8), rgb(35, 20, 39));
    text-align: center;
}
.hero h1{
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(45deg, #C0B7F6, #DBF9F0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce{
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.wave-hand::after{
    content: '👋✨';
    animation: wave 2s infinite;
}

@keyframes wave{
    0%, 100% {transform: rotate(0deg);}
    20%, 60% {transform: rotate(20deg);}
}

.name{
    color: #ff6b9d;
    font-weight: 700;
}

.tagline{
    font-size: 1.4rem;
    color: #DBF9F0;
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button{
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 20px 30px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover{
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255,107,157,0.6);
}

.projects{
    padding: 5rem 0;
}

.projects h2{
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
}

.project-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card{
    background: rgba(255,255,255,0.95);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.project-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.project-image{
    position: relative;
    height: 200px;
    background: #f0f0f0;
    overflow: hidden;
}

.project-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-links{
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.link-btn{
    background: rgba(255,255,255,0.9);
    color: #ff6b9d;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-btn:hover{
    background: #ff6b9d;
    color: white;
    transform: scale(1.1);
}

.link-btn.live{
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
}

.project-info{
    padding: 2rem;
}

.project-info h3{
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.project-info p{
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.tech-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tags span{
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-card.empty{
    background: linear-gradient(45deg, #ffeef2, #e8f4f8);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.coming-soon p{
    font-size: 1.2rem;
    color: #888;
}

.footer{
    background: rgba(255,255,255,0.1);
    padding: 2rem 0;
    text-align: center;
    backdrop-filter: blur(10px);
}

.footer p{
    color: #666;
}

.footer a{
    color: #ff6b9d;
    text-decoration: none;
}

@media (max-width: 768px){
    .project-grid{
        grid-template-columns: 1fr;
    }
}
