* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Georgia", serif;
  color: #222;
}

.hero-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  min-height: calc(100vh - 120px);
}
.hero-image img {
  max-height: 95vh;
  max-width: 420px;
  object-fit: contain;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  height: calc(100vh - 100px);
  transition: transform 0.4s ease;
}
.hero-content:hover{
  transform: translateY(-4px);
}
.hero-content h1,
.hero-content h2 {
  transition: transform 0.4s ease, text-shadow 0.4s ease;
}
.hero-content:hover h1 {
  transform: scale(1.02);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.hero-content:hover h2 {
  transform: scale(1.015);
  text-shadow: 0 6px 18px rgba(165, 42, 42, 0.25);
}

.hero-content h1{
    font-size: 60px;
    font-weight: 500;
    margin-bottom: 20px;
}
.hero-content h2{
    font-size: 50px;
    font-weight: 400;
    color: brown;
}


.top-bar {
  width: 100%;
  padding: 10px 0;
  margin-top: 20px;
}
.nav-container{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-right{
  display: flex;
  align-items: center;
  gap: 28px;
}

.social-links {
  display: flex;
  gap: 20px;
}
.social-links img:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.social-links img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  background: white;
  padding: 6px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  font-size: 25px;
  font-weight: 500;
  color: #333;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: brown;
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: brown;
}
.nav-links a:hover::after {
  width: 100%;
}

.resume-btn {
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 24px;
  background: white;
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.resume-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


section {
  height: 100vh;
}

/* About Section */
.about-section {
  padding: 90px 75px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-intro h2 {
  font-size: 30px;
}

.about-intro p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 900px;
  color: #444;
}
.highlight {
  color: brown;
  font-weight: 500;
  background: rgba(165, 42, 42, 0.08);
  padding: 2px 4px;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}
.highlight:hover {
  background: rgba(165, 42, 42, 0.18);
  color: #7a1f1f;
  transform: translateY(-1px);
}


.about-divider {
  margin: 150px 0;
}

/* Columns */
.about-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: relative;
  padding-left: 24px;
}
.about-column {
  transition: transform 0.3s ease;
}
.about-column:hover {
  transform: translateY(-4px);
}

.about-column h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  margin-bottom: 22px;
  letter-spacing: 1px;
  color: #222;
}
.about-column h3::after {
  content: "";
  display: block;
  height: 2px;
  background: brown;
  margin-top: 8px;
}
.about-column h3 i{
  font-size: 20px;
  color: brown;
}
.about-column .item {
  margin-bottom: 26px;
}

.about-column h4 {
  font-size: 18px;
  font-weight: 600;
}

.about-column span {
  font-size: 15px;
  color: #666;
}

.about-column p {
  font-size: 15px;
  color: #444;
  margin-top: 4px;
}

.about-section {
  position: relative;
  overflow: hidden;
}

.about-bg-text {
  position: absolute;
  top: 39%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-size: 160px;
  font-weight: 700;
  letter-spacing: 18px;
  text-transform: uppercase;

  color: transparent;
  -webkit-text-stroke: 2px brown;
  text-shadow: 2px brown;

  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}

.about-section > *:not(.about-bg-text) {
  position: relative;
  z-index: 1;
}


