@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;600;700&family=Noto+Serif+SC:wght@400;500;600;700&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --black: #0A0A0A;
  --charcoal: #121212;
  --gold: #D4AF37;
  --gold-bright: #E6C265;
  --gold-dark: #B8860B;
  --warm-orange: #F27C22;
  --cream: #FAF8F5;
  --cream-light: #F5EAD3;
  --cream-muted: #DDD6C4;
  --text-body: #F0EADC;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  background-color: #0A0A0A;
  color: #F0EADC;
  line-height: 1.8;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
  background: #D4AF37;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #E6C265;
}

@layer components {
  .gold-text {
    color: #D4AF37;
  }
  
  .gold-border {
    border-color: #D4AF37;
  }
  
  .gold-bg {
    background-color: #D4AF37;
  }
  
  .cream-bg {
    background-color: #FAF8F5;
  }
  
  .cream-text {
    color: #FAF8F5;
  }
  
  .black-bg {
    background-color: #0A0A0A;
  }
  
  .charcoal-bg {
    background-color: #121212;
  }
  
  .nav-link {
    @apply text-white hover:text-gold transition-colors duration-300 relative;
  }
  
  .nav-link::after {
    @apply content-[''] absolute bottom-0 left-0 w-0 h-px bg-gold transition-all duration-300;
  }
  
  .nav-link:hover::after {
    @apply w-full;
  }
  
  .card-hover {
    @apply transition-all duration-500 hover:scale-105 hover:shadow-lg hover:shadow-gold/20;
  }
  
  .btn-gold {
    @apply px-6 py-3 bg-gold text-black font-medium rounded-none hover:bg-opacity-90 transition-all duration-300;
  }
  
  .btn-outline-gold {
    @apply px-6 py-3 border border-gold text-gold hover:bg-gold hover:text-black transition-all duration-300;
  }
  
  .section-title {
    @apply text-3xl md:text-4xl font-serif font-bold text-gold mb-8;
  }
  
  .fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
  }
  
  .fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .gold-gradient {
    background: linear-gradient(135deg, #D4AF37 0%, #E6C265 50%, #F0B849 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .gold-divider {
    position: relative;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 20%, #D4AF37 50%, #D4AF37 80%, transparent 100%);
  }
  
  .gold-divider::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 10%;
    width: 80%;
    height: 4px;
    background: repeating-linear-gradient(90deg,
      transparent 0px,
      transparent 8px,
      rgba(212, 175, 55, 0.15) 8px,
      rgba(212, 175, 55, 0.15) 12px,
      transparent 12px,
      transparent 20px
    );
  }
  
  .glow-effect {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.2);
  }
  
  .text-glow {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
  }
  
  .heading-primary {
    color: #E6C265;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 
      0 2px 4px rgba(0, 0, 0, 0.8),
      0 4px 8px rgba(0, 0, 0, 0.6),
      0 0 20px rgba(230, 194, 101, 0.5),
      0 0 40px rgba(212, 175, 55, 0.3);
  }
  
  .heading-secondary {
    color: #F27C22;
    text-shadow: 
      0 2px 4px rgba(0, 0, 0, 0.7),
      0 4px 8px rgba(0, 0, 0, 0.5);
  }
  
  .heading-slogan {
    color: #DDD6C4;
    text-shadow: 
      0 1px 3px rgba(0, 0, 0, 0.6),
      0 2px 6px rgba(0, 0, 0, 0.4);
  }
  
  .text-shadow-3d {
    text-shadow: 
      0 2px 4px rgba(0, 0, 0, 0.8),
      0 4px 8px rgba(0, 0, 0, 0.6),
      0 6px 12px rgba(0, 0, 0, 0.4);
  }
  
  .body-text {
    color: #F0EADC;
    line-height: 1.8;
  }
}
