@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Poppins:wght@300;400;500&display=swap');

:root{
  --cream: #f5ebe0;
  --brown: #6f4e37;
  --dark-brown: #3e2c23;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
  background:var(--bg-main);
  color:var(--dark-brown);
}

html{
  scroll-behavior:smooth;
}

/* NAVBAR */
.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:80px;
  display:flex;
  align-items:center;
  padding:0 8%;
  background:var(--bg-nav);
  border-bottom:1px solid rgba(0,0,0,0.05);
  z-index:9999;
}

.logo{
  font-family:'Playfair Display', serif;
  font-size:22px;
  margin-right:40px;
}

.navbar nav{
  display:flex;
  gap:25px;
}

.navbar nav a{
  text-decoration:none;
  color:var(--dark-brown);
  font-weight:500;
  padding:8px 16px;
  border-radius:15px;
  transition:0.3s;
}

.navbar nav a:hover{
  background:#e6d5c3;
}

.navbar nav a.active{
  background:var(--brown);
  color:white;
}

/* SECTION */
section{
  padding:120px 8%;
  min-height:100vh;
  scroll-margin-top:100px;
}

/* HERO */
.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
  margin-top:80px;
}

.hero-left{
  flex:1;
}

.hero-right{
  flex:1;
  display:flex;
  justify-content:center;
}

.hero-right img{
  width:280px;
  border-radius:20px;
  box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.hero h1{
  font-family:'Playfair Display', serif;
  font-size:42px;
  margin-bottom:20px;
}

.hero span{
  color:var(--brown);
}

.tagline{
  margin-bottom:25px;
  color:#555;
}

.hero-buttons a{
  margin-right:10px;
}

/* BUTTON */
.btn{
  padding:10px 20px;
  background:var(--brown);
  color:white;
  text-decoration:none;
  border-radius:8px;
}

.btn-outline{
  padding:10px 20px;
  border:2px solid var(--brown);
  color:var(--brown);
  border-radius:8px;
  text-decoration:none;
}

/* ABOUT */
.about{
  display:flex;
  justify-content:space-between;
  gap:60px;
}

.about-left{
  width:55%;
}

.about-right{
  width:40%;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.about-card{
  background:white;
  padding:20px;
  border-radius:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.3s;
}

.about-card:hover{
  transform:translateY(-5px);
}
:root{
  --bg-main: #fdfaf6;
  --bg-nav: #f6eee6;
  --brown: #6f4e37;
  --dark-brown: #3e2c23;
}
/* PROJECT */
.section-desc{
  color:#666;
  margin-bottom:30px;
}

.filter-buttons{
  margin-bottom:40px;
}

.filter-buttons button{
  padding:8px 18px;
  border:none;
  background:#e6d5c3;
  border-radius:20px;
  margin-right:10px;
  cursor:pointer;
  transition:0.3s;
}

.filter-buttons button:hover{
  background:#6f4e37;
  color:white;
}

.project-container{
  display:flex;
  gap:30px;
  flex-wrap:wrap;
}

.project-card{
  background:white;
  padding:25px;
  border-radius:20px;
  width:300px;
  box-shadow:0 15px 40px rgba(0,0,0,0.05);
  transition:0.3s;
  position:relative;
}

.project-card:hover{
  transform:translateY(-8px);
}

.badge{
  position:absolute;
  top:15px;
  right:15px;
  padding:5px 12px;
  border-radius:12px;
  font-size:12px;
  color:white;
}

.completed{
  background:#4CAF50;
}

.ongoing{
  background:#FF9800;
}

.learned{
  margin-top:15px;
  font-size:14px;
}

.learned ul{
  padding-left:18px;
}
.mini-stats{
  display:flex;
  justify-content:center;
  gap:60px;
  margin-top:80px;
  text-align:center;
}

.stat-box h3{
  font-size:36px;
  color:#6f4e37;
  margin-bottom:5px;
}

.stat-box p{
  color:#555;
}