
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap'); */

:root {
  --primary: #1e40af;
  --primary-dark: #1e3a8a;
  --accent: #00bcd4;
  --background: #0f172a;
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --card-bg: #1e293b;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--text-light);
  line-height: 1.6;
}

.navbar {
  background-color: var(--primary);
  font-size: 1.25rem;
}

.navbar-brand, .nav-link {
  color: var(--text-light) !important;
  font-weight: 600;
}

.hero {
  background-color: var(--card-bg);
  padding: 2rem;
  color: var(--text-light);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero p {
  color: var(--accent);
  font-weight: 500;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.card {
  background-color: var(--card-bg);
  border: none;
  border-radius: 0.5rem;
  color: var(--text-light);
}

#headshot {
  max-width: 200px;
  height: auto;
  border: 4px solid var(--accent);
}

.btn {
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: scale(1.03);
  box-shadow: 0 0 10px var(--accent);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p, .navbar-brand {
    font-size: 1rem;
  }

  #headshot {
    max-width: 150px;
  }

  h2 {
    font-size: 1.5rem;
  }

  .btn {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.5rem;
  }

  .card {
    padding: 1rem;
  }
}



/* 

.main_cont{
    margin-left: 5px;
}

#job_title{
    margin-left: 27%;
    margin-top: 5%;
    font-family: "Special Gothic Expanded One", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: aliceblue;
}

#headshot{
    border-radius: 50%;
    width: 360px;
    height: 360px;
    margin-left: 37%;
    margin-top: 1%;
}

#right-nav{
    margin-left: 80%;
    font-size: larger;
}

.btn{
    position: absolute;
}

#Networking{
    top: 40%;
    left: 28%;
}

#Ethical-Hacking{
    top: 50%;
    left: 25%;
}

#Certificates{
    top: 60%;
    left: 28%;
}
#Security{

    top: 40%;
    left: 62%;
}
#Programming{
    top: 50%;
    left: 63%;
}

#Projects{
    top: 60%;
    left: 62%;
}


} */

