/* MAIN CSS */

:root {
	--brand-green: #389920;
	--brand-green-dark: #2a7517;
	--brand-green-light: #66d943;
	--accent-gold: #f0c419;
	--accent-gold-dark: #c99c10;
	--neutral-50: #f6f6f6;
	--neutral-200: #e6e6e6;
	--neutral-500: #818181;
	--neutral-700: #4a4a4a;
	--neutral-900: #303030;
	--shadow-card: 0 4px 16px rgba(0, 0, 0, 0.08);
	--shadow-card-hover: 0 12px 32px rgba(0, 0, 0, 0.18);
	--ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

body {
	font: 400 15px Lato, sans-serif;
	line-height: 1.8;
	color: #818181;
	/* background-image: url("tennis_court.jpg"); */
	/* background-color:rgba(165, 118, 30, 0.4); */
}
h2 {
	font-size: 26px;
	text-transform: uppercase;
	color: var(--neutral-900);
	font-weight: 700;
	letter-spacing: 1.5px;
	margin-bottom: 30px;
	padding-bottom: 16px;
	position: relative;
}
h2::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	margin: 16px auto 0;
	background: linear-gradient(90deg, var(--brand-green), var(--accent-gold));
	border-radius: 2px;
}
h4 {
	font-size: 19px;
	line-height: 1.375em;
	color: #303030;
	font-weight: 400;
	margin-bottom: 30px;
}  
.jumbotron {
	background-color: #389920;
	color: #fff;
	padding: 100px 25px;
	font-family: Montserrat, sans-serif;
}
.container-fluid {
	padding: 60px 50px;
}
.bg-grey {
	background-color: #f6f6f6;
}
.logo-small {
	color: #389920;
	font-size: 50px;
}
.logo {
	color: #389920;
	font-size: 200px;
}
.thumbnail {
	padding: 0 0 15px 0;
	border: none;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
	position: relative;
}
.thumbnail:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-card-hover);
}
.thumbnail::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 60%;
	height: 3px;
	background: linear-gradient(90deg, var(--brand-green), var(--accent-gold));
	transition: transform 0.35s var(--ease-out);
	transform-origin: center;
}
.thumbnail:hover::after {
	transform: translateX(-50%) scaleX(1);
}
.thumbnail img {
	width: 100%;
	height: 100%;
	margin-bottom: 10px;
	border-radius: 0;
}
.thumbnail p strong {
	color: var(--neutral-900);
	font-family: Montserrat, sans-serif;
	letter-spacing: 0.5px;
}
.carousel-control.right, .carousel-control.left {
	background-image: none;
	color: #389920;
}
.carousel-indicators li {
	border-color: #389920;
}
.carousel-indicators li.active {
	background-color: #389920;
}
.item h4 {
	font-size: 19px;
	line-height: 1.375em;
	font-weight: 400;
	font-style: italic;
	margin: 70px 0;
}
.item span {
	font-style: normal;
}
.panel {
	border: 1px solid var(--brand-green);
	border-radius: 10px !important;
	box-shadow: var(--shadow-card);
	transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
	background: #fff;
}
.panel:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-card-hover);
}

/* Featured (Most Popular) pricing card */
.panel-featured {
	border-color: var(--accent-gold);
	transform: scale(1.04);
	box-shadow: 0 14px 36px rgba(240, 196, 25, 0.25), var(--shadow-card);
	position: relative;
	z-index: 1;
}
.panel-featured:hover {
	transform: scale(1.04) translateY(-6px);
	box-shadow: 0 20px 48px rgba(240, 196, 25, 0.35), var(--shadow-card-hover);
}
.panel-featured .panel-heading {
	background-color: var(--accent-gold) !important;
	color: var(--neutral-900) !important;
}
.panel-featured .panel-footer .btn {
	background-color: var(--accent-gold);
	color: var(--neutral-900);
	font-weight: 700;
}
.panel-featured .panel-footer .btn:hover {
	background-color: var(--accent-gold-dark) !important;
	border-color: var(--accent-gold-dark);
	color: var(--neutral-900);
}
.popular-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent-gold);
	color: var(--neutral-900);
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 1.5px;
	padding: 6px 14px;
	border-radius: 999px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	z-index: 2;
}

.panel-footer .btn:hover {
	border: 1px solid var(--brand-green);
	background-color: #fff !important;
	color: var(--brand-green);
}
.panel-heading {
	color: #fff !important;
	background-color: var(--brand-green) !important;
	padding: 25px;
	border-bottom: 1px solid transparent;
	border-radius: 9px 9px 0 0;
}
.panel-heading h1 {
	font-size: 22px;
	letter-spacing: 1px;
	margin: 0;
}
.panel-footer {
	background-color: white !important;
	padding: 20px 15px;
	border-radius: 0 0 9px 9px;
}
.panel-footer h3 {
	font-size: 42px;
	font-weight: 900;
	color: var(--neutral-900);
	margin: 0;
}
.panel-footer h4 {
	color: #aaa;
	font-size: 14px;
	margin: 0 0 12px;
}
.panel-footer .btn {
	margin: 8px 0 0;
	background-color: var(--brand-green);
	color: #fff;
	font-weight: 600;
	letter-spacing: 1px;
	padding: 10px 30px;
	border-radius: 4px;
	transition: background-color 0.25s, color 0.25s, transform 0.2s;
}
.panel-footer .btn:active {
	transform: scale(0.97);
}
.navbar {
	margin-bottom: 0;
	background-color: #389920;
	z-index: 9999;
	border: 0;
	font-size: 12px !important;
	line-height: 1.42857143 !important;
	letter-spacing: 4px;
	border-radius: 0;
	font-family: Montserrat, sans-serif;
}
.navbar li a, .navbar .navbar-brand {
	color: #fff !important;
}
.navbar-nav li a:hover, .navbar-nav li.active a {
	color: #389920 !important;
	background-color: #fff !important;
}
.navbar-default .navbar-toggle {
	border-color: transparent;
	color: #fff !important;
}
footer .glyphicon {
	font-size: 20px;
	margin-bottom: 20px;
	color: #389920;
}
.slideanim {visibility:hidden;}
.slide {
	animation-name: slide;
	-webkit-animation-name: slide;
	animation-duration: 1s;
	-webkit-animation-duration: 1s;
	visibility: visible;
}
@keyframes slide {
  0% {
	opacity: 0;
	transform: translateY(70%);
  } 
  100% {
	opacity: 1;
	transform: translateY(0%);
  }
}
@-webkit-keyframes slide {
  0% {
	opacity: 0;
	-webkit-transform: translateY(70%);
  } 
  100% {
	opacity: 1;
	-webkit-transform: translateY(0%);
  }
}
@media screen and (max-width: 768px) {
  .col-sm-4 {
	text-align: center;
	margin: 25px 0;
  }
  .btn-lg {
	  width: 100%;
	  margin-bottom: 35px;
  }
}
@media screen and (max-width: 480px) {
  .logo {
	  font-size: 150px;
  }
}

/* INPUT CSS */
@import url('https://fonts.googleapis.com/css?family=Lato:100,400,900');

.my-form{
	font-family: "Lato";
	max-width: 400px;
	padding: 10px;
	margin: auto;
	border: 1px solid black;
}

/*1. add margin spacing for top & bottom: 20px */
.my-form-group{
	margin-top: 20px;
	margin-bottom: 20px;
}

/*This selector refers to ALL <input> */
input[type=text],
input[type=email]{
	-webkit-appearance: none; /* removes browser override style on mac */
	/*2. set the width to fill container: 100% */
	/*3. increase font size to: 1.5rem */
	/*4. increase height to: 2rem */
	width: 100%;
	font: 1.5rem;
	height: 2rem;
}

/*Select multiple selectors with a comma , */
/*input[type=text] selects <input type="text"> */
input[type=text], 
input[type=email]{
	/*5. remove existing border to: none*/
	/*6. create an underline effect by setting a new border-bottom to: 1px solid black*/
	border: none;
	border-bottom: 1px solid black;
}

/*input[type]:focus is a state of being used */
input[type=text]:focus, 
input[type=email]:focus{
	/*7. remove the default glow with outline:none */
	/*8. set the border and text color to: orangered*/
	outline: none;
	border-color: orangered;
	color: orangered;
}

/*submit button selector*/
input[type=submit]{
	/*9. increase the button height to: 3rem (double font size)*/
	/*10. remove the bezel with border:none*/
	/*11. set background color to: black and text to: white */
	height: 3rem;
	border: none;
	background-color: black;
	color: white;
}

/*hovering state, similar to a:hover */
input[type=submit]:hover{
	/*12. set background color to: orangered */
	background-color: orangered;
}

/*this optional style removes the yellow background of chrome's autofill*/
input[type]:-webkit-autofill {
	box-shadow: 0 0 0px 1000px white inset;
}

/* PARALLAX CSS */
/* @import url('https://fonts.googleapis.com/css?family=Lato:100,400,900'); */

.my-body{
	font-family: "Lato";
	margin: 0;
}
.my-container{
	font-size: 2rem;
	max-width: 600px;
	margin: auto;
	/*color: white;*/
}

/*1. set the height to: 80vh*/
/*2. add a brackground image: galexy_background.jpg*/
/*3. disable the image tiling using background-repeat*/
/*4. auto scale the background size*/
/*5. align the image background position*/
/*6. make a parallax effect by fixing the background-attachment*/
.my-parallax{
	height: 70vh;
	background-image: url("images/tennis_court.jpg");
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* Turn off parallax scrolling for tablets and phones. Increase the pixels if needed */
/* @media only screen and (max-device-width: 1024px) {
    .my-parallax {
        background-attachment: scroll;
    }
} */


/* Hero Title */
.jumbotron h1.hit-the-floor,
h1.hit-the-floor {
	font-family: 'Montserrat', Helvetica, sans-serif;
	font-weight: 900;
	font-size: clamp(2.75rem, 8vw, 6rem);
	letter-spacing: 0.03em;
	text-transform: uppercase;
	text-align: center;
	line-height: 1;
	margin: 0 0 0.3em;

	/* Fallback color in case background-clip:text fails */
	color: #66d943;

	/* Use longhand background props — prefix-free mangles the shorthand */
	background-color: transparent;
	background-image: linear-gradient(120deg, #ffffff 0%, #d4f5c4 35%, #66d943 65%, #389920 100%);
	background-size: 200% 200%;
	background-repeat: no-repeat;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;

	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));

	animation: hero-title-enter 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both,
	           hero-title-shine 7s ease-in-out 1.2s infinite;
}

@keyframes hero-title-enter {
	from {
		opacity: 0;
		transform: translateY(28px) scale(0.96);
		letter-spacing: 0.15em;
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
		letter-spacing: 0.03em;
	}
}

@keyframes hero-title-shine {
	0%, 100% { background-position: 0% 50%; }
	50%      { background-position: 100% 50%; }
}

.hero-tagline {
	opacity: 0;
	animation: hero-tagline-enter 0.9s ease-out 0.7s forwards;
	padding: 0 24px;
}

.hero-quote {
	color: #fff;
	font-family: 'Lato', serif;
	font-size: clamp(1.05rem, 2vw, 1.5rem);
	font-weight: 300;
	font-style: italic;
	line-height: 1.6;
	letter-spacing: 0.3px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
	max-width: 760px;
	margin: 28px auto 18px;
}

.hero-quote em {
	color: var(--accent-gold);
	font-style: italic;
	font-weight: 600;
	letter-spacing: 1px;
}

.hero-quote-author {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.6);
	font-family: Montserrat, sans-serif;
	font-size: clamp(0.78rem, 0.95vw, 0.9rem);
	font-weight: 400;
	letter-spacing: 0.5px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
	margin: 0;
}

.hero-quote-author::before,
.hero-quote-author::after {
	content: "";
	display: inline-block;
	width: 22px;
	height: 1px;
	background: rgba(240, 196, 25, 0.55);
}

@keyframes hero-tagline-enter {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hit-the-floor,
	.hero-tagline {
		animation: none;
		opacity: 1;
	}
}
	
	body {
	  background-color: #f1f1f1;
	}


	/*CONTACT - FORM  */
	.my-hr{
		max-width: 300px;
		border: 10px solid rgb(128, 54, 28);
	}
	.my-face{

		display: block;
		width: 200px;
		height: 200px;
		margin-left: auto;
		margin-right: auto;
		margin-top: -100px;
		background-color: black;
		border: 1px solid red;
		border-radius: 50%;
		transform: scaleX(-1);

	}


/* ============================================================
   CHAT — Hero button, floating widget, and inline modal
   ============================================================ */

.btn-chat-hero {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 56px;
	background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
	color: #fff;
	border: none;
	padding: 14px 34px;
	border-radius: 999px;
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	font-size: 14px;
	cursor: pointer;
	box-shadow: 0 8px 22px rgba(56, 153, 32, 0.45);
	transition: transform 0.25s var(--ease-out),
	            box-shadow 0.25s var(--ease-out),
	            background 0.3s ease;
}
.btn-chat-hero:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(56, 153, 32, 0.55);
	background: linear-gradient(135deg, var(--brand-green-light), var(--brand-green));
}
.btn-chat-hero:active {
	transform: translateY(0);
}
.btn-chat-hero i {
	font-size: 18px;
}

/* Floating chat FAB */
.chat-fab {
	position: fixed;
	bottom: 28px;
	right: 28px;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
	border: none;
	color: #fff;
	font-size: 26px;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
	z-index: 9998;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s var(--ease-out),
	            box-shadow 0.3s var(--ease-out),
	            opacity 0.25s ease;
}
.chat-fab:hover {
	transform: scale(1.08);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38);
}
.chat-fab:active {
	transform: scale(1.02);
}
.chat-fab-icon {
	position: relative;
	z-index: 2;
	line-height: 1;
}
.chat-fab-pulse {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 50%;
	background: var(--brand-green);
	opacity: 0.6;
	animation: chat-pulse 2.2s ease-out infinite;
	z-index: 1;
}
@keyframes chat-pulse {
	0%   { transform: scale(1);   opacity: 0.55; }
	100% { transform: scale(1.9); opacity: 0;    }
}
.chat-fab-dot {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--accent-gold);
	border: 2px solid #fff;
	z-index: 3;
	box-shadow: 0 0 0 0 rgba(240, 196, 25, 0.7);
	animation: chat-dot-pulse 2s ease-out infinite;
}
@keyframes chat-dot-pulse {
	0%   { box-shadow: 0 0 0 0   rgba(240, 196, 25, 0.7); }
	70%  { box-shadow: 0 0 0 8px rgba(240, 196, 25, 0);   }
	100% { box-shadow: 0 0 0 0   rgba(240, 196, 25, 0);   }
}

/* Hide FAB while modal is open */
body.chat-open .chat-fab {
	opacity: 0;
	pointer-events: none;
	transform: scale(0.8);
}
body.chat-open {
	overflow: hidden;
}

/* Chat modal */
.chat-modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.chat-modal.open {
	visibility: visible;
	opacity: 1;
	transition: opacity 0.25s ease, visibility 0s linear 0s;
}
.chat-modal-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.55);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}
.chat-modal-content {
	position: absolute;
	bottom: 28px;
	right: 28px;
	width: min(420px, calc(100vw - 32px));
	height: min(640px, calc(100vh - 120px));
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transform: translateY(20px) scale(0.96);
	transition: transform 0.28s var(--ease-out);
}
.chat-modal.open .chat-modal-content {
	transform: translateY(0) scale(1);
}
.chat-modal-header {
	background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
	color: #fff;
	padding: 14px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	letter-spacing: 0.5px;
	flex-shrink: 0;
}
.chat-modal-title {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
}
.chat-modal-status {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #66d943;
	box-shadow: 0 0 0 0 rgba(102, 217, 67, 0.7);
	animation: chat-dot-pulse 2s ease-out infinite;
}
.chat-modal-close {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}
.chat-modal-close:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: rotate(90deg);
}
.chat-modal iframe {
	width: 100%;
	height: 100%;
	border: 0;
	flex: 1;
	background: #fbfbfb;
}

@media (max-width: 480px) {
	.chat-fab {
		bottom: 18px;
		right: 18px;
		width: 56px;
		height: 56px;
		font-size: 22px;
	}
	.chat-modal-content {
		bottom: 0;
		right: 0;
		left: 0;
		top: 0;
		width: 100%;
		height: 100vh;
		border-radius: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.chat-fab-pulse,
	.chat-fab-dot,
	.chat-modal-status {
		animation: none;
	}
}
