/* =========================================
   Sharjeel Jewellers – Ivory + Brown + White Theme
   ========================================= */

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  pointer-events: auto !important;
}

body {
  font-family: 'Georgia', serif; /* Elegant Serif Font */
  background-color: #f4f1e1; /* Ivory background */
  color: #d7c298 !important; /* Dark brown text with #d7c298 */
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

/* Contact Page */
.contact-page {
  background-color: #fff;
  color: #d7c298 !important; /* Text color updated */
  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 */
}

/* Sticky back to home button */
.back-home-sticky {
  position: sticky;
  top: 0;
  background-color: white;
  padding: 12px 20px;
  z-index: 1000;
  text-align: left;
}

.back-home-sticky a {
  color: #d7c298 !important; /* Updated link color */
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.back-home-sticky a:hover {
  color: #d7c298 !important; /* Hover stays same */
  text-decoration: underline;
}

/* Heading Styles */
h1, h2 {
  color: #d7c298 !important; /* Updated heading color */
}

h1 {
  font-size: 3.5rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

h1:hover {
  color: #d7c298 !important; /* Hover stays same */
}

h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  border-bottom: 2px solid #d7c298 !important; /* Light brown border */
  padding-bottom: 1rem;
  display: inline-block;
  transition: border-color 0.3s ease, color 0.3s ease;
}

h2:hover {
  border-color: #d7c298 !important; /* Updated hover border color */
  color: #d7c298 !important; /* Updated hover color */
}

/* Contact Info Styling */
.contact-info p {
  font-size: 1.2rem;
  color: #d7c298 !important; /* Updated text color */
  margin-bottom: 1.5rem;
}

/* Phone Link Styling */
.phone-link {
  color: #d7c298 !important; /* Updated phone link color */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #d7c298 !important; /* Hover stays same */
  text-decoration: underline;
}

/* Dine-In Hours Section */
.dine-hours {
  margin-top: 4rem;
  text-align: center;
}

.dine-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #d7c298 !important; /* Updated title color */
  position: relative;
  margin-bottom: 3rem;
  display: inline-block;
  border-bottom: 3px solid #d7c298 !important; /* Updated light brown border */
  padding-bottom: 0.5rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.dine-title:hover {
  color: #d7c298 !important; /* Hover stays same */
  border-color: #d7c298 !important; /* Hover border stays same */
}

.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: #d7c298 !important; /* Updated line color */
  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: #d7c298 !important; /* Updated color */
  z-index: 2;
}

.dine-item span:first-child {
  font-weight: bold;
  font-family: 'Georgia', serif;
  color: #d7c298 !important; /* Updated text color */
}

.dine-item span:last-child {
  font-family: 'Georgia', serif;
  color: #d7c298 !important; /* Updated text color */
}

.dine-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(168, 159, 145, 0.2);
  border-color: #d7c298 !important; /* Hover border color */
}

@media (max-width: 768px) {
  .dine-item {
    width: 90%;
    padding: 1rem 1.5rem;
  }

  .dine-title {
    font-size: 2rem;
  }
}

/* Map Section */
.map-section {
  text-align: center;
  margin-top: 2rem; /* Reduced top margin for closer proximity */
}

.map-section h1 {
  font-size: 2.2rem; /* Smaller heading size */
  color: #d7c298 !important; /* Updated color */
  margin-bottom: 1rem; /* Reduced space below the heading */
  text-align: center;
  border-bottom: 2px solid #d7c298 !important; /* Updated border color */
  padding-bottom: 5px;
  display: inline-block;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form {
  background-color: #fff;
  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: #f9f9f9;
  color: #d7c298 !important; /* Updated color */
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d7c298 !important; /* Light brown border on focus */
  outline: none;
}

.contact-form button {
  width: 100%;
  padding: 1.2rem;
  background-color: #d7c298 !important; /* Button color */
  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: #3a2a1f; /* Dark brown on hover */
  transform: translateY(-3px); /* Smooth lift effect */
}

/* Social Media Icons */
.social-media {
  text-align: center;
  margin-top: 2.
}
/* Our Info Section Styling */
.contact-info p {
  font-size: 1.2rem;
  color: #d7c298 !important; /* Set all text in the info section to #d7c298 */
  margin-bottom: 1.5rem;
}

.contact-info .info-label {
  font-weight: bold; /* Make the text before the colon bold */
}

.contact-info .info-text {
  font-weight: normal; /* Keep the text after the colon normal weight */
  color: #d7c298 !important; /* Ensure the color is consistent */
}

.contact-info a {
  color: #d7c298 !important; /* Ensure links match the color */
  text-decoration: none; /* Remove underline */
}

.contact-info a:hover {
  text-decoration: underline; /* Underline on hover */
}
