/* profile.css - Profile page specific styles */

/* Profile Header Section */
.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 8%;
  background-color: #ECEFF1;
  flex-wrap: wrap;
}

.profile-header .profile-intro {
  max-width: 550px;
}

.profile-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #37474F;
}

.profile-header p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #37474F;
}

.profile-header .button-group {
  display: flex;
  gap: 1rem;
}

.profile-header .button-group button {
  font-family: 'Roboto Mono', monospace;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.profile-header .button-group .primary-btn {
  background-color: #536DFE;
  color: white;
}

.profile-header .button-group .primary-btn:hover {
  background-color: #00E5FF;
}

.profile-header .button-group .secondary-btn {
  background-color: transparent;
  border: 2px solid #536DFE;
  color: #536DFE;
}

.profile-header .button-group .secondary-btn:hover {
  background-color: #00E5FF;
  color: white;
}

.profile-header img {
  max-width: 350px;
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Tagline Section */
.tagline {
  padding: 3rem 8%;
  background-color: #ECEFF1;
  text-align: center;
}

.tagline h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: #536DFE;
}

/* About Section */
.about {
  padding: 4rem 8%;
  background-color: white;
}

.about h2 {
  margin-bottom: 1rem;
}

.about p {
  line-height: 1.6;
  max-width: 800px;
}

/* Skills Section */
.skills-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 4rem 8%;
  background-color: #ECEFF1;
}

.skill-category {
  background-color: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.skill-category h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #536DFE;
}

/* Profile-specific logo styling */
.logo {
  color: #ECEFF1; 
}