:root {
  --bg-dark: #1a1a1a;       
  --bg-darker: #121212;      
  --bg-light: #2d2d2d;      
  --accent-red: #ff3a30;      
  --accent-dark-red: #d32f2f; 
  --text-primary: #f0f0f0;    /* Main text */
  --text-secondary: #a0a0a0;  /* Secondary text */
  --border-gray: #333;        /* Borders */
  --success: #4caf50;         /* Success green */
    --warning: #ffb13c; 
  --error: #f44336;           /* Error red */

  --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
  --sidebar-width: 280px;
  --topbar-height: 70px;
  --border-radius: 8px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    justify-content: space-between;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.header-container-background 
{
    background-color: var(--bg-darker);
    inset:0%;
    flex: 1;
    position: absolute;
    
}

.header-container 
{
    background-color: var(--bg-darker);
    margin-left: auto;
    margin-right: auto;
    padding: 25px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo 
{
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(to right, var(--accent-red), var(--warning));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}


/*
Navigation
*/
.Navigation 
{
    display: flex;
    list-style: none;
    gap: 25px;
}

.ul_navigation_ 
{
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: var(--border-radius);
}

.list_nav
{
    display: inline-block;
    list-style: none;
    gap: 25px;
}

.list_nav a
{
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: var(--border-radius);
}

.list_nav a:hover 
{
    color: var(--accent-red);
    background-color: rgba(255, 58, 48, 0.1);
}

.cta-button {
    background-color: var(--accent-red);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--accent-dark-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/*Hero*/
.Home_Hero {
    background-color: var(--bg-dark);
   
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
}




.Home_Hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.Home_Hero_Container 
{
    height: 200px;
    overflow: hidden;
    z-index: 2;
}

.Home_Hero_Image_Container
{
    padding: 25px;
    margin: 25px;
    height: 70px;
    width: 80px;
}

.Home_Hero_Image_Container_img
{
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    width: 400;
    height: 200;
    object-position: right bottom;
}