*{
    margin: 0 px;
    padding: 0 px;
    font-family: 'Noto Sans', sans-serif;
}
/*header*/

header {
  background-color: #002746;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 80px;
  margin-left: 90px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin-right: 100px;
}

nav ul li a {
  text-decoration: none;
  color: #e6955d;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ff0000;
}

/*hero*/

.hero {
  background-image: url("hero-background1.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;


  text-align: left;
  color: #fff;
}

.hero-content {
  max-width: 600px;
  padding: 20px;
  margin-top :50px;
  margin-left: 4%;
  
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 25px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background-color: #ff0000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e60000;
}

/*about*/

.about {
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.about-content {
	position: relative;
	 box-shadow: 0 5px 15px rgba(0,0,0,.5);
	 overflow: hidden;
  flex: 1;
  max-width: 600px;
  padding-right: 50px;
  color: #fff;
  margin-left: 5%;
  
  
}
.about-content:before{
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: 20px;
	background-attachment: fixed;
	filter: blur(2px);
}
.about h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about p {
  font-size: 15px;
  margin-bottom: 20px;
}

.about-image {
  max-width: 50%;
  margin-right: 5%;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.dark-theme {
  background-color: #070e16;
}


/* menu*/
.menu {
  padding: 80px 0;
  text-align: center;
  background-color: #070e16;
  

}
.menu h2 {
	position: relative;
	width: max-content;
	cursor: pointer;
  font-size: 36px;
  margin-bottom: 40px;
  color: #ffffff;
  left: 825px;
 
}
.menu h2::after{
	content: '';
	background: linear-gradient(to right, red, blue);
	border-radius: 100px;
	height: 4px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: 100ms;
}
.menu h2:hover::after{
	width: 0;
}

.menu-items {
	
  display: flex;
  justify-content: center;
}

.menu-item {
  max-width: 300px;
  margin: 0 20px;
  text-align: left;
  position: relative;
	 box-shadow: 0 5px 15px rgba(0,0,0,.5);
	 overflow: hidden;
}

.menu-item img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

.menu-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffffff;
}

.menu-item p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ffffff;
}

/* reservations*/

.reservations {
  background-color: #002645;
  padding: 80px 0;
  text-align: center;
}

.reservation-form {
  max-width: 500px;
  margin: 0 auto;
  background-color: #333;
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.reservation-form h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
}

.reservation-form form input,
.reservation-form form textarea {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: none;
}

.reservation-form form button {
  display: inline-block;
  background-color: #ff0000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.reservation-form form button:hover {
  background-color: #e60000;
}


/* Testimonials Section*/

.testimonials {
  padding: 50px 0;
  text-align: center;
  background-color: #070e16;
}

.testimonials h2 {
  font-size: 50px;
  margin-bottom: 40px;
  color: #fff;
}

.testimonial {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: left;
}

.testimonial img {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.testimonial p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #fff;
}

.testimonial h4 {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}


/* Gallery Section*/

.gallery {
  padding: 5px 0;
  text-align: center;
  background-color: #00213a;
}

.gallery h2 {
	position: relative;
	width: max-content;
	cursor: pointer;
  font-size: 36px;
  margin-bottom: 40px;
  color: #fff;
  left: 850px;
}
.gallery  h2::after{
	content: '';
	background: linear-gradient(to right, red, blue);
	border-radius: 100px;
	
	height: 4px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: 100ms;
}
.gallery h2:hover::after{
	width: 0;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-left: 5%;
  margin-right: 5%;
}

.image-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}


/* Gallery2 Section*/

.gallery2 {
  padding: 80px 0;
  text-align: center;
  background-color: #00213a;
}

.gallery2 h2 {
	position: relative;
	width: max-content;
	cursor: pointer;
  font-size: 26px;
  margin-bottom: 40px;
  color: #fff;
  left: 400px;
}
.gallery2  h2::after{
	content: '';
	background: linear-gradient(to right, red, blue);
	border-radius: 100px;
	
	height: 4px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: 100ms;
}
.gallery2 h2:hover::after{
	width: 0;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-left: 5%;
  margin-right: 5%;
}

.image-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

/* Contact Section*/

.contact {
  background-color: #333;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact h2 {
	position: relative;
	width: max-content;
  font-size: 36px;
  margin-bottom: 40px;
  left: 200px;
  cursor: pointer;
}
.contact h2::after{
	content: '';
	background: linear-gradient(to right, red, blue);
	border-radius: 100px;
	
	height: 4px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: 100ms;
}
.contact h2:hover::after{
	width: 0;
}

.contact-info {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.info-item {
  margin: 0 10px;
  text-align: center;
}

.info-item i {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 5px;
  border: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  display: inline-block;
  background-color: #ff0000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e60000;
}

/* Footer*/

.footer {
  background-color: #070e16;
  padding: 40px 0;
  color: #fff;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.footer-logo img {
  max-width: 50px;
}

.footer-links a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:'Poppins', sans-serif;
}


.wrapper {
  display:inline-flex;
}

.wrapper .icon {
  margin: 0 20px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
  text-decoration: none;
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon span {
  display: block;
  height: 60px;
  width: 60px;
  color: #000;
  background: #fff;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon span i {
  line-height: 60px;
  font-size: 25px;
}

.wrapper .icon .tooltip {
  position: absolute;
  top: 0;
  z-index: 1;
  background: #fff;
  color: #fff;
  padding: 10px 18px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 25px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: -70px;
  opacity: 1;
  pointer-events: auto;
}

.icon .tooltip:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background: inherit;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) rotate(45deg);
}

.wrapper .icon:hover span {
  color: #fff;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.4);
}

.wrapper .facebook:hover span,
.wrapper .facebook:hover .tooltip {
  background: #3B5999;
}

.wrapper .twitter:hover span,
.wrapper .twitter:hover .tooltip {
  background: #46C1F6;
}

.wrapper .instagram:hover span,
.wrapper .instagram:hover .tooltip {
  background: #e1306c;
}

.wrapper .github:hover span,
.wrapper .github:hover .tooltip {
  background: #333;
}

.wrapper .youtube:hover span,
.wrapper .youtube:hover .tooltip {
  background: #DE463B;
}
