/*
Theme Name: Jio Travels
Theme URI: https://www.thegraphicscrew.in/
Author: The Graphics Crew
Author URI: https://www.thegraphicscrew.in/
Description: Luxury curated India travel experiences theme for Jio Travels. Single-page React application converted into a WordPress theme shell.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jio-travels
*/

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8f6f2;
}

.font-serif {
  font-family: "Playfair Display", serif;
}

.font-sans {
  font-family: "Inter", sans-serif;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.animate-fade-in {
  animation: fade-in 0.45s ease both;
}

.animate-fade-in-up {
  animation: fade-in-up 0.35s ease both;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.field-input {
  width: 100%;
  background: #F8F6F2;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field-input:focus {
  border-color: #C8A97E;
  background: #fff;
}
