/*
  Bella Luna Bistro - Main Stylesheet
  Author: Bella Luna Bistro
  Description: Modern, responsive, warm Italian restaurant website
*/

/* Google Fonts */
body, html {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  color: #2d2d2d;
  background: #f8f6f3;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #7c2f1c;
  margin-top: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation Bar */
.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(44, 29, 18, 0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.nav-logo a {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  font-family: 'Playfair Display', serif;
  color: #7c2f1c;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
}
.nav-logo i {
  margin-right: 10px;
  color: #b85c38;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item {
  margin-left: 2rem;
}
.nav-link {
  color: #2d2d2d;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: #b85c38;
}
.nav-link.active::after, .nav-link:hover::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #b85c38;
  border-radius: 2px;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 1.5rem;
}
.bar {
  height: 3px;
  width: 25px;
  background: #b85c38;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #f8f6f3 60%, #f3e6d7 100%);
  padding-left: 1rem;
  padding-right: 1rem;
  min-height: 480px;
  gap: 2rem;
}

.hero-content {
  flex: 1 1 50%;
  padding-right: 2rem;
}



.hero-title {
  font-size: 2.8rem;
  color: #7c2f1c;
  margin-bottom: 0.5rem;
}
.hero-subtitle {
  font-size: 1.3rem;
  color: #b85c38;
  margin-bottom: 1rem;
}
.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #4d3a2a;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {

  width: 50%;
}

.hero-image img {
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(44, 29, 18, 0.13);
  width: 85%;
  float: right;
  margin: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.7em 2em;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  margin-top: 0.5rem;
}
.btn-primary {
  background: #b85c38;
  color: #fff;
  box-shadow: 0 2px 8px rgba(184, 92, 56, 0.13);
}
.btn-primary:hover {
  background: #7c2f1c;
  color: #fff;
}
.btn-secondary {
  background: #fff;
  color: #b85c38;
  border: 2px solid #b85c38;
}
.btn-secondary:hover {
  background: #b85c38;
  color: #fff;
}

/* Featured Section */
.featured {
  background: #fff;
  padding: 40px 0;
}
.featured-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.featured-card {
  background: #f3e6d7;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(44, 29, 18, 0.07);
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1 1 0;
  min-width: 220px;
  max-width: 320px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.featured-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(44, 29, 18, 0.13);
}
.featured-icon {
  font-size: 2.2rem;
  color: #b85c38;
  margin-bottom: 1rem;
}

/* Special Offers Section */
.special-offers {
  background: #f8f6f3;
  padding: 40px 0 30px 0;
}
.offers-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.offer-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(44, 29, 18, 0.07);
  overflow: hidden;
  max-width: 340px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.offer-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(44, 29, 18, 0.13);
}
.offer-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.offer-content {
  padding: 1.2rem;
}
.offer-content h3 {
  margin-bottom: 0.5rem;
}
.price {
  color: #b85c38;
  font-weight: 700;
  font-size: 1.1rem;
}

.return-btn{
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  background-color: #007bff; /* Blue */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 999;
}

.return-btn:hover {
  background-color: #0056b3;
}

/* Footer */
.footer {
  background: #2d2d2d;
  color: #fff;
  padding: 40px 0 0 0;
  margin-top: 40px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
}
.footer-section h3, .footer-section h4 {
  color: #fff;
  margin-bottom: 0.7rem;
}
.social-links a {
  color: #fff;
  font-size: 1.3rem;
  margin-right: 1rem;
  transition: color 0.2s;
}
.social-links a:hover {
  color: #b85c38;
}
.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.95rem;
  color: #ccc;
}

/* Responsive Styles */
@media (max-width: 1200px) {

  body{
    text-align: center;
  }

  footer{
    text-align: center;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 0 20px 0;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hours-location-content {
    flex-direction: column;
  }
/*
  .catering-menu {
    display: none;
  }
*/
  .featured-grid, .offers-grid {
    flex-direction: column;
    align-items: center;
  }
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    display: none;
    box-shadow: 0 8px 32px rgba(44, 29, 18, 0.13);
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-item {
    margin: 1.2rem 0;
  }
  .hamburger {
    display: flex;
  }
  .nav-container {
    flex-direction: row;
  }
}
@media (max-width: 600px) {
  .container {
    width: 98%;
    padding: 0 4px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-image img {
    width: 100%;
    min-width: 0;
  }
  .featured-card, .offer-card {
    min-width: 0;
    max-width: 100%;
  }
}

/* Utility Classes */
.section-title {
  font-size: 2rem;
  color: #7c2f1c;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #7c2f1c 0%, #b85c38 100%);
  color: #fff;
  text-align: center;
  padding: 60px 0 40px 0;
}
.page-header h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* About Page Styles */
.about-story {
  padding: 60px 0;
  background: #fff;
}
.story-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.story-text {
  flex: 1;
}
.story-image {
  flex: 1;
}
.story-image img {
  width: 100%;
  max-width: 500px;
  height: 350px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(44, 29, 18, 0.13);
}

.philosophy {
  padding: 60px 0;
  background: #f8f6f3;
}
.philosophy-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.philosophy-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(44, 29, 18, 0.07);
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1 1 0;
  min-width: 250px;
  max-width: 350px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.philosophy-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(44, 29, 18, 0.13);
}
.philosophy-icon {
  font-size: 2.2rem;
  color: #b85c38;
  margin-bottom: 1rem;
}

.team {
  padding: 60px 0;
  background: #fff;
}
.team-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.team-member {
  background: #f8f6f3;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(44, 29, 18, 0.07);
  padding: 1.5rem;
  text-align: center;
  flex: 1 1 0;
  min-width: 250px;
  max-width: 350px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-member:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(44, 29, 18, 0.13);
}
.team-member img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.team-member .position {
  color: #b85c38;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hours-location {
  padding: 60px 0;
  background: #f8f6f3;
}
.hours-location-content {
  display: flex;
  gap: 3rem;
}
.hours, .location {
  flex: 1;
}
.hours-grid {
  margin: 1rem 0;
}
.day {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0d5c8;
}
.map-placeholder {
  margin-top: 1rem;
}
.map-placeholder img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

/* Services Page Styles */
.services-overview {
  padding: 60px 0;
  background: #fff;
}
.services-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.service-card {
  background: #f8f6f3;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(44, 29, 18, 0.07);
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1 1 0;
  min-width: 280px;
  max-width: 380px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(44, 29, 18, 0.13);
}
.service-icon {
  font-size: 2.2rem;
  color: #b85c38;
  margin-bottom: 1rem;
}
.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
}
.service-features li {
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
}
.service-features li::before {
  content: '✓';
  color: #b85c38;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.private-events {
  padding: 60px 0;
  background: #f8f6f3;
}
.events-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.events-text {
  flex: 1;
}
.event-types {
  margin-top: 2rem;
}
.event-type {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44, 29, 18, 0.07);
}
.event-type h4 {
  color: #b85c38;
  margin-bottom: 0.5rem;
}
.events-image {
  flex: 1;
}
.events-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(44, 29, 18, 0.13);

}

.catering-menu {
  padding: 60px 0;
  background: #fff;
}
.catering-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.catering-option {
  background: #f8f6f3;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(44, 29, 18, 0.07);
  flex: 1 1 0;
  min-width: 280px;
  max-width: 380px;
  transition: transform 0.2s, box-shadow 0.2s;
  padding: 1rem;
}
.catering-option:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(44, 29, 18, 0.13);
}
.catering-option img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.catering-option h3 {
  margin: 1rem 1rem 0.5rem 1rem;
}
.catering-option p {
  margin: 0 1rem 1rem 1rem;
  color: #666;
}
.catering-option ul {
  margin: 0 1rem 1rem 1rem;
  padding-left: 1.5rem;
}
.catering-option li {
  margin-bottom: 0.3rem;
}

.service-features-section {
  padding: 60px 0;
  background: #f8f6f3;
}
.features-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.feature-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(44, 29, 18, 0.07);
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1 1 0;
  min-width: 250px;
  max-width: 300px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(44, 29, 18, 0.13);
}
.feature-icon {
  font-size: 2.2rem;
  color: #b85c38;
  margin-bottom: 1rem;
}

.cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #7c2f1c 0%, #b85c38 100%);
  color: #fff;
  text-align: center;
  margin-bottom: -2.5rem;
}
.cta-content h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Menu Page Styles */
.menu-nav {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #e0d5c8;
}
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.menu-tab {
  background: #f8f6f3;
  border: none;
  padding: 0.8em 1.5em;
  border-radius: 25px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.menu-tab.active, .menu-tab:hover {
  background: #b85c38;
  color: #fff;
}

.menu-section {
  padding: 60px 0;
  background: #fff;
}
.menu-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.menu-item {
  background: #f8f6f3;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(44, 29, 18, 0.07);
  flex: 1 1 0;
  min-width: 300px;
  max-width: 400px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.menu-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(44, 29, 18, 0.13);
}
.menu-item-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.menu-item-content {
  padding: 1.5rem;
}
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.menu-item-header h3 {
  margin: 0;
}
.price {
  color: #b85c38;
  font-weight: 700;
  font-size: 1.1rem;
}

.dietary-options {
  padding: 60px 0;
  background: #f8f6f3;
}
.dietary-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.dietary-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(44, 29, 18, 0.07);
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1 1 0;
  min-width: 250px;
  max-width: 300px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.dietary-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(44, 29, 18, 0.13);
}
.dietary-card i {
  font-size: 2.2rem;
  color: #b85c38;
  margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-section {
  padding: 60px 0;
  background: #fff;
}
.contact-grid {
  display: flex;
  gap: 3rem;
}
.contact-info {
  flex: 1;
}
.contact-info h2 {
  margin-bottom: 1.5rem;
}
.contact-info p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.contact-info i {
  margin-right: 0.5rem;
  color: #b85c38;
  width: 20px;
}
.contact-info a {
  color: #b85c38;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.map-embed {
  margin-top: 2rem;
}
.map-embed img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

.contact-form-container {
  flex: 1;
}
.contact-form-container h2 {
  margin-bottom: 1.5rem;
}
.contact-form {
  background: #f8f6f3;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(44, 29, 18, 0.07);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #2d2d2d;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #e0d5c8;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #b85c38;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Responsive adjustments for all new sections */
@media (max-width: 1320px) {
  .features-grid {
    flex-wrap: wrap;
  }
  

}

@media (max-width: 1024px) {
  .story-content,
  .events-content,
  .contact-grid {
    flex-direction: column;
    gap: 2rem;
  }
  .philosophy-grid,
  .team-grid,
  .services-grid,
  .catering-grid,
  .features-grid,
  .dietary-grid {
    flex-direction: column;
    align-items: center;
  }
  .menu-grid {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .menu-tabs {
    justify-content: center;
  }

  .contact-info{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .map-embed {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

}
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .contact-form {
    padding: 1.5rem;
  }
} 