/* Base Styles */
:root {
    --primary-color: #4a86e8;
    --secondary-color: #6c63ff;
    --accent-color: #2c3e50;
    --text-light: #ffffff;
    --text-dark: #333333;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-gradient: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    --transition-slow: 0.5s;
    --transition-medium: 0.3s;
    --transition-fast: 0.2s;
    --hero-height: 75vh;
    --hero-height-mobile: 500px;
}

:root {
    /* --primary-color: #6c63ff; */
    --text-color: #333;
    /* --text-light: #888; */
    --white: #ffffff;
    --navbar-height: 70px;
    --navbar-radius: 50px;
    --navbar-spacing: 20px;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: var(--text-dark);
    line-height: 1.6;
}
