 /* 🌤 COUTURE LIGHT LUXURY THEME */
body {
  background: linear-gradient(180deg, #fbfaf7 0%, #f3f0ea 100%);
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* 🪞 LIGHT GLASS HEADER */
.glass-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 14px 60px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 9999;
}

/* 🪶 LOGO (LIGHT VERSION) */
.logo-img {
  height: 34px;
  width: auto;
  opacity: 0.9;
  transition: 0.4s ease;
}

.logo-img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* NAV (LIGHT LUXURY) */
nav a {
  margin-left: 24px;
  font-size: 11px;
  letter-spacing: 2px;
  text-decoration: none;
  color: #2b2b2b;
  opacity: 0.7;
  transition: 0.3s;
}

nav a:hover {
  opacity: 1;
  color: #000;
}

/* ✨ HERO (EDITORIAL LUXURY) */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* MAIN TITLE */
.title {
  font-family: 'Playfair Display', serif;
  font-size: 6.5rem;
  letter-spacing: 5px;

  background: linear-gradient(90deg, #1a1a1a, #8c7a5b, #1a1a1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: shimmer 8s infinite linear;
}

/* SUBTITLE */
.subtitle {
  margin-top: 12px;
  letter-spacing: 4px;
  font-size: 13px;
  color: #5a5a5a;
  opacity: 0.8;
}

/* BUTTON (LIGHT LUXURY) */
button {
  margin-top: 30px;
  padding: 12px 30px;

  border: 1px solid rgba(0,0,0,0.2);
  background: transparent;

  color: #1a1a1a;
  letter-spacing: 3px;
  cursor: pointer;
  transition: 0.4s;
}

button:hover {
  background: #1a1a1a;
  color: white;
  transform: translateY(-2px);
}

/* 🏛 BRANDS (COUTURE STYLE) */
.brands {
  padding: 140px 60px;
}

.brands h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  letter-spacing: 5px;
  color: #1a1a1a;
}

/* GRID */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* 🪞 SOFT LUXURY CARDS */
.brand-card {
  padding: 35px;

  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.06);

  backdrop-filter: blur(20px);
  transition: 0.5s ease;
}

.brand-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0,0,0,0.15);
}

/* PRODUCT TEXT */
.product {
  margin-top: 10px;
  font-size: 12px;
  color: #444;
  cursor: pointer;
  transition: 0.3s;
}

.product:hover {
  color: #000;
  transform: translateX(6px);
}
.brand-name {
  font-family: "Playfair Display", serif;
  letter-spacing: 4px;
  font-size: 14px;
  color: #C8A951;
}