/* Critical CSS for above-the-fold content */
/* This file contains only essential styles needed for initial render */

/* Base styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Navbar critical styles */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1000;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.navbar-brand img {
  max-height: 96px;
  width: auto;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.75rem;
}

.navbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0 10px;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

.nav-link img {
  max-height: 92px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

/* Hero section critical styles */
.hero_area {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
}

.hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.hero_bg_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slider_section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  color: white;
}

.detail-box h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.detail-box p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.hero-cta {
  background: linear-gradient(135deg, #f33535 0%, #E0A800 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  color: white;
  text-decoration: none;
}

/* Font display optimization */
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2');
  font-display: swap;
}

/* Responsive utilities */
@media (max-width: 767px) {
  .detail-box h1 {
    font-size: 2rem;
  }
  
  .detail-box p {
    font-size: 1rem;
  }
  
  .hero-cta {
    font-size: 1.1rem;
    padding: 12px 25px;
  }
}

@media (max-width: 576px) {
  .detail-box h1 {
    font-size: 1.8rem;
  }
  
  .hero-cta {
    font-size: 1rem;
    padding: 10px 20px;
  }
}
