/* --- अपडेटेड FOOTER.CSS --- */

/* ---------- FOOTER SECTION (BASE STYLES: No Change) ---------- */
footer {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #b8fff0;
  text-align: center;
  padding: 25px 10px;
  border-top: 2px solid #00ffd5;
  position: relative;
}

/* ... footer a, footer a:hover, footer p, @media (max-width: 600px) के बाकी स्टाइल्स ... */


/* --------------------------------- */
/* 1. बेस स्टाइलिंग (सोशल बटन) */
/* --------------------------------- */
.social-button {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  border-radius: 50px;
  margin: 6px 0;
  font-family: sans-serif;
  overflow: hidden;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  
  /* *सुधार:* दो लाइन दिखाने के लिए white-space को normal किया गया */
  white-space: normal; 
}

/* PC/बड़ी स्क्रीन के लिए डिफ़ॉल्ट साइज़ */
.social-button {
  width: 150px;
  height: 30px; 
}

/* 2. आइकॉन और टेक्स्ट साइज़ (PC के लिए डिफ़ॉल्ट) */
.icon-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 30px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  margin-right: 5px;
}

.text-section {
  display: flex;
  /* दो लाइनों को एक के नीचे एक रखने के लिए */
  flex-direction: column; 
  align-items: flex-start;
  justify-content: center;
  /* *सुधार:* चौड़ाई सही है */
  width: calc(100% - 35px); 
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  padding-left: 8px;
  font-size: 10px;
  letter-spacing: 1px;
  /* *सुधार:* यह सिर्फ MERI YATRA लाइन पर लागू होगा (HTML FIX देखें) */
  font-weight: 700; 
  /* *सुधार:* white-space: nowrap; को यहाँ से हटा दिया गया है */
}

/* --- B. दूसरी लाइन (सब-टेक्स्ट) की स्टाइलिंग --- */

.sub-text {
    font-size: 8px; 
    font-weight: 500;
    /* *सुधार:* पहली लाइन से गैप कम करने के लिए */
    margin-top: -3px; 
    letter-spacing: 0.5px;
    line-height: 1.0;
    /* *सुधार:* इसे एक ही लाइन में रखने की कोशिश */
    white-space: nowrap; 
    /* *सुधार:* मिसिंग बंद होने वाला ब्रैकेट यहाँ जोड़ा गया है */
} 

/* बटनों को एक के नीचे एक और बाईं ओर (Left) लाने के लिए */
.social-links-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px;
  width: 100%;
}

/* --- 3. रंग और ग्रेडिएंट्स (No Change) --- */

/* ... Facebook, WhatsApp, Instagram, YouTube के रंग यहाँ हैं ... */


/* --------------------------------- */
/* 4. मोबाइल मीडिया क्वेरी */
/* --------------------------------- */
@media (max-width: 600px) {
  .social-button {
    width: 130px;
    height: 30px;
  }

  .icon-section {
    width: 30px;
    font-size: 18px;
    margin-right: 3px;
  }

  .text-section {
    /* *सुधार:* 33px होना चाहिए (30px width + 3px margin) */
    width: calc(100% - 33px); 
    font-size: 8px;
    padding-left: 5px;
    letter-spacing: 0.5px;
  }
      .sub-text {
        font-size: 6.5px; 
        margin-top: -2px;
    }
}

/* ... बाकी टॉप आइकॉन स्टाइलिंग (5. टॉप पर आइकॉन के लिए स्टाइलिंग) ... */
