/* ================= GLOBAL FONT ================= */
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #111;
}

/* ================= LOGO ================= */
.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1px;
}

/* ================= NAV LINKS EXACT SHOP STYLE ================= */

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;        /* 🔥 increase weight */
  font-size: 14px;
  letter-spacing: 0.5px;   /* 🔥 reduce spacing */
  text-transform: uppercase;
  color: #111;
}

/* ================= HEADER ICONS ================= */
.icon-group a,
.search-bar input {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

/* ================= NORMAL TEXT ================= */
p, span, .stat-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

/* ================= HEADER ================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 34px 2%;   /* 🔥 increase from 16px to 24px */
  
  border-bottom: 1px solid #eee;
  z-index: 2000;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #000;
}

.nav-links a {
  margin: 0 16px;
  text-decoration: none;
  font-weight: 600;
  color: #000;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #000;
  transition: 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ================= HEADER ACTIONS ================= */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ddd;
  padding: 8px 16px;
  border-radius: 25px;
}

.search-bar input {
  border: none;
  outline: none;
}

.icon-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-group a {
  color: #000;
  font-size: 18px;
  text-decoration: none;
  transition: 0.2s ease;
}

.icon-group a:hover {
  transform: scale(1.1);
}

/* ================= USER DROPDOWN ================= */
.user-menu {
  position: relative;
}

.user-dropdown {
  position: absolute;
  top: 60px;
  right: 0;
  width: 240px;
  background: #3f3f3f;
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 3000;
}

.user-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  color: #eaeaea;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.25s ease;
}

.user-dropdown a:hover {
  background: rgba(255,255,255,0.08);
}

.user-dropdown .logout {
  color: #ff9c9c;
}

/* ================= MOBILE ================= */
.menu-toggle,
.search-icon {
  display: none;
  font-size: 18px;
  cursor: pointer;
}

.mobile-nav,
.mobile-search {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: #fff;

  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;

  transition: all .3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

.mobile-nav.active,
.mobile-search.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  font-weight: 600;
  color: #000;
  border-bottom: 1px solid #f1f1f1;
}

.mobile-search-box {
  display: flex;
  gap: 12px;
  padding: 15px 20px;
}

.mobile-search-box input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 25px;
  border: 1px solid #ddd;
}

/* ================= PAGE SPACING ================= */
.page-top-spacing {
  margin-top: 120px;
}

/* ================= ABOUT SECTION ================= */
.stats-row {
  display: flex;
  gap: 30px;
}

.stat-box {
  text-align: center;
  transition: transform .3s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.stat-label {
  font-size: 14px;
  color: #777;
}

/* ================= FEATURES ================= */
.feature-box {
  text-align: center;
  padding: 25px;
  border-radius: 14px;
  background: #fafafa;
  transition: all .3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.feature-icon {
  font-size: 26px;
  margin-bottom: 12px;
  color: #000;
}

/* ================= FOUNDERS ================= */
.founders-section {
  padding: 80px 0;
}

.founder-card {
  text-align: center;
  padding: 25px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all .3s ease;
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.founder-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 15px;
}

.founder-card h6 {
  font-weight: 600;
}

.founder-card span {
  font-size: 13px;
  color: #777;
}

/* ================= SCROLL REVEAL ================= */
.feature-box,
.founder-card,
.stat-box {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(.17,.67,.32,1.28);
}

.reveal-active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .stats-row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .search-bar {
    display: none;
  }

  .menu-toggle,
  .search-icon {
    display: inline-block;
  }

  .main-header {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    padding: 12px 16px;
  }

  .logo {
    text-align: center;
    font-size: 18px;
  }
}

/* ===============================
   MOBILE FOOTER IMPROVEMENT
================================ */
@media (max-width:768px){

  .footer-grid{
    grid-template-columns: repeat(2,1fr);
    gap:30px;
  }

  .footer-col h5{
    font-size:14px;
  }

  .footer-col ul li a{
    font-size:13px;
  }

  .newsletter{
    grid-column: span 2; /* newsletter takes full width */
    margin-top:10px;
  }

  .subscribe-form{
    width:100%;
  }

  .subscribe-form input{
    flex:1;
  }

  .footer-bottom p{
    text-align:center;
    font-size:12px;
  }

}