:root {
  --primary-bg: #f4e1e1;
  --dark-bg: #1e1e1e;
  --accent: #d4a5a5;
  --light: #ffffff;
  --text-dark: #333;
  --text-light: #eee;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--primary-bg);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Header */
header {
  background: var(--dark-bg);
  color: var(--light);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
}
.navbar .logo a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
}

/* Nav bar design: use .nav-links so we can toggle it */
.nav-links {
  display: flex;
  gap: 25px;
  margin-left: auto;
  align-items: center;
}

nav a,
.nav-links a {
  color: var(--light);
  text-decoration: none;
  margin-left: 0; /* handled by gap */
  font-weight: 600;
  position: relative;
  font-size: 16px;
}

nav a::after,
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: 0.3s;
}

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

nav a.active,
.nav-links a.active {
  color: #ffc9e3;
}

/* Hero */
.hero {
  background: linear-gradient(120deg, #f7d9d9, #fcecec);
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  color: #4a2c2c;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  max-width: 600px;
  margin: auto;
}

/* Owner */
.owner-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 80px 10%;
  background: #fff;
}

.owner-info {
  flex: 1;
  max-width: 500px;
}

.owner-info h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #b46b75;
  font-family: 'Playfair Display', serif;
}

.owner-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

.owner-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.owner-image img {
  width: 100%;
  max-width: 280px;
  height: 350px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.owner-image img:hover {
  transform: scale(1.05);
}

/* Categories */
.categories {
  text-align: center;
  padding: 60px 20px;
  background: #fff9f9;
}

.categories h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.category-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: nowrap;       /* keep them side by side */
  overflow-x: auto;        /* scroll instead of stacking */
}

.category-card {
  background: var(--accent);
  color: var(--light);
  padding: 30px;
  border-radius: 15px;
  width: 160px;
  font-size: 18px;
  font-weight: bold;
  box-shadow: var(--box-shadow);
  transition: 0.3s ease;
  cursor: pointer;
  flex: 0 0 auto;          /* prevents shrinking */
}

.category-card:hover {
  transform: translateY(-5px);
  background: #b87d7d;
}

/* New Arrivals */
.new-arrivals {
  background: var(--light);
  padding: 60px 20px;
  text-align: center;
}

.new-arrivals h2 {
  font-size: 30px;
  margin-bottom: 40px;
}

.arrival-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;       /* keep side by side */
  overflow-x: auto;        /* horizontal scroll on small screens */
}

.arrival-card {
  background: var(--accent);
  color: var(--light);
  padding: 20px;
  border-radius: 15px;
  width: 220px;
  box-shadow: var(--box-shadow);
  transition: 0.3s ease;
  flex: 0 0 auto;          /* prevents shrinking */
}

.arrival-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 0.3s ease;
}

.arrival-card img:hover {
  transform: scale(1.05);
}

.arrival-card a {
  display: block;
}

/* Follow Me */
.follow-me {
  background: var(--dark-bg);
  color: var(--light);
  padding: 60px 20px;
  text-align: center;
}

.follow-me h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 15px;
}

.social-links a {
  color: var(--accent);
  font-size: 18px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.social-links a:hover {
  color: var(--light);
  border-color: var(--light);
}

/* Hamburger Styles (default hidden) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 768px) {

  /* hide standard nav, show hamburger */
  .nav-links {
      display: none;
      flex-direction: column;
      background: #1a1a1a;
      position: absolute;
      top: 70px;
      right: 16px;
      width: calc(100% - 32px);
      max-width: 260px;
      padding: 14px;
      border-radius: 0 0 10px 10px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  }

  /* make nav visible when .show is present */
  .nav-links.show {
      display: flex;
  }

  .menu-toggle {
      display: flex;
      margin-left: auto;
  }

  /* ensure header padding is smaller on mobile */
  header {
    padding: 12px 16px;
  }
}
