/* Basic Reset and Font Import */
body {
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #121212; /* Dark Mode Background */
    color: #f0f0f0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Typography */
h1, h2 {
    font-weight: 700;
    color: #f4b4ee; /* A bright, vibrant color */
}

/* Nav Bar */
header {
    display: flex;
    justify-content: center;
    padding: 20px 50px;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(5px); /* Gen Z-approved blurred effect */
    z-index: 1000;
}

nav {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #f4b4ee;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav ul a:hover {
    color: #f4b4ee;
    transform: translateY(-2px); /* Subtle hover animation */
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 50px;
    padding-top: 60px; /* Adjust for fixed header */
}

.hero-content h1 {
    font-size: 3em;
}

.cta-button {
    background-color: #f4b4ee;
    color: #121212;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #f4b4ee;
}

.hero-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%; /* Circular image */
    border: 3px solid #f4b4ee;
    animation: pulse 2s infinite; /* A cool pulsating effect */
}

/* Animation for hero image */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(167, 243, 208, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(167, 243, 208, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(167, 243, 208, 0);
    }
}

/* Project Section */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* Other Sections */
.section {
    padding: 80px 50px;
    max-width: 1200px;
    margin: auto;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding-top: 100px;
    }

}
//
/* About Me Section */
#about p {
    font-family: 'Baloo 2', cursive;
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
    position: relative;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

/* Gradient text for highlights */
#about strong {
    background: linear-gradient(90deg, #f4b4ee, #f9c46b, #8fd3f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}


/* Smooth Instagram-ish fade */
@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Skills Section */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.skill-card {
  background: linear-gradient(135deg, #f4b4ee, #8fd3f4);
  color: #121212;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  font-family: 'Baloo 2', cursive;
  font-size: 1.2em;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(244, 180, 238, 0.6);
}
