@font-face {
	font-family: Limelight;
	src: url(../fonts/Limelight/Limelight-Regular.ttf);
}

@font-face {
	font-family: Space_Mono;
	src: url(../fonts/Space_Mono/SpaceMono-Regular.ttf);
}

/*------------------------------------header-----------------------------------*/
nav{
	position: sticky;
	top: 0;
	width:100%;
	display: flex;
	justify-content: space-between;
	align-items: center;	
	background-color: #197f96dc;
}

.logo {
	display: flex;
	align-items: center;
	margin-left: 80px;
}

.logo img {
	width:100px;
}

.nav-links{
	display: flex;
	align-items: center;
	list-style: none;
	padding: 0px 80px;
}

.nav-links a {
	display: block;
	padding: 30px 16px;
	color: black;
	text-decoration: none;
	font-family: 'Limelight', serif;
  	text-transform: uppercase;
	font-size: 20px;
	transition: all ease-in-out 100ms;
}

.nav-links a:hover{
	background-color: #de801c;
}

.nav-links .nav-cta-button {
	padding: 10px 18px;
	margin-left: 16px;
	border: #dc7a17 solid 2px;
	border-radius: 50px;
}

.nav-links .nav-cta-button:hover{
	background-color: #de801c;
}

.hamburger {
	display: none;
	cursor: pointer;
	width: 40px;
	padding: 0px 20px;
}

.hamburger .bar{
	flex-basis: 100%;
	height: 6px;
	background-color: #111;
	margin: 3px;
}

/*--------------------------mobile--------------------------------*/

@media (max-width: 360px) {

	nav{
		flex-wrap: wrap;
	}
	.hamburger{
		display: flex;
		flex-wrap: wrap;
	}
	.logo{
		height: 100px;
	}
	.nav-links{
		display: none;
		flex-basis: 100%;
		flex-wrap: wrap;
	}
	.nav-links li{
		flex-basis: 100%;
	}
	.nav-links a {
		text-align: center;
		font-size: 28px;
	}
	.nav-links a:hover{
		background-color: rgb(237, 162, 31);
	}
	.nav-links .nav-cta-button{
		padding: 30px 16px;
		margin-left: 0;
		border: none;
		border-radius: 0;
		margin-bottom: 20px;
	}
	.nav-links .nav-cta-button:hover{
		background-color: rgb(226, 154, 19);
	}
	section,.container.two section{
		flex-direction: column;
	}
	.container{
		margin: 1em 2em;
	}
}

/*----------------------------------page layout-------------------------*/

body{
	min-height: 100vh;
	background-color: black;
}

.container {
  display: grid;
  grid-template-areas:
    "hero hero"
    "content menu";
  grid-template-columns: 3fr 1fr;
  gap: 3px;
  background-color: rgb(252, 177, 25);
  padding: 5px;
}

.container div {
  background-color: #197f96dc;
  padding: 10px;
}

.container div.hero {
  grid-area: hero;
  text-align: center;
  height: 350px;
  background-color: white;
  padding-bottom: 0px;
  padding-top: 0px;
}

.container div.hero img{
  width: 100%;
  height: 100%;
  object-fit: cover;   
}

.container div.menu {
  grid-area: menu;
}

.container div.menu img{
  width: 100%;
  height: 100%;
  object-fit: cover;   
}

.container div.content {
  grid-area: content;
  padding: 40px;
  font-family: "Space Mono", monospace;
  line-height: 30px;
  line-break: normal;
}

.container div.content li{
	background: #dc7a17;
	padding-left: 20px;
	  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.container div.content li:hover {
  transform: translateX(10px);
  border-left: 5px solid #191996dc;
}

h3 {
	background-color: #dc7a17;
	width: fit-content;
	padding: 5px;
	border-radius: 10px;
}

.container div.content h3 {
font-family: "Space Mono", monospace;
font-weight: bold;
font-size: 30px;
}

h4{
	background-color: #dc7a17;
	width: fit-content;
	padding: 5px;
	border-radius: 15px;
}



footer {
  width: 100%;
  height: auto;
  background-color: #dc7a17;
  font-family: "Space Mono", monospace;
}

.footercontainer {
	width: 1140px;
	height: auto;
	margin: auto;
	padding: 10px 0px;
}

.box {
	width:33.3%;
	height: auto;
	float: left;
}

h1 {
	font-size: 32px;
	font-weight: 500;
	padding: 8px 12px;
}

.about {
	padding: 8px 12px;
}

.copyright {
	font-size: 24px;
	text-align: center;
	padding: 30px 0px;
	clear: both;
}

.quick , .social{
	text-align: center;
	padding: 8px 12px;
}

.q-link li, .s-link li {
	padding: 8px 12px;
	text-align: center;
	list-style-type: none;
	cursor: pointer;
}

.q-link li:hover, .s-link li:hover {
	color: aqua;
}

