* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f8f8;
    color: #111;
    padding-top: 80px; /* Matches header height */
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: white;
    z-index: 1000; /* stays above hero */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

main {
    padding-top: 80px; /* same as header height */
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color:#1D2D50;
}
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-links a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
}
.lang {
    font-weight: 600;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: bold;
    color: #001f3f;
    text-decoration: none;
}

.logo:hover {
    color: #001f3f;
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1100; /* ensures it's above overlay */
    position: relative;
    color: #111; /* visible by default */
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 80px;
    right: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 15px;
    border-radius: 8px;
    z-index: 1200; /* above hero */
}
.mobile-menu a {
    text-decoration: none;
    color: #111;
    padding: 10px 0;
}

/*--- Footer--*/
.footer {
    background: white;
    border-top: 1px solid #ddd;
    font-family: 'Inter', sans-serif;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    flex-wrap: wrap;
}
.footer-section {
    min-width: 150px;
}
.footer-section h3 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.footer-section h4 {
    font-weight: 600;
    margin-bottom: 10px;
}
.footer-section p,
.footer-section a {
    font-size: 0.9rem;
    color: #111;
    text-decoration: none;
}
.footer-section a:hover {
    text-decoration: underline;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin-bottom: 8px;
}
.footer-bottom {
    background: #d8ff3f;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.85rem;
    margin-top: 10px;
}
.footer-bottom a {
    color: #111;
    text-decoration: none;
}
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    font-size: 1.2rem;
    color: #111;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 80vh; /* full screen height */
  background: url('../Images/q1.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark overlay for readability */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}
.men-cloth {
  padding: 40px 20px;
  background: #f9f9f9;
}

.men-cloth h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

/* Horizontal Scroll */
.men-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.men-row::-webkit-scrollbar {
  height: 6px;
}

.men-row::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 10px;
}

.men-item {
  flex: 0 0 auto;
  width: 220px;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.men-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.men-item:hover {
  transform: translateY(-5px);
}

/* ✅ Responsive Design */
@media (max-width: 1024px) {
  .men-item {
    width: 180px;
  }
}

@media (max-width: 768px) {
  .men-item {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .men-cloth h2 {
    font-size: 1.5rem;
  }
  .men-item {
    width: 120px;
    padding: 8px;
  }
}
