/* ==============================
   Abulo tumoro BRANDING SYSTEM
   ============================== */

/* ========== CSS VARIABLES ========== */
:root {
  /* Brand Colors */
  --primary: #C70039;        /* Cherry Red */
  --secondary: #1A1A1A;      /* Deep Charcoal/Graphite */
  --accent: #F5C518;         /* Warm Gold */
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-gray: #E9ECEF;
  --medium-gray: #6C757D;
  --dark-gray: #343A40;
  --black: #000000;
  
  /* Typography - Font Families */
  --font-title: 'TT Norms', sans-serif;      
  --font-body: 'Satoshi', sans-serif;        
  
  /* Typography - Sizes */
  --text-xs: 16px;      /* 12px */
  --text-sm: 18px;     /* 14px */
  --text-base: 22px;       /* 16px */
  --text-lg: 28px;     /* 18px */
  --text-xl: 36px;      /* 20px */
  --text-2xl: 34px;      /* 24px */
  --text-3xl: 42px;    /* 30px */
  --text-4xl: 50px;     /* 36px */
  --text-5xl: 58px;        /* 48px */
  --text-6xl: 66px;     /* 60px */
  --text-7xl: 74px;      /* 72px */
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Borders & Shadows */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  --transition-bounce: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========== BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  cursor: none;
}

body {
  background-color: var(--secondary); /* Default to brand secondary color */
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400; /* Regular weight for body */
  line-height: 1.6;
  font-size: var(--text-base);
  cursor: none;
}

/* ========== TYPOGRAPHY SYSTEM ========== */

a {
    border-bottom: none !important;
    box-shadow: none !important;
}

a, .menu-link {
    text-decoration: none !important;
}

a:hover, .menu-link:hover {
    text-decoration: none !important;
}

/* Headings with TT Norms */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700; /* Bold weight for all headings by default */
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--white);
}

h1 {
  font-size: var(--text-6xl);
  font-weight: 800; /* Extra Bold */
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xl);
}

h2 {
  font-size: var(--text-5xl); /* 48px */
  font-weight: 700; /* Bold */
  letter-spacing: -0.01em;
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: var(--text-4xl); /* 36px */
  font-weight: 600; /* Semi-Bold */
  margin-bottom: var(--space-md);
}

h4 {
  font-size: var(--text-3xl); /* 30px */
  font-weight: 600; /* Semi-Bold */
  margin-bottom: var(--space-md);
}

h5 {
  font-size: var(--text-2xl); /* 24px */
  font-weight: 500; /* Medium */
  margin-bottom: var(--space-sm);
}

h6 {
  font-size: var(--text-xl); /* 20px */
  font-weight: 500; /* Medium */
  margin-bottom: var(--space-sm);
}

/* Body Text with Satoshi */
p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400; /* Regular */
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.small-text {
  font-size: var(--text-sm);
  font-weight: 300; /* Light weight for small text */
  line-height: 1.5;
}

.tiny-text {
  font-size: var(--text-xs);
  font-weight: 300; /* Light weight */
  line-height: 1.4;
}

/* Font Weight Variations */
.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

/* Special Heading Styles */
.hero-heading {
  font-size: var(--text-7xl); /* 72px */
  font-weight: 900; /* Black weight */
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-heading {
  font-size: var(--text-4xl); /* 36px */
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-sm);
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
}

/* ========== BUTTON SYSTEM ========== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  padding: var(--space-sm) var(--space-xl);
  font-size: var(--text-sm);
  position: relative;
  overflow: hidden;
}

/* Primary Button - Cherry Red */
.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background-color: #A80030; /* Darker Cherry Red */
  border-color: #A80030;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Secondary Button - Outlined */
.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Accent Button - Warm Gold */
.btn-accent {
  background-color: var(--accent);
  color: var(--secondary);
  border: 2px solid var(--accent);
  font-weight: 700;
}

.btn-accent:hover {
  background-color: #E0B000; /* Darker Gold */
  border-color: #E0B000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Ghost Button */
.btn-ghost {
  background-color: transparent;
  color: var(--white);
  border: 2px solid transparent;
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Button Sizes */
.btn-small {
  padding: var(--space-xs) var(--space-lg);
  font-size: var(--text-xs);
}

.btn-large {
  padding: var(--space-md) var(--space-2xl);
  font-size: var(--text-lg);
}

.btn-xlarge {
  padding: var(--space-lg) var(--space-3xl);
  font-size: var(--text-xl);
  font-weight: 700;
}

/* Button with Arrow */
.btn-arrow {
  gap: var(--space-sm);
}

.btn-arrow::after {
  content: '→';
  transition: transform var(--transition-base);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ========== LINK STYLES ========== */
a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 500;
}

a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
}

.link-arrow::after {
  content: '→';
  transition: transform var(--transition-base);
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

/* ========== UTILITY CLASSES ========== */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }
.text-gray { color: var(--medium-gray); }

.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-accent { background-color: var(--accent); }
.bg-white { background-color: var(--white); }
.bg-off-white { background-color: var(--off-white); }

/* ========== CUSTOM CURSOR (From Previous Request) ========== */
.custom-cursor {
  cursor: none;
}

.cursor-dot {
  width: 20px;
  height: 20px;
  background-color: rgba(199, 0, 57, 0.5); /* Semi-transparent Cherry Red */
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  mix-blend-mode: difference;
}

.cursor-dot.hover {
  width: 50px;
  height: 50px;
  background-color: rgba(245, 197, 24, 0.3); /* Semi-transparent Warm Gold on hover */
}

/* ========== RESPONSIVE TYPOGRAPHY ========== */
@media (max-width: 768px) {
  :root {
    --text-6xl: 2.5rem; /* 40px */
    --text-5xl: 2rem;   /* 32px */
    --text-4xl: 1.75rem;/* 28px */
    --text-3xl: 1.5rem; /* 24px */
    --text-2xl: 1.25rem;/* 20px */
    --text-xl: 1.125rem;/* 18px */
    --text-7xl: 3rem;   /* 48px */
  }
  
  h1 {
    font-size: var(--text-5xl);
  }
  
  h2 {
    font-size: var(--text-4xl);
  }
  
  .hero-heading {
    font-size: var(--text-6xl);
  }
}

@media (max-width: 480px) {
  :root {
    --text-6xl: 2rem;   /* 32px */
    --text-5xl: 1.75rem;/* 28px */
    --text-4xl: 1.5rem; /* 24px */
    --text-7xl: 2.5rem; /* 40px */
  }
  
  .btn {
    padding: var(--space-xs) var(--space-lg);
    font-size: var(--text-xs);
  }
}

/* ========== FONT FACE DECLARATIONS (PLACEHOLDER) ========== */
/* 
PLACEHOLDER: Replace with your actual @font-face declarations
Example:
*/


@font-face {
  font-family: 'TT Norms';
  src: url('../fonts/tt-norms/TTNorms-Medium.otf') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'TT Norms';
  src: url('../fonts/tt-norms/TTNorms-Medium.otf') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi/Satoshi-Regular.otf') format('woff2');
  font-weight: 400;
  font-style: normal;
}
