/* This file contains styles specific to certain pages that are not covered by the main styles.css */
/* Most common styles have been moved to styles.css to avoid duplication */

/* Specific header styles that differ from styles.css */
.header-top {
  background: #f8f9fa;
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}

.header-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.contact-item a {
  color: #b55a2f;
  text-decoration: none;
  font-weight: 600;
}

.location {
  color: #666;
}

.navbar {
  padding: 15px 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #1459e8;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-link {
  color: #333;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #1459e8;
}

.cart-icon img {
  width: 20px;
  height: 20px;
}

/* Specific animations not in styles.css */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.hero-content > * {
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  animation-delay: 0.2s;
}

.hero-title {
  animation-delay: 0.4s;
}

.hero-description {
  animation-delay: 0.6s;
}

.hero-btn {
  animation-delay: 0.8s;
}

/* Additional specific styles that might be needed for certain pages */
.quote-icon {
  font-size: 4rem;
  color: #b55a2f;
  margin-bottom: 30px;
}

/* Specific responsive adjustments */
@media (max-width: 768px) {
  .header-info {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .nav-menu {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    flex-wrap: wrap;
    gap: 15px;
  }
}
  