/* ==========================================================================
   MARYAM'S TAILORING - CORE DESIGN SYSTEM & TYPOGRAPHY
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&family=Prompt:wght@300;400;500;600;700&family=Rubik:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --clr-emerald-dark: #0B3D2E;
  --clr-emerald-mid: #147155;
  --clr-emerald-light: #1A8C6A;
  --clr-emerald-surface: #072B20;
  
  --clr-gold-primary: #DBAA23;
  --clr-gold-light: #E6C770;
  --clr-gold-muted: #C4971A;
  --clr-gold-glow: rgba(219, 170, 35, 0.25);

  --clr-linen-bg: #F8F4ED;
  --clr-linen-card: #FFFFFF;
  --clr-linen-soft: #F2EBDC;

  --clr-dark-body: #1D1E20;
  --clr-dark-heading: #0E1311;
  --clr-gray-muted: #616864;
  --clr-border-light: rgba(11, 61, 46, 0.12);
  --clr-border-gold: rgba(219, 170, 35, 0.3);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Prompt', 'Rubik', system-ui, -apple-system, sans-serif;

  /* Elevation & Shadows */
  --shadow-sm: 0 4px 12px rgba(11, 61, 46, 0.05);
  --shadow-md: 0 8px 24px rgba(11, 61, 46, 0.08);
  --shadow-lg: 0 16px 40px rgba(11, 61, 46, 0.14);
  --shadow-gold: 0 8px 25px rgba(219, 170, 35, 0.25);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--clr-linen-bg);
  color: var(--clr-dark-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Container & Grid System */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 96px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  .container {
    padding: 0 16px;
  }
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  color: var(--clr-dark-heading);
  font-weight: 700;
  line-height: 1.25;
}

.font-serif {
  font-family: var(--font-serif);
}

.text-gold {
  color: var(--clr-gold-primary);
}

.text-emerald {
  color: var(--clr-emerald-dark);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: rgba(219, 170, 35, 0.12);
  border: 1px solid var(--clr-border-gold);
  border-radius: var(--radius-full);
  color: var(--clr-gold-muted);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  color: var(--clr-emerald-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--clr-gray-muted);
  font-weight: 400;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-gold {
  background: linear-gradient(135deg, var(--clr-gold-primary) 0%, var(--clr-gold-muted) 100%);
  color: var(--clr-emerald-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold-primary) 100%);
  box-shadow: 0 12px 30px rgba(219, 170, 35, 0.35);
}

.btn-emerald {
  background-color: var(--clr-emerald-dark);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.btn-emerald:hover {
  background-color: var(--clr-emerald-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-gold {
  border-color: var(--clr-gold-primary);
  color: var(--clr-gold-primary);
  background: transparent;
}

.btn-outline-gold:hover {
  background-color: var(--clr-gold-primary);
  color: var(--clr-emerald-dark);
}

.btn-outline-emerald {
  border-color: var(--clr-emerald-dark);
  color: var(--clr-emerald-dark);
  background: transparent;
}

.btn-outline-emerald:hover {
  background-color: var(--clr-emerald-dark);
  color: #ffffff;
}

/* Cards & Glassmorphism */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.dark-card {
  background: var(--clr-emerald-dark);
  color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(219, 170, 35, 0.2);
}
