@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/* style.css - Common styles for all pages */

:root {
  --primary: rgb(253, 102, 13); /* Orange primary color */
  --secondary: #6c757d;
  --accent: #ff6b00;
  --dark: #212529;
  --light: #f8f9fa;
  --gold: #ffd700;
  --dark-blue: #1a365d;
}

/* Override Bootstrap primary color */
.text-primary {
  --bs-text-opacity: 1;
  color: rgb(253, 102, 13) !important;
}

.btn-primary {
  background-color: rgb(253, 102, 13);
  border-color: rgb(253, 102, 13);
}

.btn-primary:hover {
  background-color: rgb(230, 90, 10);
  border-color: rgb(230, 90, 10);
}

.btn-outline-primary {
  color: rgb(253, 102, 13);
  border-color: rgb(253, 102, 13);
}

.btn-outline-primary:hover {
  background-color: rgb(253, 102, 13);
  border-color: rgb(253, 102, 13);
}

.bg-primary {
  background-color: rgb(253, 102, 13) !important;
}

.border-primary {
  border-color: rgb(253, 102, 13) !important;
}

/* Custom Logo Styles */
.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-icon {
  background: linear-gradient(135deg, rgb(253, 102, 13), var(--gold));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(253, 102, 13, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text-top {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--dark-blue);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-text-bottom {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgb(253, 102, 13);
  line-height: 1;
  margin-top: 2px;
  letter-spacing: 2px;
}

/* Smaller logo for mobile */
@media (max-width: 768px) {
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-right: 10px;
  }

  .logo-text-top {
    font-size: 1.4rem;
  }

  .logo-text-bottom {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }
}

/* Base styles */
body {
  font-family: "Roboto", sans-serif;
  color: var(--dark);
  padding-top: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.navbar-brand {
  padding: 0;
}

/* Section title */
.section-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.section-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: rgb(253, 102, 13);
}

.section-title.text-center:after {
  left: 50%;
  transform: translateX(-50%);
}

/* Product cards */
.product-card {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

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

.product-img {
  height: 200px;
  object-fit: scale-down;
  width: 100%;
}

/* Contact info box */
.contact-info-box {
  background-color: var(--light);
  border-radius: 8px;
  padding: 25px;
  height: 100%;
  border-left: 4px solid rgb(253, 102, 13);
}

/* Footer */
.footer {
  background-color: var(--dark-blue);
  color: white;
  padding-top: 50px;
}

.footer a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: rgb(253, 102, 13);
}

/* Social icons */
.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: all 0.3s;
}

.social-icons a:hover {
  background-color: rgb(253, 102, 13);
  transform: translateY(-3px);
}

/* Floating buttons */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

.call-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: rgb(253, 102, 13);
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.call-float:hover {
  background-color: rgb(230, 90, 10);
  transform: scale(1.1);
}

/* Trending badge */
.trending-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgb(253, 102, 13);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Carousel */
.carousel-item {
  height: 500px;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* Accordion */
.accordion-button:not(.collapsed) {
  background-color: rgba(253, 102, 13, 0.1);
  color: rgb(253, 102, 13);
  font-weight: 600;
}

.accordion-button:focus {
  border-color: rgb(253, 102, 13);
  box-shadow: 0 0 0 0.25rem rgba(253, 102, 13, 0.25);
}

/* Form controls */
.form-control:focus,
.form-select:focus {
  border-color: rgb(253, 102, 13);
  box-shadow: 0 0 0 0.25rem rgba(253, 102, 13, 0.25);
}

/* Link colors */
a {
  color: rgb(253, 102, 13);
  text-decoration: none;
}

a:hover {
  color: rgb(230, 90, 10);
}

/* Navigation */
.nav-link {
  color: var(--dark);
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  color: rgb(253, 102, 13) !important;
}

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

/* Hero section enhancements */
.hero-section {
  background:
    linear-gradient(rgba(26, 54, 93, 0.85), rgb(188 216 205 / 8%)),
    url("/assets/images/2.png?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  position: relative;
}

/* Brand cards */
.brand-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.brand-card:hover {
  border-color: rgb(253, 102, 13);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(253, 102, 13, 0.1);
}

/* Footer logo */
.footer-logo {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.footer-logo span {
  color: rgb(253, 102, 13);
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-item {
    height: 300px;
  }

  .whatsapp-float,
  .call-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }

  .call-float {
    bottom: 80px;
  }

  .hero-section {
    padding: 60px 0;
  }
}

/* Category navigation */
.category-nav {
  background-color: var(--light);
  padding: 15px 0;
  position: sticky;
  top: 80px;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.category-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 4px;
  transition: all 0.3s;
}

.category-link:hover,
.category-link.active {
  background-color: rgb(253, 102, 13);
  color: white;
}

/* Feature icons */
.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgb(253, 102, 13), var(--gold));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
}
/* Logo Styling */
.navbar-logo {
  height: 50px;
  max-height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  .navbar-logo {
    height: 40px;
    max-height: 40px;
  }
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0rem;
  right: 0rem;
  height: 3px;
  background-color: rgb(253, 102, 13);
  border-radius: 2px;
}

.dropdown-menu {
  border: 1px solid rgba(253, 102, 13, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-top: 10px;
}

.dropdown-item:hover {
  background-color: rgba(253, 102, 13, 0.1);
  color: rgb(253, 102, 13);
  padding-left: 1.5rem;
}
