/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:wght@700&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  background: #f5f5f5;
}

/* Background Gradient */
.background-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 50%, #e1f5fe 100%);
  z-index: -1;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.hero-big {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: #2c3e50;
}

.hero-accent {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  background: linear-gradient(135deg, #ec407a, #ab47bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: #555;
  margin: 20px 0;
}

.tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #777;
  max-width: 600px;
  margin: 15px auto 30px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.primary-btn, .ghost-btn {
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.primary-btn {
  background: linear-gradient(135deg, #ec407a, #ab47bc);
  color: white;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(236, 64, 122, 0.3);
}

.ghost-btn {
  background: transparent;
  border: 2px solid #ec407a;
  color: #ec407a;
}

.ghost-btn:hover {
  background: #ec407a;
  color: white;
}

.arrow {
  margin-top: 40px;
  font-size: 2rem;
  color: #ec407a;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Main Container - CENTER EVERYTHING */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* About Me Section - TWO COLUMN CENTERED LAYOUT */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.about-left {
  padding-right: 20px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #2c3e50;
  margin-bottom: 30px;
}

.about-left p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
}

.about-right {
  display: flex;
  justify-content: center;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 600px;
}

.about-card {
  background: linear-gradient(135deg, #ec8db4, #d87caf);
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(236, 64, 122, 0.3);
}

.about-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 15px;
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.about-card p {
  font-size: 0.95rem;
  opacity: 0.95;
  line-height: 1.5;
}

/* Skills Section */
.skills-section {
  padding: 60px 20px;
  text-align: center;
}

.skills-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.skill-badge {
  background: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  color: #ec407a;
  border: 2px solid #ec407a;
  transition: all 0.3s ease;
}

.skill-badge:hover {
  background: #ec407a;
  color: white;
  transform: scale(1.05);
}

/* Featured Projects */
.featured-wrapper {
  padding: 60px 20px;
  text-align: center;
}

.section-subtitle {
  color: #777;
  font-size: 1.1rem;
  margin-top: 10px;
  margin-bottom: 40px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.featured-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: left;
}

.featured-card:hover {
  transform: translateY(-10px);
}

.featured-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 20px;
}

.featured-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.featured-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.featured-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.featured-tags span {
  background: #fce4ec;
  color: #ec407a;
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Experience & Education */
.exp-edu-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 60px 20px;
}

.exp-block, .edu-block {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.minor-text {
  color: #999;
  font-size: 0.95rem;
}

/* Certificates */
.certs-wrapper {
  padding: 60px 20px;
  text-align: center;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.cert-card {
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-5px);
}

.cert-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.cert-card h3 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.cert-date {
  color: #ec407a;
  font-weight: 600;
}

/* Contact Section */
.contact-wrapper {
  padding: 60px 20px;
  text-align: center;
}

.contact-card {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 40px auto;
}

.contact-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 20px;
}

.contact-card a {
  color: #ec407a;
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
}

.footer-emoji {
  color: #ec407a;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
}




