* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  min-height: 100vh;
  line-height: 1.6;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: rgb(49, 46, 46);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(221, 221, 221, 0.707);
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgb(221, 221, 221);
}

/* NAVBAR */
nav {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  background: rgb(49, 46, 46);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  height: 60px;
  line-height: 60px;
  color: #ff6b35;
  font-weight: 700;
  font-size: 2em;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  padding-left: 20px;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #ff8c55;
}

#toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: rgb(221, 221, 221);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
}

#toggle:hover {
  background: rgb(200, 200, 200);
}

#toggle::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 2px;
  background: rgb(49, 46, 46);
  transform: translateY(-5px);
  transition: 0.3s;
}

#toggle::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 2px;
  background: rgb(49, 46, 46);
  transform: translateY(5px);
  transition: 0.3s;
}

#toggle.active::before {
  transform: translateY(0px) rotate(45deg);
  background: rgb(221, 221, 221);
}

#toggle.active::after {
  transform: translateY(0px) rotate(-45deg);
  background: rgb(221, 221, 221);
}

#toggle.active {
  background: rgb(87, 81, 81);
}

#navbar {
  position: relative;
  height: 60px;
  right: 60px;
  background: rgb(49, 46, 46);
  transition: 0.5s;
  width: 0px;
  overflow: hidden;
}

#navbar.active {
  width: auto;
}

#navbar ul {
  position: relative;
  display: flex;
  flex-direction: row;
}

#navbar ul li {
  list-style: none;
}

#navbar ul li a {
  color: white;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  text-decoration: none;
  font-size: 1.1em;
  padding: 0 20px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-weight: 500;
}

#navbar ul li a:hover {
  color: rgb(49, 46, 46);
  background: #ff6b35;
}

@media (max-width: 991px) {
  #navbar.active {
    width: 100%;
    height: auto;
  }

  #navbar ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

/* HERO SECTION */
.slider {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  animation: slide 20s infinite;
  transition: 2s;
  position: relative;
}

.content {
  width: 100%;
  height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7),
    rgba(255, 107, 53, 0.3)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.principle {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.principle h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

.principle p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: #ff6b35;
  color: white;
}

.btn-primary:hover {
  background: #ff5722;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #333;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

@keyframes slide {
  0% {
    background-image: url("/img/curried-shrimp.jpg");
  }
  20% {
    background-image: url("/img/curried-shrimp.jpg");
  }
  20.01% {
    background-image: url("/img/lobster-ravioli.jpg");
  }
  40% {
    background-image: url("/img/lobster-ravioli.jpg");
  }
  40.01% {
    background-image: url("/img/pan-seared-salmon.jpg");
  }
  60% {
    background-image: url("/img/pan-seared-salmon.jpg");
  }
  60.01% {
    background-image: url("/img/pan-seared-steak.jpg");
  }
  80% {
    background-image: url("/img/pan-seared-steak.jpg");
  }
  80.01% {
    background-image: url("/img/steakhouse-salad.jpg");
  }
  100% {
    background-image: url("/img/steakhouse-salad.jpg");
  }
}

/* FEATURES SECTION */
.features {
  padding: 80px 0;
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 50px;
  font-weight: 600;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* QUICK ACCESS SECTION */
.quick-access {
  padding: 80px 0;
  background: white;
}

.quick-access h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 50px;
  font-weight: 600;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.quick-link-card {
  background: linear-gradient(135deg, #ff6b35, #ff8c55);
  padding: 30px;
  border-radius: 15px;
  text-decoration: none;
  color: white;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.quick-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.quick-link-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.quick-link-card p {
  opacity: 0.9;
  font-size: 0.95rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .principle h1 {
    font-size: 2.5rem;
  }

  .principle p {
    font-size: 1.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .features h2,
  .quick-access h2 {
    font-size: 2rem;
  }

  .features-grid,
  .quick-links-grid {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
footer {
  background-color: rgb(49, 46, 46);
  position: relative;
  width: 100%;
  height: auto;
  padding: 50px 0 30px;
}

footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 40px;
}

.about-us {
  flex: 2;
  max-width: 500px;
}

.quick-links {
  flex: 1;
  min-width: 250px;
}

footer h2 {
  position: relative;
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

footer h2::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #ff6b35;
}

.about-us p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 20px;
}

.smlinks {
  display: flex;
  gap: 15px;
}

.smlinks li {
  list-style: none;
}

.smlinks li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.smlinks li a:hover {
  transform: scale(1.1);
}

.info {
  list-style: none;
}

.info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: #ccc;
}

.info li span:first-child {
  margin-right: 15px;
  margin-top: 3px;
}

.info li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info li a:hover {
  color: #ff6b35;
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    text-align: center;
  }

  .about-us,
  .quick-links {
    max-width: 100%;
  }

  .smlinks {
    justify-content: center;
  }
}
