/* =========================
   ALINA ELEGANCE PRO
   Design System
========================= */

:root {
  --color-white: #ffffff;
  --color-black: #111111;
  --color-gold: #c9a24d;
  --color-text: #1a1a1a;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --container-width: 1200px;
}

/* Reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.5px;
}

p {
  font-size: 16px;
}

/* Layout */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Links */
a {
  color: var(--color-gold);
  text-decoration: none;
}

a:hover {
  color: var(--color-black);
}

/* Buttons */
.button,
button {
  background-color: var(--color-gold);
  color: #fff;
  padding: 16px 44px;
  border: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #b8933f;
}
.woocommerce h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

/* =========================
   HEADER & NAVIGATION
========================= */

header {
  background: #ffffff;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
}

.main-nav li {
  margin: 0;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-black);
}

.main-nav a:hover {
  color: var(--color-gold);
}
section {
  position: relative;
}

section h2 {
  font-size: 36px;
  margin-bottom: 50px;
  text-align: center;
}

section p {
  color: #555;
}

header {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

header .container {
  padding: 20px 0;
}

.site-logo img {
  max-height: 60px;
}

.main-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
}

/* Gold underline on hover (luxury detail) */
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* =========================
   PROFESSIONAL HEADER
========================= */

.site-header {
  border-bottom: 1px solid #eee;
  background: #fff;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.header-logo img {
  max-height: 48px;
  width: auto;
  display: block;
}

/* NAVIGATION */
.header-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 36px;
}

.header-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  position: relative;
}

.header-nav a:hover {
  color: var(--color-gold);
}

/* =========================
   HERO SECTION
========================= */

.hero {
  padding: 140px 20px 120px;
  border-bottom: 1px solid #eee;
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 64px;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
}

.hero p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 48px;
}




