
/* Apply styles to all htmls */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-wrap: balance;
  
}


/* :root {
  --card-bg: rgba(255, 255, 255, 0.15);
  --card-blur: blur(1px);
  --border-color: rgba(255, 255, 255, 0.25);
} */

/*------------------ index.html ------------------  */

@font-face {
  font-family: 'Caveat';
  src: url('fonts/Caveat-Regular.ttf') format('truetype');
}

body {
  font-family: 'Caveat';
  /* background-color: #ec31b431; */
  /* background-image: url("images/pink_floral_main_700x.png"); */
  /* background: linear-gradient(to bottom right, #8c358f, #74c9df);
  background: linear-gradient(to bottom right, #f584c6,  #74c9df); */
  /* background: linear-gradient(to bottom right, #ffb2e0 , #f897d0,  #74c9df); */
  /* background: linear-gradient(to bottom right, #ffb2e0 , #8ee1ec,  #df74a1); */
  background: linear-gradient(to bottom right, #ffb2e0 , #df74a1, #8ee1ec,  #df74a1);
  padding: 2rem;
}

/* Top navigation buttons */
.navbar {
  margin: 0 auto; 
  display: flex;
  justify-content: center;
  /* text-align: center; */
  

  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 540px;
  border-radius: 20px;
  /* border-radius: 9999px; */
  padding: 10px;

  /* Transparency */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  
  /* Transparency w/ blur*/
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, 0.25);

}


button {
  font-family: 'Caveat';
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  border-radius: 9999px;
  background-color: #333;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;

  /* Transparency */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

button:hover {
  background-color: #555;

  /* Transparency */
  background-color: #55555500;
}

/* Paper-style panel */
.paper-panel {
  max-width: 800px;
  margin: 0 auto;
  height: 400vh;
  background-color: #fff7fc;
  /* background-image: url("images/pink_floral_main_700x.png"); */
  border: 1px solid #008cff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

/* Hover over panel shadow */
.paper-panel:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

video {
  position: absolute;
  /*top: 200px;       /* fixed distance from top */
  left: 640px;      /* fixed distance from left */
  width: 640px;    /* fixed width */
  height: 640px;   /* fixed height */
  pointer-events: none; */

  top: 0;
  left: 0;
  max-width: 100vw;
  max-height: 100vh;
  width: auto;     /* maintain aspect ratio */
  height: auto;
  pointer-events: none;
}

img {
  border-radius: 8px;
}


/* This is my home page 🌟 Animation Script */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-animate {

  /* Set Spacing */
  margin-top: 25rem; 
  text-align: center;

  /* This is my home page 🌟 Animation args */
  opacity: 0;
  animation: fadeIn 3s ease-out forwards;
  animation-delay: 1s;
}


/*------------------ About.html ------------------  */
.profile-img {
  float: left;
  width: 250px;
  height: 300px;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  object-fit: cover;
}

/*------------------ Contact.html ------------------  */
.contact-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 300px;
  margin: 2rem auto;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #fff;
  border-radius: 16px;
  padding: 1rem 5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
}

.contact-card img {
  width: 32px;
  height: 32px;
}

/*------------------ Projects.html ------------------  */

.wrapper {
  text-align: center;
}

.button {
  position: center;
  /* height: 100px;
  width: 100px; */
  /* top: 50%; */
  color: black;



  font-family: 'Caveat';
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  border-radius: 9999px;
  background-color: #333;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;

  /* Transparency */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

  /* Transparency w/ blur*/
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/*------------------ software.html ------------------  */
