/*
Theme Name: Chai Chenak
Theme URI: https://chaichenak.com/
Author: Antigravity
Author URI: https://antigravity.google/
Description: Custom WordPress theme rebuilding the Chai Chenak website.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chaichenak
*/

/**
 * --------------------------------------------------------------------------
 * CSS Variables
 * --------------------------------------------------------------------------
 */
:root {
  /* Colors - placeholders till exact extraction */
  --cc-primary: #e65c00; /* Orange tone from logo/branding */
  --cc-primary-dark: #b34700;
  --cc-secondary: #2b2b2b; /* Dark bg */
  --cc-secondary-light: #444444;
  --cc-text-main: #333333;
  --cc-text-light: #f5f5f5;
  --cc-white: #ffffff;
  --cc-black: #000000;
  
  /* Typography */
  --cc-font-main: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --cc-font-heading: 'Outfit', 'Segoe UI', sans-serif;
  
  /* Spacing */
  --cc-spacing-xs: 0.5rem;
  --cc-spacing-sm: 1rem;
  --cc-spacing-md: 2rem;
  --cc-spacing-lg: 4rem;
  --cc-spacing-xl: 6rem;

  /* Layout */
  --cc-container-width: 1200px;
  --cc-border-radius: 4px;
  --cc-transition-speed: 0.3s;
}

/**
 * --------------------------------------------------------------------------
 * Reset and Base Styles
 * --------------------------------------------------------------------------
 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--cc-font-main);
  color: var(--cc-text-main);
  background-color: var(--cc-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--cc-primary);
  text-decoration: none;
  transition: color var(--cc-transition-speed) ease;
}

a:hover, a:focus {
  color: var(--cc-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--cc-font-heading);
  line-height: 1.2;
  margin-bottom: var(--cc-spacing-sm);
  font-weight: 700;
}

p {
  margin-bottom: var(--cc-spacing-sm);
}

ul, ol {
  margin-left: var(--cc-spacing-md);
  margin-bottom: var(--cc-spacing-sm);
}

li {
  margin-bottom: var(--cc-spacing-xs);
}

/**
 * --------------------------------------------------------------------------
 * Layout Utilities
 * --------------------------------------------------------------------------
 */
.cc-container {
  width: 100%;
  max-width: var(--cc-container-width);
  margin: 0 auto;
  padding: 0 var(--cc-spacing-sm);
}

.cc-section {
  padding: var(--cc-spacing-lg) 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
