@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	list-style: none;
	text-decoration: none;
}
header{
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1000;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 9%;
	background: transparent;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.logo{
	font-size: 30px;
	font-weight: 700;
	color: black;
}
/* Logo: text pe desktop, imagine pe mobil */
.logo-img {
  display: none;
  height: 36px;
  width: auto;
}
.logo-text {
  display: inline;
}

.navlist{
	display: flex;
}
.navlist a{
	color: black;
	margin-left: 60px;
	font-size: 15px;
	font-weight: 600;
	border-bottom: 2px solid transparent;
	transition: all .55s ease;
}
.navlist a:hover{
	border-bottom: 2px solid black;
}
#menu-icon{
	color: black;
	font-size: 35px;
	z-index: 10001;
	cursor: pointer;
	display: none;
}

.hero {
	max-width: 100%;
  height: auto;
  min-height: 95vh;
  background: linear-gradient(245.59deg, #ffffff 0%, #ffffff 28.53%, #ffffff 75.52%);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center; /* Change this line to align content to the right */
  justify-content: center;
  gap: 2rem;
}
#google-map {
	width: 100%;
  height: 70vh; /* Adjust the height as needed */
  max-height: 600px; /* Add a maximum height if necessary */
}

section{
	padding: 0 9%;
	margin-top: 1cm;
}
.hero-text {
  text-align: left; /* Center the text horizontally */
  margin-top: 20px; /* Add some top margin for spacing */
  flex: 1;
  max-width: 100%;
}

.hero-text h1{
	color: black;
	margin-bottom: 20px;
}

.hero-text p{
	color: black;
	font-size: 15px;
	line-height: 1.9;
	margin-bottom: 10px;
	width: 550px;
}

.hero-text a{
	display: inline-block;
	color: black;
	background: #ffff00;
	border: 1px solid transparent;
	padding: 12px 30px;
	line-height: 1.4;
	font-size: 14px;
	font-weight: 500;
	border-radius: 30px;
	text-transform: uppercase;
	transition: all .55s ease;
	margin-top: 30px;
}
.hero-text a:hover{
	background: transparent;
	border: 1px solid black;
	transform: translateX(8px);
}
.hero-text a.ctaa{
	background: transparent;
	border: 1px solid black;
	margin-left: 20px;
}
.hero-text a.ctaa i{
	vertical-align: middle;
	margin-right: 5px;
}

.icons{
	position: absolute;
	top: 50%;
	padding: 0 3%;
	transform: translateY(-50%);
}

.icons i1{
	display: block;
	margin: 20px 0;
	font-size: 30px;
	color: black;
	transition: all .50s ease;
}
.icons i2{
	display: block;
	margin: 20px 0;
	font-size: 30px;
	color: black;
	transition: all .50s ease;
}
.icons i3{
	display: block;
	margin: 20px 0;
	font-size: 30px;
	color: black;
	transition: all .50s ease;
}
.icons i1:hover{
	color: #0055ff;
	transform: translateY(-5px);
}
.icons i2:hover{
	color: #c200b8;
	transform: translateY(-5px);
}
.icons i3:hover{
	color: #ff0000;
	transform: translateY(-5px);
}

.scroll-down{
	position: absolute;
	bottom: 6%;
	right: 5%;
}
.scroll-down i{
	display: block;
	padding: 12px;
	font-size: 35px;
	color: white;
	background: #02e628;
	border-radius: 30px;
	transition: all .50s ease;
}
.scroll-down i:hover{
	transform: translateY(-5px);
}

@media (max-width: 1535px){
	header{
		padding: 15px 3%;
		transition: .2s;
	}
	.icons{
		padding: 0 3%;
		transition: .2s;
	}
	.scroll-down{
		right: 3%;
		transition: .2s;
	}
}
@media (max-width: 1460px){
	section{
		padding: 0 12%;
		transition: .2s;
	}
}
@media (max-width: 1340px){
	.hero-img img{
		width: 100%;
		height: auto;
	}

}
@media (max-width: 1195px){
	section{
		padding: 0 3%;
		transition: .2s;
	}
	.hero-text{
		padding-top: 115px;
	}
	.hero-img{
		text-align: center;
	}
	.hero-img img{
		width: 360px;
		height: auto;
	}
	.hero{
		height: 100%;
		gap: 1rem;
		grid-template-columns: 1fr;
	}
	.icons{
		display: none;
	}
	.scroll-down{
		display: none;
	}
}

@media (max-width: 990px){
	#menu-icon{
		display: block;
	}
	.navlist{
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background: #ffffff;
		display: flex;
		align-items: flex-start;
		flex-direction: column;
		padding: 80px 30px 40px 30px;
		transition: all .4s ease;
		z-index: 9999;
		overflow-y: auto;
	}
	.navlist.open{
		right: 0;
	}
	.navlist li {
		width: 100%;
		border-bottom: 1px solid #eeeeee;
	}
	.navlist a{
		margin-left: 0;
		display: block;
		padding: 18px 0;
		font-size: 22px;
		font-weight: 500;
		color: black;
		border-bottom: none;
	}
	.navlist a:hover{
		border-bottom: none;
		color: #888;
	}
	#menu-icon.bx-x{
		position: fixed;
		right: 5%;
		top: 20px;
		z-index: 10002;
		color: black;
	}
}

@media (max-width: 680px){
	.hero-img img{
		width: 100%;
		height: auto;
	}
}


/* FOOTER */
.container {
  max-width: 100%;
  margin: auto;
  padding: 0 3%;
}

.sub-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #470119;
  height: 70px;
  padding: 0 3%;
}

.sub-container p {
  text-align: center;
  font-size: 16px;
  text-transform: capitalize;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

ul {
  list-style: none;
}

.footer {
  background-color: #470119;
  padding: 30px 0;
}

.footer-col {
  margin: 0 15px;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #e91e63;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li.rand-liber a {
  color: #470119 !important;
  transition: none !important;
  pointer-events: none;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 767px) {
  .footer-col {
    flex: 1;
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row; /* Side by side on laptops */
    align-items: center;
  }
  .map-container {
    width: 80%; /* Adjust the width as needed */
    height: auto; /* Allow the height to adjust accordingly */
    max-width: 600px; /* Set a maximum width to prevent it from getting too large */
    margin: 0 auto; /* Center the map horizontally */
  }
}
@media (max-width: 990px) {
  #google-map {
    height: 50vh; /* Adjust the height as needed for mobile screens */
    max-height: 300px; /* Add a maximum height if necessary */
    margin-bottom: 20px;
  }
  .hero {
  	margin-top: -25px;
  }
}