/* Restaurant Owner Page Styles */

/* Hero Section */
.owner-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('https://images.unsplash.com/photo-1653167034858-9fe5ad7c2d44?q=80&w=2070') center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: white;
}

.owner-hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.owner-hero h2 {
  font-size: 1.5em;
  font-weight: normal;
  max-width: 800px;
  margin: 0 auto;
}

/* Pricing Section */
.pricing-container {
  padding: 80px 20px;
  text-align: center;
  background-color: #202227;
  color: white;
}

.pricing-container h2 {
  margin-bottom: 50px;
  font-size: 2.5em;
  color: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-card {
  background: #1A1C21;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: transform 0.3s ease;
  border: 1px solid #2d3748;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  border: 2px solid #04F5F8;
}

.featured-label {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #04F5F8, #23d5ab);
  background-size: 200% 200%;
  animation: Gradient 5s ease infinite;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: bold;
  text-shadow: 1px 1px #777;
}

.pricing-card h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: white;
}

.price {
  font-size: 2.5em;
  color: #04F5F8;
  margin-bottom: 10px;
}

.trial-text {
  color: #888;
  margin-bottom: 30px;
  font-size: 0.9em;
}

.price span {
  font-size: 0.4em;
  color: #888;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.pricing-card li {
  margin: 15px 0;
  color: #ddd;
}

.pricing-card li i {
  color: #04F5F8;
  margin-right: 10px;
}

.pricing-btn {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #04F5F8, #23d5ab);
  background-size: 200% 200%;
  animation: Gradient 5s ease infinite;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 4px;
  font-size: 1.1em;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  text-shadow: 1px 1px #777;
}

.pricing-btn:hover {
  opacity: 0.8;
  transform: none;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: #1A1C21;
  padding: 40px;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid #2d3748;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: #888;
  cursor: pointer;
  background: none;
  border: none;
}

/* Submit Listing Form */
.submit-listing-container {
  color: white;
}

.submit-listing-container h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5em;
  color: white;
}

.listing-form {
  background: #1A1C21;
}

.form-group {
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #ddd;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #2d3748;
  border-radius: 5px;
  font-size: 1em;
  background: #202227;
  color: white;
}

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

.form-group textarea {
  resize: vertical;
}

.form-group select option {
  background: #202227;
  color: white;
}

.submit-btn {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #04F5F8, #23d5ab);
  background-size: 200% 200%;
  animation: Gradient 5s ease infinite;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 4px;
  font-size: 1.1em;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.3s ease;
  width: 100%;
  margin-top: 20px;
  text-transform: uppercase;
  text-shadow: 1px 1px #777;
}

.submit-btn:hover {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .owner-hero h1 {
    font-size: 2.5em;
  }

  .owner-hero h2 {
    font-size: 1.2em;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

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

  .listing-form {
    padding: 20px;
  }
} 