/**
Base Styles:
- CSS Variables
- Reset
- Typography
- Base layout
**/

:root {
    --bg-color: #F5F5F5;
    --text-color: #020001;
    --text-color-light: #FFFFFF;

    /* Primary Colors */
    --bright-green: #D2F508;
    --dark-green: #1F4951;
    --bright-orange: #F45228;
    --dark-orange: #7C2007;
    --bright-blue: #0C8CF2;
    --dark-blue: #3F00FF;

    --primary-color: #3F00FF; /* Desaturated Blue */
    --primary-color-rgb: 67, 97, 238; /* RGB for Desaturated Blue */
    --secondary-color: #3f37c9; /* Darker Desaturated Blue */
    --accent-color: #4895ef; /* Lighter Desaturated Blue */
   
    --bg-color-alt: #f9f9f9; /* Light Gray */
    --card-bg: #ffffff; /* White */
    --border-color: #e0e0e0; /* Light Gray */
    --shadow-color: rgba(0, 0, 0, 0.1); /* Soft Shadow */
    --success-color: #4caf50; /* Green */
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-round: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ======= Reset ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 140%;
    transition: background-color var(--transition-normal), color var(--transition-normal);
    overflow-x: hidden;
}

/* ======= Typography ======= */
@font-face {
  font-family: 'BinomaTrial-Bold', sans-serif;
  src: url('../assets/fonts/BinomaTrial-Bold.woff2') format('woff2'),
       url('../assets/fonts/BinomaTrial-Bold.woff') format('woff'),
       url('../assets/fonts/BinomaTrial-Bold.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'BinomaTrial-Regular', sans-serif;
  src: url('../assets/fonts/BinomaTrial-Regular.woff2') format('woff2'),
       url('../assets/fonts/BinomaTrial-Regular.woff') format('woff'),
       url('../assets/fonts/BinomaTrial-Regular.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
  font-weight: normal;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'BinomaTrial-Bold', sans-serif;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

p {
    margin-bottom: var(--spacing-sm);
}

/* ======= Layout ======= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Section Heading Styles */
.section-heading {
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--text-color);
}

.underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto;
    margin-top: var(--spacing-xs);
}

/* Hide scrollbar but allow scrolling */
.hide-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.hide-scrollbar::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* ======= Button Base Styles ======= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ======= Image Styles ======= */
img {
    max-width: 100%;
    height: auto;
}
