body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFF0F5;
    color: #4A4A4A;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.cherry-blossom-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.nav-link {
    transition: color 0.3s ease-in-out;
}

.nav-link:hover,
.nav-link.active {
    color: #D6336C;
}

.section-card {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.social-icon {
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: #D6336C;
}

.project-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-primary {
    background-color: #D6336C;
    color: white;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #A61E4D;
}

/* Shared tech badge system */
.tech-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
}

.tech-frontend {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.tech-backend {
    background-color: #dcfce7;
    color: #15803d;
}

.tech-database {
    background-color: #ede9fe;
    color: #6d28d9;
}

.tech-tooling {
    background-color: #f3f4f6;
    color: #374151;
}

.tech-testing {
    background-color: #fef3c7;
    color: #b45309;
}

.tech-security {
    background-color: #fee2e2;
    color: #b91c1c;
}

.tech-docs {
    background-color: #fce7f3;
    color: #be185d;
}

/* Dark Mode Styles */
.dark-mode {
    background-color: #1a202c;
    color: #e2e8f0;
}

.dark-mode .section-card {
    background-color: rgba(45, 55, 72, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode footer {
    background-color: rgba(45, 55, 72, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode h5,
.dark-mode h6,
.dark-mode .text-gray-800 {
    color: #e2e8f0;
}

.dark-mode .text-gray-600,
.dark-mode .text-gray-700 {
    color: #a0aec0;
}

.dark-mode .bg-white\/80 {
    background-color: rgba(26, 32, 44, 0.8);
}

.dark-mode .nav-link {
    color: #a0aec0;
}

.dark-mode .text-pink-600 {
    color: #f687b3;
}

.dark-mode .nav-link:hover,
.dark-mode .nav-link.active {
    color: #f687b3;
}

.dark-mode .btn-primary {
    background-color: #f687b3;
    color: #1a202c;
}

.dark-mode .btn-primary:hover {
    background-color: #ed64a6;
}

.dark-mode .blockquote {
    border-left-color: #f687b3;
    color: #a0aec0;
}

.dark-mode input,
.dark-mode textarea {
    background-color: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
}

.dark-mode .project-card {
    background-color: #2d3748;
}

.dark-mode .bg-gray-200 {
    background-color: #4a5568 !important;
    color: #f7fafc !important;
}

.dark-mode .bg-gray-200:hover,
.dark-mode .hover\:bg-gray-300:hover {
    background-color: #2d3748 !important;
    color: #ffffff !important;
}

.dark-mode .text-gray-800 {
    color: #e2e8f0;
}

.dark-mode .social-icon {
    color: #a0aec0;
}

.dark-mode .social-icon:hover {
    color: #f687b3;
}

/* Dark mode tech badges */
.dark-mode .tech-frontend {
    background-color: rgba(59, 130, 246, 0.22);
    color: #bfdbfe;
}

.dark-mode .tech-backend {
    background-color: rgba(34, 197, 94, 0.22);
    color: #bbf7d0;
}

.dark-mode .tech-database {
    background-color: rgba(139, 92, 246, 0.22);
    color: #ddd6fe;
}

.dark-mode .tech-tooling {
    background-color: rgba(148, 163, 184, 0.22);
    color: #e2e8f0;
}

.dark-mode .tech-testing {
    background-color: rgba(245, 158, 11, 0.22);
    color: #fde68a;
}

.dark-mode .tech-security {
    background-color: rgba(239, 68, 68, 0.22);
    color: #fecaca;
}

.dark-mode .tech-docs {
    background-color: rgba(236, 72, 153, 0.22);
    color: #fbcfe8;
}