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

/* Body */
body {
  font-family: "Montserrat", Arial, sans-serif;
  color: #333;
  display: flex;           /* Sidebar and main content side by side */
  min-height: 100vh;       /* Make page fill the viewport height */
  background-color: #fafafa;
}

/* Sidebar */
.sidebar {
  width: 300px;
  background-color: #fff; /*#1f1f1f;*/  
  color: #1f1f1f;/* #fff;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

/* Profile Section in Sidebar */
.profile-section {
  text-align: center;
  margin-bottom: 60px;
}

.profile-pic {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #1f1f1f; /* #fff; */
  margin-bottom: 30px;
}

.profile-section h1 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.0rem;
  color: #ccc;
}

/* Social Icons */
.social-icons {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-icons li a img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* Nav Menu */
.nav-menu ul {
  list-style: none;
  margin: 10px 0;
  padding: 0;
  text-align: center;
}

.nav-menu ul li {
  margin: 20px 0;
}

.nav-menu ul li a {
  color: #1f1f1f; /* #fff; */
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.nav-menu ul li a:hover {
  color: #aaa;
}

/* Sidebar Footer */
.sidebar-footer {
  margin-top: auto;
  font-size: 0.8rem;
  text-align: center;
  color: #aaa;
  line-height: 1.4;
}

/* Main Content */
.main-content {
  flex: 1;
  position: relative;
  overflow-y: auto;        /* Scroll if content is longer than the viewport */
}

/* Hero Section */
.hero {
  position: relative;
  height: 60vh;            /* Adjust hero height */
  background: url('../images/background.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  text-align: center;
  color:  #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
}

/* Content Sections */
.content-section {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
