html {
    scroll-behavior: smooth;
  }

:root {
    --bg: #ffffff;
    --text: #111111;
    --accent: #ff4d00;
    --gradient: radial-gradient(circle at center, #ff4d00, #ff8000);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    cursor: default;
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
  
  .container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  z-index: 999;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
}

nav a {
  margin-left: 2rem;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s ease;
}

nav a:hover {
  font-weight: bold;
  color: var(--accent);
}
  
  .hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    background: #f9f9f9;
    position: relative;
  }

  .scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: float 3s ease-in-out infinite;
  }
  
  .scroll-down a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }
  
  .scroll-down svg {
    stroke: var(--accent);
    animation: bounce 1.5s infinite;
  }
  
  @keyframes float {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -6px); }
  }
  
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
  }
  
  
  .avatar {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
    transition: transform 0.3s ease;
  }
  
  .avatar:hover {
    transform: scale(1.05);
  }
  
  .headline {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
  
  .headline span {
    font-weight: 400;
    font-size: 1.5rem;
    color: #555;
    display: block;
    margin-top: 0.8rem;
  }

  .about {
    background: #fff;
    padding: 6rem 2rem;
    text-align: left;
  }
  
  .about h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .about p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
  }

  #cursor-bubble {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: multiply;
    transition: opacity 0.3s ease;
  }
  
  @media (max-width: 600px) {
      
    nav a {
      margin-left: 5px;
      font-size: 16px;
    }
  }

  @media (max-width: 768px) {
    .headline {
      font-size: 1.2rem;
    }
  
    .headline span {
      font-size: 1rem;
    }
    .avatar {
      width: 200px;
      height: 200px;
    }
  
    #cursor-bubble {
      display: none;
    }
  }

.projects {
    background: #fefefe;
    padding: 6rem 2rem;
    text-align: center;
  }
  
  .projects h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 700;
  }
  
  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .project-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    cursor: pointer;
  }
  
  .project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  }
  
  .project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .project-card:hover img {
    transform: scale(1.05);
  }
  
  .project-text {
    padding: 1.5rem;
  }
  
  .project-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--accent);
    font-weight: 700;
  }
  
  .project-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
  }

  .project-cover {
    margin-top: -100px;
  }
  
  .case-btn {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.6rem 1.4rem;
    background-color: var(--accent);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease;
  }
  
  .case-btn:hover {
    background-color: #e03c00;
  }

#case-nav {
    position: sticky;
    top: 0;
    background: white;
    padding: 1rem 2rem;
    border-bottom: 1px solid #eee;
    z-index: 999;
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    max-width: 1100px;
    margin: auto;
  }
  
  #case-nav .logo {
    font-weight: bold;
    text-decoration: none;
    color: var(--text);
  }
 
  .case-hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .case-hero h1 {
    font-size: 3rem;
    font-weight: 900;
  }
  
  .case-hero .subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-top: 1rem;
  }
  
  .mockup {
    width: 100%;
    border-radius: 12px;
    margin: 2rem 0;
  }

  .animate-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
  }
  
  .animate-slide {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
  }

  .visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

.contact {
    background: #f9f9f9;
    padding: 6rem 2rem;
    text-align: center;
  }
  
  .contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .contact p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #444;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
  }
  
  .contact-form button {
    padding: 0.8rem 1.6rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background: #e03c00;
  }
  
  .contact-links {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.95rem;
  }
  
  .contact-links a {
    text-decoration: none;
    color: var(--text);
    transition: color 0.2s;
  }
  
  .contact-links a:hover {
    color: var(--accent);
  }

.site-footer {
    background: #fff;
    padding: 3rem 2rem;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.95rem;
    color: #555;
  }
  
  .site-footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
  }
  
  .site-footer .footer-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s ease;
  }
  
  .site-footer .footer-links a:hover {
    color: var(--accent);
  }
  
  .site-footer .copyright {
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 1.5rem;
  }

#blob-canvas {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
  }
  
  