
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  overflow-x: hidden;
}


.custom-navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  transition: 0.3s ease;
}

.custom-navbar .navbar-brand {
  font-weight: 700;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #ff9ec3, #c33764);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.custom-navbar .nav-link {
  color: #333 !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: #c33764 !important;
}

.custom-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #ff9ec3, #c33764);
  transition: 0.3s ease;
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
  width: 80%;
}


.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #fc5998, #ffd4ec);
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../assets/hannah2.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

.hero-section .text-center {
  position: relative;
  z-index: 2;
}

.hero-title {
  letter-spacing: 1.5px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  
}


.hero-text {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}

.hero-btn-glass {
  background: white;
  color: #c33764;
  border: none;
  border-radius: 50px;
  padding: 12px 35px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(195, 55, 100, 0.2);
  transition: 0.3s ease;
}

.hero-btn-glass:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(195, 55, 100, 0.3);
  background: #c33764;
  color: white;
}


.about-me-section {
  background: white;
  padding: 80px 0;
}

.about-me-section h2 {
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.about-me-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ff9ec3, #c33764);
  border-radius: 2px;
}

img.profile-pic {
  width: 100%;
  max-width: 375px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.about-me-section p {
  line-height: 1.8;
  color: #555;
  font-size: 1.05rem;
}


.skills-section {
  background: linear-gradient(135deg, #ffe9f5, #fff5f9);
  padding: 80px 0;
}

.skills-section h2 {
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.skills-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ff9ec3, #c33764);
  border-radius: 2px;
}

.skill-card {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  height: 100%;
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(195, 55, 100, 0.15);
}

.skill-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.skill-card p {
  color: #6c757d;
  margin: 0;
}


.projects-section {
  background: white;
  padding: 80px 0;
}

.projects-section h2 {
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.projects-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ff9ec3, #c33764);
  border-radius: 2px;
}

.projects-section .card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  height: 100%;
}

.projects-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(195, 55, 100, 0.15);
}

.projects-section .card-img-top {
  height: 220px;
  object-fit: cover;
}

.projects-section .card-body {
  padding: 25px;
}

.projects-section .card-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.projects-section .card-text {
  color: #6c757d;
  line-height: 1.6;
}


.contact-section {
  background: linear-gradient(135deg, #ff9ec3, #ffe9f5);
  padding: 80px 0;
}

.contact-card {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-card h2 {
  font-weight: 700;
  color: #333;
}

.contact-card p {
  font-size: 1.05rem;
}

.contact-btn {
  border-radius: 50px;
  padding: 12px 30px;
  transition: 0.3s ease;
  background: linear-gradient(135deg, #ff9ec3, #c33764);
  border: none;
  color: white;
  font-weight: 600;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(195, 55, 100, 0.3);
  background: linear-gradient(135deg, #c33764, #ff9ec3);
}

