body {
    font-family: "Helvetica Neue", sans-serif;
    background: #fce9de; /* soft main background */
    margin: 0;
    color: #2A324B;
    line-height: 1.6;
    background-image: url("https://www.transparenttextures.com/patterns/batthern.png");
    
}





nav {
    background: #2A324B; /* dark nav */
    padding: 1rem 2rem;
    box-shadow: 0 2px 8px rgba(42,50,75,0.5);
}

nav a {
    color: #F7C59F; /* accent link color */
    margin-right: 1.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #767B91; /* subtle hover */
}

main {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.content{
    margin: auto;
    margin-top: 5%;
    background: #C7CCDB;
    border-radius: 10px;
    padding: 10px;
    width: 90%;
    box-shadow: 0 2px 8px rgba(42,50,75,0.5);
}

.intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }

.home-image{
    width: 400px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(42,50,75,0.5);
}

.skills {
    text-align: center;
    margin: 3rem 0;
    
}

.skills h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    
}

.skills-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
}

.skill-category {
    margin-bottom: 2rem;
}

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


.skills-list li {
    background-color: #ffe5d6;  /* subtle chip style */
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    color: #2A324B;
    box-shadow: 0 2px 8px rgba(42,50,75,0.5);
}

.project-card {
    background: #fce9de; /* light card */
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(42,50,75,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(42,50,75,0.15);
}

.btn {
    background: #2A324B; /* dark button */
    color: #F7C59F; /* accent text */
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
    background: #F7C59F; /* invert for hover */
    color: #2A324B;
    transform: scale(1.05);
}

.preview-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(42,50,75,1);
}

.btn-live {
    background: #F7C59F; /* accent color for demo */
    color: #2A324B;
    padding: 0.9rem 1.6rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-live:hover {
    background: #2A324B;
    color: #F7C59F;
    transform: scale(1.05);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card-link {
    text-decoration: none;
}

.project-card {
    background: #fce9de; /* card color */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(42,50,75,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    margin: 5%;
    
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(42,50,75,0.15);
}



.preview-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(42,50,75,0.5);
}

.project-title {
    color: #2A324B;
    padding: 0.8rem 1rem;
    text-align: center;
    font-size: 1.2rem;
}

.project-detail-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: #C7CCDB;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(42,50,75,0.1);
}

.project-detail-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(42,50,75,0.05);
}

.project-description {
    margin: 1rem 0;
    color: #2A324B;
    line-height: 1.5;
}

.project-buttons {
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    background: #2A324B;
    color: #F7C59F;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(42,50,75,0.5);
}

.btn:hover {
    background: #F7C59F;
    color: #2A324B;
    transform: scale(1.05);
}

.back-btn {
    margin-top: 1rem;
    display: inline-block;
}

.screenshots {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-wrap: wrap;
    
}

.screenshot-card {
    text-align: center;
}

.screenshot-card img {
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(42,50,75,0.5);
    display: block;
    margin: 0 auto;
}

.video-container {
    width: 742px; 
    margin: 20px auto; 
}



