/* Custom styles for New Rajeswarie Hotel Private Limited */

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

/* Custom utility classes */
.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* Safari/Chrome specific smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #a72936;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #8a212c;
}

/* Additional custom styles for specific elements */
.booking-input:focus {
  box-shadow: 0 0 0 3px rgba(167, 41, 54, 0.3);
}

.footer-link {
  transition: color 0.2s;
}

.footer-link:hover {
  color: #a72936;
}

/* Hotel card hover effect */
.hotel-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Company info section */
.company-info {
  padding: 3rem 0;
}

.company-info h2 {
  margin-bottom: 1.5rem;
  color: #002147;
}

.company-info p {
  line-height: 1.7;
  color: #333;
}

/* Hero section */
.hero {
  position: relative;
  height: 600px;
  background-position: center;
  background-size: cover;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 200px;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Cards */
.card-title {
  color: #002147;
  font-size: 1.25rem;
  font-weight: 600;
}

.btn-primary {
  background-color: #a72936;
  border-color: #a72936;
}

.btn-primary:hover {
  background-color: #8a212c;
  border-color: #8a212c;
}

.btn-outline-light:hover {
  background-color: #a72936;
  border-color: #a72936;
}

/* Custom navbar styles */
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 50px;
}

.nav-link {
  font-weight: 500;
  color: #002147 !important;
  transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
  color: #a72936 !important;
}

/* Footer */
.footer {
  background-color: #002147;
  color: white;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

.footer-heading {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: background-color 0.3s;
  margin-right: 0.5rem;
}

.social-icon:hover {
  background-color: #a72936;
  color: white;
}

.copyright {
  background-color: #001a38;
  color: rgba(255, 255, 255, 0.7);
}
