/*
Author: Mason Fiorini
Date: 2/8/2026
File Name: styles.css
*/

/* CSS Reset */
body, header, nav, main, footer, img, h1 {
	margin: 0;
	padding: 0;
	border: 0;
	background: #3E4040;
	color: #FFFFFF;
}




/* Style rule for images */
img {
	max-width: 100%;
	display: block;
	background: 0;
}
.imgMain{
	margin-right: 260px;
	height: 100px;
	width: 100px;
}
.img_pfp{
	border: 2px solid #3f444d;
	border-radius: 50%;
	padding: 1px;
	width: 50px;
	height: 50px;
	cursor: pointer;
}




/* Style rules for header content */
header {
	float: right;
	font-size: 0.1px;
	color: 0;
	background: none;
}

header ul {
	list-style-type: none;
	margin: 0;
	text-align: top;
}

header li {
	display: inline-block;
	height: 30px;
	font-size: 0em;
}

header li a{

}


header h1 {
	
}




/* Style rules for navigation area */
nav {
	background: #282b2e;
	background: linear-gradient(358deg,rgba(40, 43, 46, 1) 0%, rgba(62, 64, 64, 1) 100%, rgba(77, 77, 73, 1) 97%);
}

nav ul {
	list-style-type: none;
	margin: 0;
	text-align: center;

}

nav ul a{

}

nav li {
	display: inline-block;
	height: 80px;
	font-size: 1.75em;

}

nav li a {
	display: block;
	color: #FFFFFF;
	text-align: center;
	padding: 0.5em 1em;
	text-decoration: none;

}




/* Style rules for main content */
main {
	text-align: center;
	padding: 50px;
	overflow: auto;
	font-family: Verdana, Arial, sans-serif;
}

main p {
	
}

.action {
	font-size: 1em;
	color: #fa4646;
	font-weight: bold;
}

#piano, #guitar, #violin {
	width: 29%;
	float: left;
	margin: 0 2%;
}

#info {
	clear: left;
	background-color: #c0caf7;
	padding: 1% 2%;
}

#contact {
	
}

#contact a {
	color: #4645a8;
	text-decoration: none;
	font-weight: bold;
}

.map {
	border: 5px solid #373684;
}

/* Style rules for footer content */
footer {
	text-align: center;
	font-size: 14px;
	clear: left;
}

footer a {
	font-size: 12px;
	color: #d3d3d3;
	text-decoration: none;
}


/* gradient text for "reasonable" */
.gradient-text {
  /* 1. Define the gradient as a background image */
  background-image: linear-gradient(to right, black, yellow, black);

  /* 2. Clip the background to the text's shape */
  -webkit-background-clip: text;
  background-clip: text;

  /* 3. Make the text transparent so the background shows through */
  -webkit-text-fill-color: transparent;
  color: transparent; /* Fallback for browsers that don't support the above */

  /* Optional: Enhance the text appearance */
  font-size: 30px;
  font-weight: bold;
}

.live-gradient-text {
  /* Set a large font size for better effect */
  font-size: 30px;
  font-family: sans-serif;
  
  /* 
    Apply a background gradient. 
    Set background-size larger than 100% to allow for movement.
  */
  background-image: linear-gradient(
    to right, 
    white,
	white,
    #F2C555, 
    white,
	white
  );
  background-size: 200% auto; /* 200% width, auto height */

  /* Clip the background to the text shape */
  background-clip: text;
  -webkit-background-clip: text; /* Vendor prefix for compatibility */

  /* Make the text color transparent so the background shows through */
  color: transparent;
  -webkit-text-fill-color: transparent; /* Vendor prefix for compatibility */

  /* Ensure the element behaves as a block for correct gradient sizing */
  display: inline-block; /* */
}

@keyframes gradient-animation {
  0% {
    background-position: 0% center; /* Start position: left edge */
  }
  100% {
    background-position: 200% center; /* End position: two widths to the right */
  }
}

.live-gradient-text {
  /* ... (previous styles) ... */
  
  /* Apply the animation */
  animation: gradient-animation 3s linear infinite; /* 3s duration, linear timing, infinite loop */
}


/* Style rules for button content */

button{
	size: 10px;
	font-size:24px;
	background-color:#b8b6b4;
	margin: 10px;
	padding: 0 20px 0 20px;
	margin-right: 20px;
	display: inline-block;

	
	transition: background-color 0.3s ease;
	
}
button:hover{
	background-color: #B9D4F0;
	cursor: pointer;
}
