/* -----------------------------------------------------------------------------*/
/*  BASIC SETUP*/
/* -----------------------------------------------------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #fff;
    color: #555;
    font-family: 'Lato', 'Arial', sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
    overflow-x: hidden
}
p {
    font-size: 80%;
}
.fadein {
  opacity: 0;
  transform : translate(0, 50px);
  transition : all 1500ms;
}

.fadein.scrollin{
  opacity: 1;
  transform: translate(0, 0);
}
/* -----------------------------------------------------------------------------*/
/*  REUSABLE COMPONENTS                                      */
/* -----------------------------------------------------------------------------*/

.row {
    max-width: 1140px;
    margin: 0 auto;
}
section {
	padding: 80px 0;
}

/* ---HEADINGS------*/
h1, 
h2,
h3 {
	font-weight: 300;
}

h1 {
	margin-top: 0;
	margin-bottom: 20px;
	color: #fff;
	font-size: 240%;
	word-spacing: 4px;
	letter-spacing: 1px;
}
h2 {
	font-size: 180%;
	text-align: center;
	margin-bottom: 15px;
	letter-spacing: 2px;
   
}

h2:after {
	display: block;
	height: 2px;
	background-color: #2ECC71;
	content: " ";
	width: 100px;
	margin: 0 auto;
	margin-top: 10px;
    text-align: center;
}
/* -----------------------------------------------------------------------------*/
/*  button*/
/* -----------------------------------------------------------------------------*/
.btn:link, 
.btn:visited {
	display: inline-block;
	padding: 10px 30px;
	font-weight: 300;
	text-decoration: none;
	border-radius: 200px;
	transition: background-color 0.2s, border 0.2s, color 0.2s;
}



.btn-full:link,
.btn-full:visited {
	background-color: #2ECC71;
	border: 1px solid #2ECC71;
	color: #fff;
	margin-right: 15px;
}

.btn:hover,
.btn:active {
	background-color: #1E824C;
}

.btn-full:hover,
.btn-full:active {
	border: 1px solid #1E824C;
}












/* -----------------------------------------------------------------------------*/
/*  HEADER*/
/* -----------------------------------------------------------------------------*/

header {
	background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(img/golf.jpg);
	background-size: cover;
	background-position: center;
	height: 100vh;
    background-attachment: fixed;
}

.hero-text-box {
	position: absolute;
	width: 1140px;
	top: 50%;
	left:50%;
	transform: translate(-50%, -50%);

}

.main-nav {
	float: right;
	list-style: none;
	margin-top: 55px;
}

.main-nav li {
	display: inline-block;
	margin-left: 40px;
}

.main-nav li a:link,
.main-nav li a:visited {
	padding: 8px 0;
	color: #fff;
	text-decoration: none;
	font-size: 90%;
	border-bottom: 2px solid transparent;
	transition: border-bottom 0.2s;
}

.main-nav li a:hover,
.main-nav li a:active {
	border-bottom: 2px solid #2ECC71;
}
/* -----------------------------------------------------------------------------*/
/*  sticky*/
/* -----------------------------------------------------------------------------*/
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 2px #efefef;
    z-index: 9999;
}
.sticky .main-nav {
    margin-bottom: 12px;
	margin-top: 10px;
}
.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
	padding: 15px 0;
	color: #555;
}

/* -----------------------------------------------------------------------------*/
/*  section-hours*/
/* -----------------------------------------------------------------------------*/
.section-hours {
    margin-bottom: 30px;
}


table {
    color: white;
    width: 60%;
    table-layout: fixed;
    text-align: center;
    margin-top: 30px;
    margin-left: 20%;
    margin-right: 20%;
}



.day {
    background-color: #00B16A;
}

.hours {
    background-color: #C8F7C5;
    color: black;
}
.discription {
    font-size: 70%;
    width: 60%;
    margin-left: 20%;
}

/* -----------------------------------------------------------------------------*/
/*  section-price*/
/* -----------------------------------------------------------------------------*/
.section-price {
    background-color: #fdfdfd;
}
table {
    color: white;
    width: 60%;
    table-layout: fixed;
    text-align: center;
    margin-top: 30px;
    margin-left: 20%;
}

thead {
    background-color: #2ECC71;
}

.non {
    background-color: white;
    border: 0;
}
.day {
    background-color: #00B16A;
}

.price {
    background-color: #C8F7C5;
    color: black;
}
/* -----------------------------------------------------------------------------*/
/*  section-pics*/
/* -----------------------------------------------------------------------------*/
.box img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    
}

.box p {
    margin-bottom: 20px;
}

/* -----------------------------------------------------------------------------*/
/*  section-address*/
/* -----------------------------------------------------------------------------*/
.section-address {
    background-color: #fdfdfd;
}
.address{
    color: black;
}



.address td:first-child {
    background-color: #2ECC71;
    color: white;
    width: 30%;
    text-align: center;
}
.address td:last-child {
    background-color: #C8F7C5;
    width: 60%;
}
.map-container {
    margin-top: 50px;
    text-align: center;
}
.icon {
    margin-right: 2px;
    margin-top: 2px;
}
/* -----------------------------------------------------------------------------*/
/*  section-infomation*/
/* -----------------------------------------------------------------------------*/

.infodata {
    color: black;
    padding-top: 60px;
    padding-bottom: 60px;
}
.infobody {
    background-color: #C8F7C5;
}

.infoheaddata {
    font-size: 130%;
}
/* -----------------------------------------------------------------------------*/
/*  section-footer*/
/* -----------------------------------------------------------------------------*/

.footer{
    background-color: gray;
    color: white;
    text-align: center;
}






