 /* Global Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    * {
  pointer-events: auto !important;
}


    body {
      font-family: 'Georgia', serif; /* Elegant Serif Font */
      background-color: #f4f4f4; /* Soft off-white background */
      color: #333;
      line-height: 1.6;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      margin: 0;
      padding: 0;
    }

    .contact-page {
      background-color: #fff;
      color: #333;
      border-radius: 15px;
      padding: 3rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 1000px;
      transition: box-shadow 0.3s ease;
    }

    .contact-page:hover {
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); /* Subtle hover glow effect */
    }
    .phone-link {
  color:#555;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #ffd700;
  text-decoration: underline;
}
.back-home-sticky {
  position: sticky;
  top: 0;
  background-color:white;
  padding: 12px 20px;
  z-index: 1000;
  text-align: left;
}

.back-home-sticky a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.back-home-sticky a:hover {
  color: #e6c200;
  text-decoration: underline;
}



    h1 {
      font-size: 3.5rem;
      text-align: center;
      color: gold; /* Gold color for the heading */
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      transition: color 0.3s ease;
    }

    h1:hover {
      color: #ffd700; /* Darker gold on hover for the title */
    }

    h2 {
      font-size: 2.2rem;
      text-align: center;
      color: #f1c40f;
      margin-bottom: 2rem;
      position: relative;
      border-bottom: 3px solid #f1c40f;
      padding-bottom: 1rem;
      display: inline-block;
      transition: border-color 0.3s ease, color 0.3s ease;
    }

    h2:hover {
      border-color: #ffd700;
      color: #ffd700; /* Gold color on hover for headings */
    }

    .contact-info p {
      font-size: 1.2rem;
      color: #555;
      margin-bottom: 1.5rem;
    }

    /* Dine-In Hours Section */
   /* Dine-In Hours Timeline Style */
.dine-hours {
  margin-top: 4rem;
  text-align: center;
}

.dine-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #f1c40f;
  position: relative;
  margin-bottom: 3rem;
  display: inline-block;
  border-bottom: 3px solid #f1c40f;
  padding-bottom: 0.5rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.dine-title:hover {
  color: #ffd700;
  border-color: #ffd700;
}

.dine-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.dine-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #f1c40f;
  left: 50%;
  transform: translateX(-50%);
}

.dine-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1rem 2rem;
  width: 70%;
  max-width: 500px;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.dine-item::before {
  content: '★'; /* Gold star instead of dot */
  position: absolute;
  top: 50%;
  left: -28px;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: #f1c40f;
  z-index: 2;
}

.dine-item span:first-child {
  font-weight: bold;
  font-family: 'Georgia', serif;
  color: #333;
}

.dine-item span:last-child {
  font-family: 'Georgia', serif;
  color: #777;
}

.dine-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(241, 196, 15, 0.2);
  border-color: #f1c40f;
}

@media (max-width: 768px) {
  .dine-item {
    width: 90%;
    padding: 1rem 1.5rem;
  }

  .dine-title {
    font-size: 2rem;
  }
}
.map-section {
  text-align: center;
  margin-top: 3rem;
}

.map-section iframe {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-section h2 {
  font-size: 2rem;
  color: #f1c40f;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.map-section h2:hover {
  color: #ffd700; /* Gold hover effect */
}


    /* Contact Form Styling */
    .contact-form {
      background-color: #f9f9f9;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      margin-top: 2.5rem;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 1.2rem;
      margin-bottom: 1.5rem;
      border: 1px solid #ddd;
      border-radius: 8px;
      background-color: #fff;
      color: #333;
      font-size: 1rem;
      transition: border-color 0.3s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: #f1c40f; /* Gold border on focus */
      outline: none;
    }

    .contact-form button {
      width: 100%;
      padding: 1.2rem;
      background-color: #f1c40f;
      color: #fff;
      font-size: 1.2rem;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .contact-form button:hover {
      background-color: #ffd700; /* Gold hover */
      transform: translateY(-3px); /* Smooth lift effect */
    }
   
    .social-media {
  text-align: center;
  margin-top: 2.5rem;
}

.social-media ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-media li {
  display: inline-block;
}

.social-media a {
  display: inline-block;
  font-size: 1.8rem;
  color: #f1c40f; /* Gold */
  background-color: transparent;
  padding: 0.6rem;
  border-radius: 50%;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-media a:hover {
  color: #ffd700; /* Brighter gold on hover */
  transform: scale(1.2);
}

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .contact-page {
        padding: 2rem;
      }

      h1 {
        font-size: 2.8rem;
      }

      h2 {
        font-size: 1.8rem;
      }

      .contact-form input,
      .contact-form textarea {
        font-size: 1rem;
      }

      .social-media a {
        font-size: 1.2rem;
      }
    }