/**
 * Aura Corporate Theme Stylesheet
 * 
 * Theme Name: Aura Corporate
 * Theme URI: https://auracorporate.com.au
 * Author: Aura Corporate
 * Author URI: https://auracorporate.com.au
 * Description: Modern boutique advisory firm website with quiet luxury design
 * Version: 1.0.0
 * License: Proprietary
 * License URI: https://auracorporate.com.au
 * Text Domain: aura-corporate
 * Domain Path: /languages
 * Requires at least: 5.0
 * Requires PHP: 7.4
 */

/* ========================================
   CUSTOM PROPERTIES & DESIGN TOKENS
   ======================================== */

:root {
  /* Aura Corporate Brand Colors */
  --primary: #5B6334;
  --primary-foreground: #FFFFFF;
  --secondary: #EAE8E5;
  --secondary-foreground: #404A29;
  --muted: #D9D7D3;
  --muted-foreground: #6D6D6D;
  --accent: #5B6334;
  --accent-foreground: #FFFFFF;
  --border: #E5E3E0;
  --input: #F5F3F0;
  --ring: #5B6334;
  --foreground: #1a1a1a;
  --background: #FFFFFF;
  
  /* Typography */
  --font-display: 'Kudryashev Display', serif;
  --font-body: 'Neulis Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Border Radius */
  --radius: 0.5rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 300;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 300;
}

h4 {
  font-size: 1.125rem;
  font-weight: 400;
}

h5 {
  font-size: 1rem;
  font-weight: 500;
}

/**h6 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
*/

h6 {
  font-family: 'Neulis Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

p {
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--primary);
  opacity: 0.8;
}

strong, b {
  font-weight: 600;
}

em, i {
  font-style: italic;
}

/* ========================================
   LISTS
   ======================================== */

ul, ol {
  margin-bottom: var(--spacing-lg);
  padding-left: var(--spacing-xl);
}

li {
  margin-bottom: var(--spacing-md);
}

/* ========================================
   FORMS
   ======================================== */

input,
textarea,
select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: var(--spacing-md);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--input);
  color: var(--foreground);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(91, 99, 52, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted-foreground);
}

button {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: var(--spacing-md) var(--spacing-xl);
  border: none;
  border-radius: var(--radius);
  background-color: var(--primary);
  color: var(--primary-foreground);
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-base);
}

button:hover {
  background-color: #4a4f2a;
  transform: translateY(-1px);
}

button:active {
  transform: translateY(0);
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

header {
  position: sticky;
  top: 0;
  z-index: 75;
  width: 100%;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  padding: 0 var(--spacing-lg);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  text-decoration: none;
  transition: opacity var(--transition-base);
}

.logo:hover {
  opacity: 0.8;
}

.logo img {
  height: 2.5rem;
  width: auto;
}

.logo-text {
  display: none;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--foreground);
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .logo-text {
    display: inline;
  }
}

nav {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  nav {
    display: flex;
  }
}

nav a {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--foreground);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: width var(--transition-base);
}

nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.8));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--spacing-xl);
}

.hero h1 {
  margin-bottom: var(--spacing-lg);
  color: var(--foreground);
}

.hero p {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--spacing-xl);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* ========================================
   SECTIONS
   ======================================== */

section {
  padding: var(--spacing-3xl) 0;
}

@media (min-width: 768px) {
  section {
    padding: 8rem 0;
  }
}

section.bg-secondary {
  background-color: var(--secondary);
}

section.bg-white {
  background-color: var(--background);
}

/* ========================================
   CARDS
   ======================================== */

.card {
  padding: var(--spacing-xl);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  transition: all var(--transition-base);
}

.card:hover {
  border-color: rgba(91, 99, 52, 0.3);
  background-color: rgba(234, 232, 229, 0.3);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  margin-bottom: var(--spacing-lg);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--foreground);
  margin-bottom: var(--spacing-md);
}

.card-description {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted-foreground);
  line-height: 1.8;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: all var(--transition-base);
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: #4a4f2a;
}

.btn-secondary {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.btn-secondary:hover {
  background-color: rgba(91, 99, 52, 0.05);
}

.btn-text {
  color: var(--primary);
  padding: 0;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.btn-text:hover {
  gap: var(--spacing-md);
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  background-color: var(--secondary);
  border-top: 1px solid var(--border);
  padding: var(--spacing-3xl) 0;
  margin-top: var(--spacing-3xl);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h3 {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--foreground);
  margin-bottom: var(--spacing-lg);
}

.footer-section p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-links {
  display: flex;
  gap: var(--spacing-xl);
}

.footer-links a {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted-foreground);
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--foreground);
}

.footer-copyright {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted-foreground);
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */

.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: block;
  }
}

.hide-desktop {
  display: block;
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.px-4 { padding-left: var(--spacing-xl); padding-right: var(--spacing-xl); }
.py-4 { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }

.gap-4 { gap: var(--spacing-xl); }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  body {
    background-color: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
  
  header, footer, .no-print {
    display: none;
  }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #1a1a1a;
    --foreground: #f5f5f5;
    --secondary: #2a2a2a;
    --border: #3a3a3a;
    --input: #2a2a2a;
  }
}
