/* Add CSS styles for your web site here and use them in index.html. */
.amber{
 color:rgb(255, 255, 87);
 font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
 font-size: 65pt;
}
.fading-text {
  background-image: linear-gradient(to right, purple, violet, blue, white); /* Multi-color gradient */
  -webkit-background-clip: text; /* Clip the background to the text shape */
  background-clip: text;
  -webkit-text-fill-color: transparent; /* Make the text transparent to show the clipped background */
  color: transparent; /* Make the text transparent for other browsers */
}

body {
    
  background-image: url('Images/Comic-stars-background-purple.jpg');
  background-size: cover; /* Scale the image to cover the entire element */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  background-attachment: fixed; /* Keep the image fixed during scrolling */
  width: 100%; /* Ensure the element takes up the full width */
  height: 100%; /* Ensure the element takes up the full height */
  color: whitesmoke;
  text-align: center;
  font-family: sans-serif;
}
/* class for toggle light */
.light-mode {
  background-image: url('Images/toggleLightPic.png');
  color:black;
}



body, html { 
  margin: 0;
  padding: 0;
}

.footer{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  
  background-color: gray;
}
h2,h3,h4{
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}

h1{
  font-style: italic;
  font-family: 'Orbitron';
  text-align: center;
  color:rgb(255, 255, 87);
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 65pt;
  margin-top: 100px;
  animation: holoGlow 6s ease-in-out infinite;
  
}

@keyframes holoGlow {
  0% {
    background-position: 0% 50%;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #cc00ff, 0 0 20px #7b51ee;
  }
  50% {
    background-position: 100% 50%;
    text-shadow: 0 0 10px #8104ff, 0 0 20px #cc00ff, 0 0 30px #ffffff;
  }
  100% {
    background-position: 0% 50%;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #cc00ff, 0 0 20px #7b51ee;
  }
}

.Space-note {
  position: relative;
  background: rgba(199, 180, 180, 0.10); /* light cyan tint */
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  padding: 20px 25px;
  max-width: 600px;
  margin: 100px auto 1000px auto;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  text-align: center;
  backdrop-filter: blur(6px);
  box-shadow:
    0 0 8px rgba(0, 183, 255, 0),
    0 0 20px rgba(63, 0, 235, 0.3),
    inset 0 0 10px rgba(0, 0, 0, 0.247);
  animation: flicker 3s infinite;
  z-index: 1;
}





@keyframes flicker {
  0%, 100% { opacity: 1; }
  45% { opacity: 0.97; }
  50% { opacity: 0.93; }
  55% { opacity: 0.98; }
}

#IMG1{
    display: flex;
    justify-content: center; /* center horizontally */
    align-items: center;     /* center vertically */
    flex-direction: column;  /* optional, if you want vertical stacking */
    
    
    width: fit-content;      /* shrink-wrap the content */
    margin: auto;  
    
}
#IMG1 img {
    width: 30%;
    height: 30%; 
    display: block; 
    max-width: 100%;
    height: auto;

    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    padding: 0;
    margin-bottom: 30px;
    
}
/*About------------------*/
#about-ID{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-size: 24px;
  

}
#about-ID img{
    
  width: 25%;
  height: 25%; 

  border-radius: 12px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
  padding: 0;
     

}
#about-ID p{
  display: block;
  width: 300px;
}

/*-----Recommendations-----*/
/* display non for the time being but originally flex */
#Recommendations{
  display: flex;
  text-align: center;
  justify-content: center;
}
#recs-box{
  display: none;
}


/* -----Table----- */
/* Display  = none (hiding event table for now) */
#event-table{
  display: none;
  text-align: center;
}

table{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
#more-ID{
    text-align: center;
    
}
#more-ID li{
    list-style: none;
    
}






/* Suggestion Box Styling */
.suggestion-box {
  background: rgba(0, 0, 0, 0.7); /* semi-transparent black */
  max-width: 800px;
  margin: 100px auto;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  
}

.suggestion-box h2 {
  margin-top: 0;
  text-align: center;
  font-size: 28px;
  color: #7b51ee;
}

.suggestion-box p {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}



.suggestion-box textarea {
  width: 100%;
  padding: 10px;
  box-sizing: border-box; /* Ensures padding is included in width */
  border: none;
  border-radius: 8px;
  resize: vertical;
  font-size: 16px;
  background-color: lightgray;
}

.suggestion-box button {
  margin-top: 15px;
  width: 100%;
  padding: 12px;
  box-sizing: border-box; /* Ensures padding is included in width */
  background-color: #6e45e2;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  
}

.suggestion-box button:hover {
  background-color: #5a36bd;
}
/*---------------Main Page End---------------*/


/*** Navigation bar (navbar) ***/
.navbar{
  display: flex;
  justify-content: center; /* horizontally center the contents */
  
}

.navbar ul {
  display: flex;
  z-index: 1000; /* Ensures the navbar is on top of other elements */
  list-style: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 50%; /* For centering  */
  transform: translateX(-50%); /* For centering  */
  margin-top: 0px;
  padding: 0px;
  
    
}

.navbar ul li {

  background-color: #6e45e2;
  border: solid 3px #2D1E2F;
}

.navbar ul li a {
  /* color: #5a36bd; */
  margin: 0px;
  padding: 10px;
  background-color: #6e45e2;
  color: white;
  display: block;
  text-decoration: none;
    
    
}
#navbutton{
  margin: 0px;
  padding: 12px;
  background-color: #6e45e2;
  color: white;
  display: block;
  text-decoration: none;

 cursor: pointer;

}
#navbutton:hover{
  color: yellow; 
}


.navbar ul li a:hover {
  color: yellow; 
}

.navbar ul li button {
  margin: 2px;
  padding: 0px;
  background-color: purple;
  color: white;
  display: block;
  border: none;


}





/* ----------Gallery page ---------- */
.gallery-row{
  /* originally flex*/
  display: none; 
  justify-content: center;
  border: solid 5px red;
  align-items: start;


}
.gallery-box{
  margin: 5px;
  border: 1px solid #ccc;
  float: left;
  width: 250px;

}
.gallery-box:hover {
  border: 1px solid #777;
}

div.gallery-box img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}


/*----------Contact page----------*/
.myHeadshot{
  border-radius: 20px;
  display: block;
  margin: auto;
  width: 10%;

  border: solid black 5px;
  border-radius: 10px;

  margin-top: 30px;
  

}

#underPic{
display: flex;
flex-direction: row;
justify-content: space-around;
/* border: 10px solid blue; */
width: 80%;
margin: auto;
margin-top: 30px;

}
#underPic div{
  width: 30%;
}
#underPic1{
  /* border: 10px solid red; */
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 0px;
  margin: 0px;
}
#underPic1 h2{
  padding: 0px;
  margin: 0px;
  
}
#underPic1 p{
  width: auto;
  margin: 30px 0px 0px 0px;
}

#underPic2{
  /* border: 10px solid yellow; */
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 0px;
  margin: 0px;

}
#underPic2 h2{
  padding: 0px;
  margin: 0px;
  
}
#underPic2 p{
  margin-bottom: 10px;
}

#underPic3{
  text-decoration: none;
  /* border: 10px solid green; */
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 0px;
  margin: 0px;
}
#underPic3 h2{
  padding: 0px;
  margin: 0px;
  
}
#underPic3 a{
  font-size: 20px;
  padding: 0px;
  margin-top: 20px;
  /* border: solid red 5px; */
  
}

.linkList{
  list-style-type: none;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 10px;
}.linkList li a{
  
  display: block;
  text-align: left;
  color: white;
  
}


.hobbyList{

  display: block; 
  margin: auto;
  
  margin-top: 30px;

}
.hobbyList li{
  text-align: left;
}

/* Light mode: links become black */
/* Only when body is light mode change the link list to black  */
body.light-mode .linkList a {
  color: black;
}

/* ---Contact input box--- */
#GITdiv{
  display: block;
  border: 5px solid black;
  border-radius: 8px;
  background-color: #6E45E2;
  margin: auto;
  margin-bottom: 100px;
  width: 20%;
  
  
}
#GetinTouch{
  
  display: flex;
  flex-direction: column;
  margin: auto;
  width: 85%;
  
}
label{
  margin-top: 10px;
  text-align: left;
}
input[type="submit"]{
  margin-top: 20px;
  margin-bottom: 20px;
  
}



















/*----------Events Page----------*/

/*--- Event Instances---*/
#event-1{
  border: lightgreen solid 10px;
  background-color: green;
  width: 80%;
  margin: auto;
  margin-top: 30px;
}
#event-2{
  border: blue solid 10px;
  background-color: rgb(39, 142, 189);
  width: 80%;
  margin: auto;
  margin-top: 30px;
}
#event-3{
  border: yellow solid 10px;
  background-color: orange;
  width: 80%;
  margin: auto;
  margin-top: 30px;
}

.eventInstances{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: auto;
  /* border: black solid 10px; */
  
}
.eventInstances img{
  margin: auto;
  margin-bottom: 20px;
  
}
.eventInstances div{
  width: 75%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: auto;
  /* border: rgb(255, 255, 255) solid 10px;
   */
}
.eventInstances img{
  width: 10%;

}
.pInstances{
  font-size: 20px;
  width: 25%;
  height: 25%;
  margin: auto;
  /* border: solid #5a36bd 10px; */

}
.eventDescription{
  
  width: 75%;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;

  text-align: left;
  /* border: solid 10px #5a36bd; */

}





/*--- Rsvp box---*/
#RSVP-box{
  display: flex;
  flex-direction: row;
  justify-content: center;

}
#RSVP-box li{
  text-align: left;

}
#RSVP-para{
  width: 40%;

}

#RSVP-event1{
  flex-direction: column;
  width: 15%;
}
#RSVP-event2{
  flex-direction: column;
  width: 15%;
}
#RSVP-event3{
  flex-direction: column;
  width: 15%;
}


#RSVP-div{
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: auto;
}


/* -----Modal----- */
.modal {
  display: none;
  align-items: center;
  justify-content: center;

  position: fixed;
  z-index:2; /*Modal appears above other elements (think z axis in calc 3 graphs)*/

  left: 0;
  top: 0;
  width: 100%;
  height: 100%;

  background-color: rgba(0,0,0,0.4);
}
.modal-container {
  padding: 30px;
  background-color: #6E45E2;
  border: 5px solid black;
}
#close-modal {
  position: relative;
  top: 10px;
  right: 0px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

/* Rocking animation */
@keyframes rock {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(-10deg); }
  50%  { transform: rotate(10deg); }
  75%  { transform: rotate(-10deg); }
  100% { transform: rotate(0deg); }
}

/* Apply the animation to the rocket */
#rocketShip {
  animation: rock 2s ease-in-out infinite;
  transform-origin: bottom center; /* Rock from the base */
  width: 100px; 
  display: block;
  margin: 0 auto;
}









