* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
}

header {
  background-image: url("assets/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  color: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

#logo {
  width: 60px;
  height: 60px;
  border: 2px solid white;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.5),
              0 4px 10px rgba(0, 0, 0, 0.3);
}

ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
}

ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s;
}

ul li a:hover {
  color: #ff4d4d;
}

.reserveTable {
  background-color: #ff4d4d;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.reserveTable:hover {
  background-color: #e60000;
}

/* Hero Section */
.content {
  max-width: 800px;
  margin-top: 100px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
}

.content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
}

.content h1 span {
  color: #ff4d4d;
}

.content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.reserve {
  display: inline-block;
  background-color: #ff4d4d;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s, transform 0.3s;
}

.reserve:hover {
  background-color: #e60000;
  transform: scale(1.05);
}

/* main section */
.about-section {
  background-color: #0c0f0f;
  padding: 60px 20px;
  color: #fff;
  font-family: 'Arial', sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.features {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
}

.feature-card {
  background-color: rgba(20, 27, 28, 0.9);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.feature-card .icon {
  font-size: 28px;
  color: orange;
}

.about-content {
  padding-left: 20px;
}

.about-content .section-label {
  color: orange;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
}

.about-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin: 10px 0 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 30px;
}

.learn-more-btn {
  background-color: orange;
  color: black;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.learn-more-btn:hover {
  background-color: #ff6600;
}

/* contact-information */

.contact-information {
  background-color: #1c1c1c;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px;
  color: #ffffff;
  gap: 20px;
}

.contact-box {
  flex: 1 1 200px;
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}

.contact-box:hover {
  transform: translateY(-5px);
}

.contact-box h3 {
  margin-top: 10px;
  color: #ff4d4d;
}

.contact-box a {
  color: #ffffff;
  text-decoration: underline;
}

.contact-number {
  font-size: 24px;
  font-weight: bold;
  color: #888;
}

.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* menu section */

.menu-section {
  background-color: #111;
  padding: 60px 20px;
  color: #fff;
  font-family: 'Arial', sans-serif;
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.menu-container .section-label {
  color: orange;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}

.menu-container h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.menu-item {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.menu-item h3 {
  color: orange;
  font-size: 22px;
  margin-bottom: 10px;
}

.menu-item p {
  font-size: 15px;
  color: #ccc;
}

/* CEO Section */
#ceo-section {
  width: 100%;
  background-color: #120c0c; 
  color: #fff;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ceo-idea {
  max-width: 900px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.ceo-quote {
  font-size: 20px;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ddd;
}

.ceo-author {
  font-size: 18px;
  font-weight: bold;
  color: orange;
}

/* Responsive */
@media (max-width: 600px) {
  .ceo-quote {
    font-size: 16px;
  }

  .ceo-author {
    font-size: 16px;
  }
}


/* Why Us Section */
.why-us-section {
  background-color: #0c0f0f;
  color: #ffffff;
  padding: 80px 20px;
  font-family: 'Arial', sans-serif;
}

.why-us-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.why-us-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.why-us-content .section-label {
  color: orange;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 12px;
  display: inline-block;
}

.why-us-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.why-us-content p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 30px;
}

.why-us-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-us-features li {
  font-size: 18px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.why-us-features .icon {
  color: orange;
  font-size: 20px;
  margin-right: 12px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .why-us-container {
    grid-template-columns: 1fr;
  }

  .why-img {
    height: 200px;
  }

  .why-us-content h2 {
    font-size: 28px;
  }
}


/* Footer */
.footer {
  background-color: #111;
  color: #eee;
  padding: 60px 20px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-about h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: orange;
}

.footer-about p {
  color: #ccc;
  line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: orange;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: orange;
}

.social-icons a {
  font-size: 20px;
  color: #ccc;
  margin-right: 15px;
  display: inline-block;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: orange;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #444;
  padding-top: 20px;
  font-size: 14px;
  color: #888;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons a {
    margin-right: 10px;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .features {
    position: static;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }

  .feature-card {
    width: 100%;
    max-width: 300px;
  }

  .about-content {
    padding-left: 0;
  }

  .about-content h2 {
    font-size: 32px;
  }
}


