/*
 * Custom stylesheet for the e‑commerce clothing website
 *
 * This file defines the colour palette, fonts and helper
 * classes that give the site its premium, modern look.  The
 * Bootstrap 5 framework provides the base responsive grid and
 * components.  See the Bootstrap grid documentation for
 * guidance on creating layouts that adapt from mobile up to
 * desktop using a twelve‑column system【824454215688723†L164-L168】.  Our
 * custom styles complement Bootstrap by introducing a few
 * variables and bespoke elements such as the hero section
 * overlay, product cards, and subtle animations.
 */

/* Root variables for colours and fonts */
:root {
  --color-primary: #0d332f; /* deep green for buttons and highlights */
  --color-secondary: #020000; /* burnt orange for accents */
  --color-light: #f8f9fa; /* light background */
  --color-dark: #212529; /* dark text */
  --color-muted: #6c757d; /* muted text for subtitles */
  --font-family-base: 'Poppins', Arial, sans-serif;
}

/* Base typography */
body {
  font-family: var(--font-family-base);
  color: var(--color-dark);
  background-color: var(--color-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-primary);
  font-weight: 600;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-secondary);
}

/* Navbar styles */
/* .navbar-brand {
  font-weight: 700;
  letter-spacing: 1px;
} */

.navbar-nav .nav-link {
  margin-right: 1rem;
  font-weight: 500;
  color: var(--color-dark);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--color-secondary);
}

/* Hero section */
.hero {
  position: relative;
  background: url('../images/hero.jpg') center/cover no-repeat;
  color: #fff;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 2rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ff00dd !important;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #f8f9fa;
}

.btn-primary-custom {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.btn-primary-custom:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #fff;
}

/* Product card */
.product-card {
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: #fff;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

.product-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.product-card .card-body {
  padding: 1rem;
}

.product-card .product-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.product-card .product-price {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-secondary);
}

.product-card .old-price {
  text-decoration: line-through;
  color: var(--color-muted);
  margin-left: 0.5rem;
}

.product-card .rating {
  color: #ffc107;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background-color: #0d332f;
  color: #fff;
  padding: 3rem 0;
}

.footer h5 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer a {
  color: #ced4da;
}

.footer a:hover {
  color: var(--color-secondary);
}

/* Utility classes */
.text-muted-small {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.section-title {
  margin-bottom: 2rem;
  text-align: center;
}



    /* Navbar profile icon bigger but no extra navbar height */
/* .nav-profile-icon {
  font-size: 1.8rem;   
  line-height: 1;      
  display: inline-block;
} */

/* Better spacing for brand */
/* .navbar-brand {
  font-size: 1.9rem;
  font-weight: 600;

} */

/* Fix vertical alignment of Dashboard / Orders / Wishlist */
.navbar-nav .nav-link {
  padding-top: 0.6rem !important;
  padding-bottom: 0.6rem !important;
  font-size: 1rem;
}

/* Increase profile icon but keep navbar height same */
.nav-profile-icon,
.bi-person-circle {
  font-size: 2rem !important;
  line-height: 1 !important;
}

/* Cart + Profile icon spacing */
.navbar-nav .nav-item.ms-3 {
  margin-left: 1.2rem !important;
}

/* Slight spacing on right corner */
.navbar {
  padding-right: 20px !important;
}



/* Responsive tweaks */
@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}




/* BRAND TOP BAR */
/* .navbar-brand {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
} */

/* Desktop nav items */
.desktop-nav .nav-link {
  font-size: 15px;
  margin-right: 18px;
  font-weight: 500;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .navbar-brand {
    font-size: 22px;
  }

  .mobile-list .nav-link {
    padding: 8px 0;
    font-size: 15px;
    border-bottom: 1px solid #eee;
  }

  .mobile-menu {
    max-height: 350px;
    overflow-y: auto;
  }

  .navbar-toggler {
    border: none;
  }
}









/* ELITE WEARS Footer – Light Grey Premium Theme */

.ew-footer {
  background: #f7f7f7;
  border-top: 1px solid #e2e2e2;
}

.footer-logo {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  letter-spacing: 1px;
}

.footer-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-top: 10px;
}

.footer-heading {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

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

.footer-links a:hover {
  color: #000;
  padding-left: 5px;
}

.footer-social a {
  font-size: 22px;
  margin-right: 12px;
  color: #555;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #000;
  transform: scale(1.15);
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 10px;
  color: #444;
  font-size: 14px;
}

.footer-contact i {
  margin-right: 6px;
  color: #000;
}

.footer-bottom small {
  color: #666;
  font-size: 14px;
}



/* ULTRA PREMIUM LUXURY BRAND TITLE */
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #0d0d0d;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  transition: all 0.4s ease;
}

/* Elegant underline */
.navbar-brand::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0px;
  height: 2px;
  background: #000;
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

/* Luxury hover effect */
.navbar-brand:hover {
  letter-spacing: 8px;
  color: #000;
}

/* Underline expands on hover */
.navbar-brand:hover::after {
  width: 70%;
}


/* ===============================
   RESPONSIVE TEXT SIZES
================================*/

/* Tablets */
@media (max-width: 992px) {
  .navbar-brand {
    font-size: 30px;
    letter-spacing: 4px;
  }
}

/* Mobiles (medium) */
@media (max-width: 768px) {
  .navbar-brand {
    font-size: 26px;
    letter-spacing: 3px;
  }
}

/* Small phones (iPhone SE, Samsung A-series etc.) */
@media (max-width: 480px) {
  .navbar-brand {
    font-size: 22px;
    letter-spacing: 2px;
  }
}
