/***************************************************************
*
* BODY
*
****************************************************************/

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh; /* Full height of the viewport */
	font-family: 'Poppins', sans-serif;
}

main {
	flex: 1; /* Take up the available space */
}

/***************************************************************
*
* NAVIGATION
*
****************************************************************/

nav
{

}

.nav-link
{
	font-weight: 600;
}

.nav-link:hover
{
	color: #95c63f;
}

/***************************************************************
*
* LINKS
*
****************************************************************/

p, li
{
	color: #676767;
}

p strong
{
	color: #000000;
}

a
{
	color: #95c63f;
	text-decoration: none;
}

/***************************************************************
*
* TESTIMONIALS
*
****************************************************************/

.testimonial-container {
  position: relative;
}

.testimonial {
  display: none;             /* hide by default */
  padding: 40px;
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.testimonial.active {
  display: block;            /* show only active testimonial */
  animation: fadein 1s;      /* optional fade effect */
}

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Big speech bubble tail at bottom-right */
.testimonial::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 50px;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-top-color: #fff;
}

.testimonial p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #333;
}

.testimonial span {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  color: #555;
  text-align: right;
}

/***************************************************************
*
* FORMS
*
****************************************************************/

form .form-control
{
	background-color: #f5f5f5; /* Light grey background */
	border: 2px solid #f5f5f5; /* No border */
	padding: 0.75rem 1rem; /* Larger padding */
	font-size: 1.1rem; /* Slightly larger font size */
	border-radius: 0.25rem; /* Optional: Rounded corners */
}

/* Remove focus box-shadow and slightly darker background when focused */
form .form-control:focus
{
	box-shadow: none; /* Remove focus shadow */
	background-color: #f5f5f5; /* Light grey background */
	border: 2px solid #000000; /* No border */
}

/***************************************************************
*
* BUTTONS
*
****************************************************************/

.btn-primary
{
	background-color: #95c63f;
	color: #ffffff;
	border: none;
}

.btn-primary:hover
{
	background-color: #666666;
	color: #ffffff;
}

.btn-light
{
	background-color: #ffffff;
	color: #676767;
}

.btn-light:hover
{
	background-color: #f7f7f7;
	color: #676767;
}

/***************************************************************
*
* ICONS
*
****************************************************************/

.fa-star
{
	color: #95c63f;
}

#technologies i
{
	font-size:2em;
	margin-right:20px;
}

#social i
{
	font-size:3em;
}

#social a
{
	margin-right:20px;
	color: #95c63f !important;
}

#social a:last-child
{
	margin-right: 0;
}

#social a:hover
{
	color: #000000 !important;
}

/***************************************************************
*
* HOME PANELS
*
****************************************************************/

#homePanel1 {
	background-color: #95c63f;
	color: #ffffff;
	position: relative; /* Allows absolute positioning of the pseudo-element */
	overflow: hidden; /* Ensures the @ symbol doesn't overflow the div */
}

#homePanel1::before {
	content: "@";
	position: absolute;
	top: 30%;
	left: 90%;
	transform: translate(-50%, -50%);
	font-size: 1800px; /* Adjust size as needed */
	color: rgba(255, 255, 255, 0.1); /* White with opacity */
	font-weight: bold;
	z-index: 0; /* Keeps the symbol in the background */
	pointer-events: none; /* Prevents interaction with the symbol */
	font-family: Arial, sans-serif; /* Ensures clear display */
}

#homePanel1 li
{
	color: #ffffff;
}

#homePanel2
{
	background-color: #fbfaf6;
	color: #000000;
}

#homePanel3
{
	background-color: #ffffff;
	color: #000000;
}

/***************************************************************
*
* INTRO PANEL
*
****************************************************************/

#introPanel
{
	background-color: #f7f7f7;
}

/***************************************************************
*
* PORTFOLIO PANELS
*
****************************************************************/

.panelPortfolio:nth-of-type(odd)
{
  background-color: #ffffff;
}

.panelPortfolio:nth-of-type(even)
{
  background-color: #f7f7f7;
}

/***************************************************************
*
* PAGE HEADER
*
****************************************************************/

#pageHeader
{
	background-color: #95c63f;
}

#pageHeader p
{
	color: #ffffff;
}

/***************************************************************
*
* CARDS
*
****************************************************************/

.homePageCard
{
	height: 320px;
	padding: 20px 20px 20px 20px;
	margin: 0 0 20px 0;
	background-color: #fbfaf6;
	border: 1px solid #95c63f;
}

.homePageCard p
{
	color: #000000;
}

.homePageCard i
{
	font-size: 3rem;
	margin: 0 0 20px 0;
	color: #95c63f;
}

/***************************************************************
*
* FOOTER
*
****************************************************************/

.footer
{
	background-color: #272727;
}

.footer p
{
	color: #ffffff;
	font-size:0.9em;
}

.footer a
{
	color:#ffffff;
	text-decoration: none;
}