@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&display=swap');

/* Base styles */
body {
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  background: #fffaf5;
  color: #444;
  scroll-behavior: smooth;
}

nav {
  background-color: #fff;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav ul li {
  margin: 0 18px;
}

nav ul li a {
  text-decoration: none;
  color: #f45b69;
  font-weight: 700;
  font-size: 16px;
}

/* Hero Section */
#hero {
  background-color: #fffaf5;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
  gap: 40px;
}

.hero-text {
  flex: 1 1 500px;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #c95e5e;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #555;
}

.hero-text .btn {
  margin-right: 12px;
}

.hero-photo img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 4px solid #fff0f0;
}

/* Button Styles */
.btn {
  background: #ffeaea;  /* slightly darker background */
  color: #e94b52;        /* deeper red text */
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}

.btn:hover {
  background: #ffd2d2;  /* slightly deeper hover */
  transform: translateY(-2px);
}


.email-btn {
  background: linear-gradient(90deg, #ff7a7a, #ffb199);
  color: white;
  font-size: 16px;
  border: none;
  padding: 12px 30px;
  margin-top: 15px;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

.email-btn:hover {
  background: linear-gradient(90deg, #ff9999, #ffc1c1);
  transform: scale(1.05);
}

/* Main content layout */
.tab-content {
  display: block;
  padding: 20px 20px; /* reduced from 40px */
  max-width: 900px;
  margin: 0 auto 20px auto; /* reduced bottom margin */
  animation: fadeIn 0.4s ease-in-out;
  scroll-margin-top: 80px;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h2 {
  border-bottom: 2px solid #ffb6b6;
  display: inline-block;
  padding-bottom: 4px;
  color: #c95e5e;
  margin-top: 0;
  margin-bottom: 10px;
}

/* Card styling */
.card {
  background: #fff0f0;
  border-left: 5px solid #ffb6b6;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  border-left-color: #f45b69;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #999;
}

.project-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.project-icon {
  width: 140px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Art Gallery */
.art-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.art-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.art-image:hover {
  transform: scale(1.05);
}

/* Skills Section */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.skill-card {
  background: #fff0f0;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #f45b69;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.skill-card h4 {
  color: #c95e5e;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.skill-card p {
  margin: 0;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Experience Section */
.experience-section {
  margin-top: 15px;
}

.experience-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f45b69;
  margin-top: 30px;
  border-left: 5px solid #ff7a7a;
  padding-left: 12px;
}

.experience-grid {
  display: grid;
  gap: 25px;
  margin-top: 20px;
}

.experience-card {
  background: #fff0f0;
  padding: 20px;
  border-radius: 12px;
  border-left: 5px solid #ffd4d4; /* lighter pink border */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, border-left-color 0.3s ease;
  position: relative;
  margin-bottom: 40px;
}

.experience-card:hover {
  transform: scale(1.015);
  border-left-color: #ff4c60; /* darker red on hover */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}



.experience-card h3 {
  color: #c95e5e;
  margin-bottom: 8px;
}

.experience-card .org {
  font-weight: bold;
  color: #555;
  margin-bottom: 10px;
}

.experience-card .org span {
  font-weight: normal;
  color: #888;
  font-style: italic;
}

.experience-card ul {
  padding-left: 20px;
}

.experience-card li {
  margin-bottom: 8px;
  line-height: 1.6;
}
