* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Header */
.navbar {
  background: #00bcd4;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h2 {
  color: #e0f7fa;
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
  background-color: rgba(224, 247, 250, 0.2);
}

.nav-link.btn-primary {
  background-color: #e0f7fa;
  color: #00bcd4;
  font-weight: bold;
}

/* Main */
main {
  margin-top: 80px;
}

.page-content {
  padding: 2rem 0;
}

.page-content h1 {
  color: #00bcd4;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #00bcd4, #26c6da);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background-color: #00acc1;
}

.btn-secondary {
  background-color: #e0f7fa;
  color: #00bcd4;
}

.btn-secondary:hover {
  background-color: #b2ebf2;
}

/* Sections */
.menu-preview,
.contact-preview {
  padding: 4rem 0;
}

.menu-preview h2,
.contact-preview h2 {
  font-size: 2.5rem;
  color: #00bcd4;
  text-align: center;
  margin-bottom: 3rem;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-item {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.menu-item h3 {
  color: #00bcd4;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.menu-item .price {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #00bcd4;
  margin-top: 1rem;
}

/* Contact Info */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.contact-item h3 {
  color: #00bcd4;
  margin-bottom: 1rem;
}

.contact-item a {
  color: #00bcd4;
  text-decoration: none;
}

/* Menu Pages */
.menu-section {
  margin-bottom: 3rem;
}

.menu-section h2 {
  color: #00bcd4;
  font-size: 2rem;
  margin-bottom: 2rem;
  border-bottom: 3px solid #e0f7fa;
  padding-bottom: 0.5rem;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-item-full {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.item-info h3 {
  color: #00bcd4;
  margin-bottom: 0.5rem;
}

.menu-item-full .price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #00bcd4;
}

/* Contact Page */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-detailed {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
  color: #00bcd4;
  margin-bottom: 1rem;
}

.contact-form-section h2 {
  color: #00bcd4;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #00bcd4;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00bcd4;
}

/* Reservation */
.reservation-content {
  max-width: 600px;
  margin: 0 auto;
}

.reservation-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reservation-form h2 {
  color: #00bcd4;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
  color: #00bcd4;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.legal-content h3 {
  color: #00bcd4;
  font-size: 1.3rem;
  margin: 2rem 0 1rem 0;
}

.legal-content p {
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: justify;
}

.legal-content ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-content a {
  color: #00bcd4;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.back-link {
  text-align: center;
  margin-top: 3rem;
}

/* Footer */
footer {
  background-color: #00bcd4;
  color: white;
  padding: 2rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: #e0f7fa;
  margin-bottom: 1rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(224, 247, 250, 0.3);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
