/* Department CSS Document */
/*For mobile first adaptive design place styles for mobile and up in the mobile and up area.
Place styles for tablet and up inside the media query in the tablet and up area.
Place styles for desktop only inside the media query in the desktop only area.

For questions or media query training contact Web Development Services.
*/
/* ====================== Mobile and Up ========================== */

/* START ---------------------------- PSB Page ---------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Pirata+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Pirata+One&display=swap');

.page-header {
	border-bottom: none;
}

.pirata-one {
  font-family: "Pirata One", system-ui;
  font-weight: 400;
  font-style: normal;
}

.pt-serif {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: normal;
}

.paper-bg {
	background-color: #fffae7;
}

.paper-text {
	color: #fffae7;
}

.gold-button {
	background-color: #091a0d; /* Dark green button background */
    color: white;
    padding: 10px 25px;
	margin: 10px 0px;
    border-radius: 50px;
    border: 4px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: border-box;
    background-image: 
      linear-gradient(#0d2d1d, #0d2d1d), /* inner fill */
      linear-gradient(to right, #d4af37, #f7e98e, #d4af37); /* gold border */
    background-clip: padding-box, border-box;
    transition: all 0.3s ease;
	text-decoration: none;
	width: 50px;
}

.gold-button:hover {
	color: #3f5d40
	background-color: linear-gradient(to top right, #d4af37, #f7e98e, #d4af37); /* gold border */
}

gold-gradient-text{
	background-color: linear-gradient(to top right, #d4af37, #f7e98e, #d4af37);
}

.light-bg {
	background-color: #3f5d40;
}

.dark-bg {
	background-color: #15301b;
}

h1 {
	color: #fffae7;
	font-size: 50px;
}

.flower-divider {
	width: 75%;
}





/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	
/* START ---------------------------- PSB Page ---------------------------- */

	.flower-divider {
		width: 50%;
	}
	
}
/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {

	

	}

	/*end media query*/
	/*End landscape tablet and up styles*/
	/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
	@media only screen and (min-width: 1200px) {
		


	}

	/*end media query*/
	/*End desktop only styles*/
	/*END OF DOCUMENT*/
