@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.cdnfonts.com/css/segoe-ui-4');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
}
/* ===============================
   Navbar
================================== */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    background-color: #1e1e1e;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6f61;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}
.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: #ff6f61;
}

/* ===============================
   Home Section
================================== */
.home-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90vh;
    padding: 5rem 10%;
    flex-wrap: wrap;
    gap: 3rem;
}
/* === Text Area === */
.text-content {
    max-width: 600px;
}
.text-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
.text-content span {
    color: #ff6f61;
}
.text-content h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
.btn-group {
    display: flex;
    gap: 1rem;
}
.btn {
    padding: 0.8rem 1.6rem;
    background-color: #ff6f61;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.btn:hover {
    background-color: #ff3b2e;
}
/* === Profile Image === */
.profile-image {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ff6f61;
    box-shadow: 0 8px 24px rgba(255, 111, 97, 0.2);
}

.profile-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ff6f61;
    box-shadow: 0 8px 24px rgba(255, 111, 97, 0.2);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .home-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


/* About Section */
.about-section {
  padding: 4rem 10%;
}
.about-container {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}
.about-image {
  flex: 1;
  min-width: 240px;
  max-width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 50%;
  border: 4px solid #ff6f61;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content {
  flex: 2;
}
.about-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ff6f61;
}
.about-content p {
  margin-bottom: 1rem;
}
.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: #ff6f61;
  color: white;
  border-radius: 5px;
  transition: background 0.3s;
}
.btn:hover {
  background-color: #ff3b2e;
}

/* Skills Section */
.skills-section {
  padding: 3rem 10%;
  background-color: #1e1e1e;
}
.skills-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #ff6f61;
}
.skills-container {
  display: grid;
  gap: 1.5rem;
}
.skill p {
  margin-bottom: 0.3rem;
}
.bar {
  height: 8px;
  background-color: #333;
  border-radius: 5px;
  overflow: hidden;
}
.progress {
  height: 100%;
  background-color: #ff6f61;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-content h1 {
    font-size: 2rem;
  }
}



/* Section */
.projects-section {
  padding: 4rem 10%;
  text-align: center;
}
.projects-section h1 {
  font-size: 2.5rem;
  color: #ff6f61;
  margin-bottom: 2rem;
}

/* Project Cards */
.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.project-card {
  background-color: #1f1f1f;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(255, 111, 97, 0.2);
}
.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.project-info {
  padding: 1rem;
}
.project-info h3 {
  color: #ff6f61;
  margin-bottom: 0.5rem;
}
.project-info p {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #ff6f61;
  color: white;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.3s;
}
.btn:hover {
  background-color: #ff3b2e;
}

/* Responsive */
@media (max-width: 768px) {
  .projects-section {
    padding: 2rem;
  }
}


/* Contact Section */
.contact-section {
  padding: 4rem 10%;
  text-align: center;
}
.contact-section h1 {
  font-size: 2.5rem;
  color: #ff6f61;
  margin-bottom: 1rem;
}
.contact-section p {
  margin-bottom: 2rem;
  color: #ccc;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  background-color: #1f1f1f;
  color: #fff;
  border: 1px solid #333;
  border-radius: 5px;
  font-size: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff6f61;
  outline: none;
}
.btn {
  background-color: #ff6f61;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}
.btn:hover {
  background-color: #ff3b2e;
}
#form-status {
  margin-top: 1rem;
  color: #7effa0;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 2rem;
  }
}