* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

:root {
  --pastel-pink: #f7cfd8;
  --pastel-peach: #ffd6c9;
  --pastel-lavender: #e6ddff;
  --pastel-mint: #dff3ea;
  --pastel-blue: #eaf2ff;
  --pastel-cream: #fff6ec;

  --text-dark: #2d2d2d;
  --text-soft: #6b6b6b;
  --text-rose: #FF007F;
}


body {
    line-height: 1.6;
    padding-top: 70px;
}

body {
  background: var(--pastel-cream);
  color: var(--text-dark);
}


/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--pastel-blue);
    color: var(--text-dark);
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 15px;
}

nav ul li a {
    color: var(--text-dark);
    text-decoration: none;
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(to right, var(--pastel-pink), var(--pastel-peach));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-dark);
    text-align: center;
     font-size: 25px;
}

.hero span {
    color: var(--text-rose) ;
}

.btn {
    background: var(--pastel-pink);
    color: var(--text-dark);
    padding: 10px 20px;
    margin-top: 15px;
    text-decoration: none;
    border-radius: 5px;
}
.btn:hover {
  background: var(--pastel-peach);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* Sections */
section {
    padding: 80px 50px;
    text-align: center;
}

.skills-container,
.projects-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.skill,
.project-card {
    background: var(--pastel-mint);
    padding: 20px;
    width: 200px;
    border-radius: 8px;
}
section {
  background: var(--pastel-blue);
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 40px;
}

/* Contact */
form {
    max-width: 400px;
    margin: auto;
}

form input,
form textarea,
form button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

/* Footer */
footer {
    background: linear-gradient(to right, var(--pastel-pink), var(--pastel-peach));
    color: var(--text-soft);
    text-align: center;
    padding: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .skills-container,
    .projects-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Dark Mode Button */
#darkModeToggle {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: white;
}

/* Dark Mode Styles */
body.dark {
    background: #121212;
    color: #f1f1f1;
}

body.dark nav {
    background: #1f1f1f;
}

body.dark section {
    background: #121212;
}

body.dark .skill,
body.dark .project-card {
    background: #1e1e1e;
    color: white;
}

body.dark footer {
    background: #1f1f1f;
}

body.dark .btn {
    background: white;
    color: black;
}

/* Hamburger Menu */
.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Mobile Navbar */
@media (max-width: 768px) {
    nav ul {
        position: absolute;
        top: 60px;
        right: 0;
        background: #111;
        flex-direction: column;
        width: 200px;
        display: none;
        padding: 15px;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    .menu-btn {
        display: block;
    }
}
#formStatus {
    margin-top: 10px;
    font-weight: bold;
}
/* Gallery Filter Buttons */
.filter-buttons {
    margin-bottom: 30px;
}

.filter-btn {
    padding: 8px 16px;
    border: none;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 20px;
    background: var(--pastel-peach);
}

.filter-btn.active {
    background: var(--pastel-pink);
    color: var(--text-dark);
}

/* Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* Gallery Items */
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
/* Gallery Images – Default (Desktop & Laptop) */
.gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    border-radius: 10px;
}



/* Hover Effect */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Dark Mode Support */
body.dark .filter-btn {
    background: #2a2a2a;
    color: white;
}

body.dark .filter-btn.active {
    background: white;
    color: black;
}
/* Mr. Pip Introduction */
.mrpip-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
}
.mrpip-intro img {
  max-width: 300px;   /* or whatever size you want */
  height: auto;       /* keeps proportions */
  border-radius: 12px; /* optional, for style */
}
@media (max-width: 768px) {
  .mrpip-intro {
    flex-direction: column;
    text-align: center;
  }

  .mrpip-intro img {
    max-width: 200px;
    margin-bottom: 20px;
  }
}

/* Mobile Optimization */
@media (max-width: 600px) {

    .gallery {
        gap: 15px;
    }

    .gallery-item img {
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    border-radius: 10px;
}

}
.coming-card img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    margin-bottom: 10px;
}
@media (max-width: 600px) {
    .coming-card img {
        max-height: 120px;
    }
}
/* Mobile – Balanced Image Size */
@media (max-width: 600px) {

    .gallery {
        grid-template-columns: 1fr; /* One image per row */
    }

    .gallery-item img {
        aspect-ratio: 1 / 1;  /* Bigger presence */
        max-height: 260px;    /* Key fix */
    }

}
.social-footer {
  display: flex;
  justify-content: center;
  gap: 30px;            /* more space between buttons */
  padding: 40px 0;     /* more space top & bottom */
  background-color: var(--pastel-lavender) ;
}

.social-footer a {
  width: 65px;         /* BIGGER button */
  height: 65px;        /* BIGGER button */
  background: linear-gradient(to right, var(--pastel-pink), var(--pastel-peach));
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;     /* BIGGER icon */
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.social-footer a:nth-child(2) {
  background: var(--pastel-blue); /* Behance */
}

.social-footer a:hover {
  transform: scale(1.1);  /* nice hover effect */
}
@media (max-width: 768px) {
  .social-footer {
    gap: 40px;
    padding: 50px 0;
  }

  .social-footer a {
    width: 80px;      /* BIGGER for mobile */
    height: 80px;
    font-size: 38px; /* BIGGER icon */
  }
}
.about-social {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
}

.about-social a {
  width: 65px;
  height: 65px;
  background: var(--pastel-blue);
  color:var(--text-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
}

.about-social a:nth-child(2) {
  background: var(--pastel-peach); /* Behance */
}

@media (max-width: 768px) {
  .about-social a {
    width: 80px;
    height: 80px;
    font-size: 38px;
  }
}
.button,
button {
  background: var(--pastel-pink);
  color: var(--text-dark);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.button:hover,
button:hover {
  background: var(--pastel-peach);
  transform: translateY(-2px);
}
.floating-social a {
  background: var(--pastel-lavender);
  color: var(--text-dark);
}

.floating-social a:hover {
  background: var(--pastel-pink);
}
.card {
  background: var(--pastel-lavender);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}
.card {
  border: 2px solid var(--pastel-lavender);
}
.about-creator {
  background: var(--pastel-mint);
  border-radius: 24px;
  padding: 60px 40px;
  margin: 40px auto;
  max-width: 1100px;
}

.creator-card {
  display: flex;
  align-items: center;
  gap: 40px;
}

.creator-card img {
  max-width: 250px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.creator-text {
  text-align: left;
  color: var(--text-dark);
}

.creator-text h2 {
  margin-bottom: 20px;
  color: var(--text-soft);
}

@media (max-width: 768px) {
  .creator-card {
    flex-direction: column;
    text-align: center;
  }

  .creator-card img {
    max-width: 180px;
    margin-bottom: 20px;
  }
}