@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{
	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;
	justify-content: center;
	gap: 2rem;
}

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

.hero-text p{
	color: black;
	font-size: 15px;
	line-height: 1.9;
	margin-bottom: 40px;
	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;
}
.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){
  .logo-img {
    display: inline-block;
  }
  .logo-text {
    display: none;
  }
  #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;
  }
}


.content-table { /*ABONAMENTE */
    border-collapse: collapse;
    margin: 25px 50px; /*distanta intre tabele*/
    font-size: 0.9em;
    min-width: 250px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.table-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-table thead tr {
		font-size: 20px;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}
.column1 {
    background-color: #ffff00;
}
.column2 {
    background-color: #ff0000;
}
.column3 {
    background-color: #000000;
}

.content-table th,
.content-table td {
    padding: 12px 15px;
}
.content-table th {
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); /* Add an inner shadow to the text */
    /* Other styles for <th> elements */
}
.content-table tbody tr {
    text-align: center;
}

.content-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.content-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}


/* 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 query for laptops and larger screens */
@media (min-width: 768px) {
  .table-container {
    display: flex;
    justify-content: space-between;
  }

  .column1,
  .column2,
  .column3 {
    flex: 1;
    margin: 0 10px; /* Adjust the margin between columns */
  }
}



/* Media query for mobile phones */
@media (max-width: 767px) {
  .hero-text p {
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    padding: 10px 90px; /* Add padding to create space around the text */
    color: black; /* Set text color to black for better readability */
  }
  .hero-text {
    margin-top: -3cm; /* Adjust the negative margin to move it up by 2 cm */
    margin-bottom: 1cm;
  }
  .footer-col {
    flex: 1;
    margin-bottom: 20px;
  }
  .table-container {
    flex-direction: column; /* Stack columns on mobile phones */
    margin-top: 30px; /* Add margin to the top*/
  }

  .column1,
  .column2,
  .column3 {
    width: 100%; /* Make columns full width on mobile phones */
    margin: 10px 0; /* Add margin between stacked columns */
  }
}
